Podcasts about joe so

  • 27PODCASTS
  • 123EPISODES
  • 42mAVG DURATION
  • 1MONTHLY NEW EPISODE
  • Nov 26, 2024LATEST

POPULARITY

20172018201920202021202220232024


Best podcasts about joe so

Latest podcast episodes about joe so

Oracle University Podcast
Best of 2024: Introduction to Visual Builder Studio, Visual Builder Cloud Service, Stand-Alone, and JET

Oracle University Podcast

Play Episode Listen Later Nov 26, 2024 24:58


The next generation of front-end user interfaces for Oracle Fusion Applications is being built using Visual Builder Studio and Oracle JavaScript Extension Toolkit. However, many of the terms associated with these tools can be confusing.   In this episode, Lois Houston and Nikita Abraham are joined by Senior Principal OCI Instructor Joe Greenwald. Together, they take you through the different terminologies, how they relate to each other, and how they can be used to deliver the new Oracle Fusion Applications as well as stand-alone, bespoke visual web applications.   Survey: https://customersurveys.oracle.com/ords/surveys/t/oracle-university-gtm/survey?k=focus-group-2-link-share-5   Develop Fusion Applications Using Visual Builder Studio: https://mylearn.oracle.com/ou/course/develop-fusion-applications-using-visual-builder-studio/138392/   Build Visual Applications Using Oracle Visual Builder Studio: https://mylearn.oracle.com/ou/course/build-visual-applications-using-oracle-visual-builder-studio/137749/   Oracle University Learning Community: https://education.oracle.com/ou-community   LinkedIn: https://www.linkedin.com/showcase/oracle-university/   X (formerly Twitter): https://twitter.com/Oracle_Edu   Special thanks to Arijit Ghosh, David Wright, and the OU Studio Team for helping us create this episode.   --------------------------------------------------------   Episode Transcript:   00:00 Welcome to the Oracle University Podcast, the first stop on your cloud journey. During this series of informative podcasts, we'll bring you foundational training on the most popular Oracle technologies. Let's get started. 00:26 Nikita: Hello and welcome to the Oracle University Podcast! I'm Nikita Abraham, Team Lead of Editorial Services with Oracle University, and with me is Lois Houston, Director of Innovation Programs. Lois: Hi there! If you've been following along with us, you'll know that we've had some really interesting seasons this year. We covered Autonomous Database, Artificial Intelligence, Visual Builder Studio and Redwood, OCI Container Engine for Kubernetes, and Oracle Database 23ai New Features. Nikita: And we've had some pretty awesome special guests. Do go back and check out those episodes if any of those topics interest you. 01:04 Lois: As we close out the year, we thought this would be a good time to revisit some of our best episodes. Over the next few weeks, you'll be able to listen to four of our most popular episodes of the year.  Nikita: Right, this is the best of the best–according to you–our listeners.   Lois: Today's episode is #1 of 4 and is a throwback to a discussion with Senior Principal OCI Instructor Joe Greenwald on Visual Builder Studio. Nikita: We asked Joe about Visual Builder Studio and Oracle JavaScript Extension Toolkit, also known as JET. Together, they form the basis of the technology for the next generation of front-end user interfaces for Oracle Fusion Applications, as well as many other Oracle applications, including most Oracle Cloud Infrastructure (OCI) interfaces. 01:48 Lois: We looked at the different terminologies and technologies, how they relate to each other, and how they deliver the new Oracle Fusion Applications and stand-alone, bespoke visual web applications.  So, let's dive right in. Nikita: Joe, I'm somewhat thrown by the terminology around Visual Builder, Visual Studio, and JET. Can you help streamline that for us? Lois: Yeah, things that are named the same sometimes refer to different things, and sometimes things with a different name refer to the same thing. 02:18 Joe: Yeah, I know where you're coming from. So, let's start with Visual Builder Studio. It's abbreviated as VBS and can go by a number of different names. Some of the most well-known ones are Visual Builder Studio, VBS, Visual Builder, Visual Builder Stand-Alone, and Visual Builder Cloud Service. Clearly, this can be very confusing. For the purposes of these episodes as well as the training courses I create, I use certain definitions.  02:42 Lois: Can you take us through those? Joe: Absolutely, Lois. Visual Builder Studio refers to a product that comes free with an OCI account and allows you to manage your project-related assets. This includes the project itself, which is a container for all of its assets. You can assign teams to your projects, as well as secure the project and declare roles for the different team members. You manage GIT repositories with full graphical and command-line GIT support, define package, build, and deploy jobs, and create and run continuous integration/continuous deployment graphical and code-managed pipelines for your applications. These can be visual applications, created using the Visual Builder Integrated Development Environment, the IDE, or non-visual apps, such as Java microservices, docker builds, NPM apps, and things like that. And you can define environments, which determine where your build jobs can be deployed. You can also define issues, which allow you to identify, track, and manage things like bugs, defects, and enhancements. And these can be tracked in code review merge requests and build jobs, and be mapped to agile sprints and scrum boards. There's also support for wikis for team collaboration, code snippets, and the management of the repository and the project itself. So, VBS supports code reviews before code is merged into GIT branches for package, build, and deploy jobs using merge requests. 04:00 Nikita: OK, what exactly do you mean by that? Joe: Great. So, for example, you could have developers working in one GIT branch and when they're done, they would push their private code changes into that remote branch. Then, they'd submit a merge request and their changes would be reviewed. Once the changes are approved, their code branch is merged into the main branch and then automatically runs a CI/CD package (continuous integration/continuous deployment) package, build, and deploy job on the code. Also, the CI/CD package, build, and deploy jobs can run against any branches, not just the main branch. So Visual Builder Studio is intended for managing the project and all of its assets. 04:37 Lois: So Joe, what are the different tools used in developing web applications? Joe: Well, Visual Builder, Visual Builder Studio Designer, Visual Builder Designer, Visual Builder Design-Time, Visual Builder Cloud Service, Visual Builder Stand-Alone all kind of get lumped together. You can kinda see why. What I'm referring to here are the tools that we use to build a visual web application composed of HTML5, CSS3, JavaScript, and JSON (JavaScript Object Notation) for metadata. I call this Visual Builder Designer. This is an Integrated Development Environment, it's the “IDE” which runs in your browser. You use a combination of drag and drop, setting properties, and writing and modifying custom and generated code to develop your web applications. You work within a workspace, which is your own private copy of a remote Git branch. When you're ready to start development work, you open an existing workspace or create a new one based on a clone of the remote branch you want to work on. Typically, a new branch would be created for the development work or you would join an existing branch. 05:38 Nikita: What's a workspace, Joe? Is it like my personal laptop and drive? Joe: A workspace is your own private code area that stores any changes you make on the Oracle servers, so your code changes are never lost—even when working in a browser-based, network-based tool. A good analogy is, say I was working at home on my own machine. And I would make a copy of a remote GIT branch and then copy that code down to my local machine, make my code changes, do my testing, etc. and then commit my work—create a logical save point periodically—and then when I'm ready, I'd push that code up into the remote branch so it can be reviewed and merged with the main branch. My local machine is my workspace. However, since this code is hosted up by Oracle on our servers, and the code and the IDE are all running in your browser, the workspace is a simulation of a local work area on your own computer. So, the workspace is a hosted allocation of resources for you that's private. Other people can't see what's going on in your workspace. Your workspace has a clone of the remote branch that you're working with and the changes you make are isolated to your cloned code in your workspace. 06:41 Lois: Ok… the code is actually hosted on the server, so each time you make a change in the browser, the change is written back to the server? Is it possible that you might lose your edits if there's a networking interruption? Joe: I want to emphasize that while I started out not personally being a fan of web-based integrated development environments, I have been using these tools for over three years and in all that time, while I have lost a connection at times—networks are still subject to interruptions—I've never lost any changes that I've made. Ever. 07:11 Nikita: Is there a way to save where you are in your work so that you could go back to it later if you need to? Joe: Yes, Niki, you're asking about commits and savepoints, like in a Git repository or a Git branch. When you reach a logical stopping or development point in your work, you would create a commit or a savepoint. And when you're ready, you would push that committed code in your workspace up to the remote branch where it can be reviewed and then eventually merged, usually with the main Git branch, and then continuous integration/continuous package and deployment build jobs are run. Now, I'm only giving you a high-level overview, but we cover all this and much more in detail with hands-on practices in our Visual Builder developer courses. Right now, I'm just trying to give you a sense of how these different tools are used. 07:52 Lois: Yeah, that makes sense, Joe. It's a lot to cover in a short amount of time. Now, we've discussed the Visual Builder Designer IDE and workspace. But can you tell us more about Visual Builder Cloud Service and stand-alone environments? What are they used for? What features do they provide? Are they the same or different things? Joe: Visual Builder Cloud Service or Visual Builder Stand-Alone, as it's sometimes called, is a service that Oracle hosts on its servers. It provides hosting for the deployed web application source code as well as database tables for business objects that we build and maintain to store your customer data. This data can come from XLS or CSV files, or even your own Oracle database customer table data. A custom REST proxy makes calls to external third-party REST services on your behalf and supports several popular authentication mechanisms. There is also integration with the Identity Cloud Service (IDCS) to manage users and their access to your web apps. Visual Builder Cloud Service is a for-fee product. You pay licensing fees for how much you use because it's a hosted service. Visual Builder Studio, the project asset management aspect I discussed earlier, is free with a standard OCI license. Now, keep in mind these are separate from something like Visual Builder Design Time and the service that's running in Fusion application environments. What I'm talking about now is creating stand-alone, bespoke, custom visual applications. These are applications that are built using industry-standard HTML5, CSS3, JavaScript, and JSON for metadata and are hosted on the Oracle servers.  09:30 Are you looking for practical use cases to help you plan and apply configurations that solve real-world challenges?  With the new Applied Learning courses for Cloud Applications, you'll be able to practically apply the concepts learned in our implementation courses and work through case studies featuring key decisions and configurations encountered during a typical Oracle Cloud Applications implementation. Applied learning scenarios are currently available for General Ledger, Payables, Receivables, Accounting Hub, Global Human Resources, Talent Management, Inventory, and Procurement, with many more to come!  Visit mylearn.oracle.com to get started. 10:12 Nikita: Welcome back! Joe, you said Visual Builder Cloud Service or Stand-Alone is a for-fee service. Is there a way I can learn about using Visual Builder Designer to build bespoke visual applications without a fee? Joe: Yes. Actually, we've added an option where you can run the Visual Builder Designer and learn how to create web apps without using the app hosting or the business object database that stores your customer data or the REST proxy for authentication or the Identity Cloud Service. So you don't get those features, but you can still learn the fundamentals of developing with Visual Builder Designer. You can call third-party APIs, you can download the source, and run it locally, for example, in a Tomcat server. This is a great and free way to learn how to develop with the Visual Builder Designer. 10:55 Lois: Joe, I want to know more about the kinds of apps you can build in VB Designer and the capabilities that VB Cloud Service provides. Joe: Visual Builder Designer allows you to build custom, bespoke web applications made of interactive webpages; flows of pages for navigation; events that respond when things happen in the app, for example, GUI events like a button is clicked or values are entered into a text field; variables to store the state of the application and the ability to make REST calls, all from your browser. These applications have full access to the Oracle Fusion Applications APIs, given that you have the right security permissions and credentials of course. They can access your customer business data as business objects in our internally hosted database tables or your own customer database tables. They can access third-party APIs, and all these different data sources can appear in the same visual application, on the same page, at the same time. They use the Identity Cloud Service to identify which users can log in and authenticate against the application. And they all use the new Redwood graphical user interface components and page templates, so they have the same look and feel of all Oracle applications. 12:02 Nikita: But what if you're building or extending Oracle Fusion Applications? Don't things change a little bit? Joe: Good point, Niki. Yes. While you still work within Visual Builder Studio, that doesn't change, VBS maintains your project and all your project-related assets, that is still the same. However, in this case, there is no separate hosted Visual Builder Cloud Service or Stand-Alone instance. In this case, Visual Builder is hosted inside of Fusion apps itself as part of the installation. I won't go into the details of how the architecture works, but the Visual Builder instance that you're running your code against is part of Fusion applications and is included in the architecture as well as the billing. All your code changes are maintained and stored within a single container called an extension. And this extension is a Git repository that is created for you, or you can create it yourself, depending on how you choose to work within Visual Builder Studio. You create an extension to hold the source code changes that provide a customization or configuration. This means making a change to an existing page or a set of pages or even adding new pages and flows to your Oracle Fusion Applications. You use Visual Builder Studio and Visual Builder Designer in a similar way as to how you would use them for bespoke stand-alone visual applications. 13:12 Lois: I'm trying to envision how this workflow is used. How is it different from bespoke VB app development? Or is it different at all? Joe: So, recall that the Visual Builder Designer is effectively the Integrated Development Environment, the IDE, where you make your code changes by working with both the raw HTML5, CSS3, and JavaScript code, if need be, or the Page Designer for drag and drop, and setting properties and then Live mode to test your work. You use a version of VB Designer to view and modify your customizations, and the code is stored in a Git repository called an extension. So, in that sense, the work of developing pages and flows and such is the same. You still start by creating or, more typically, joining a project and then either create a new extension from scratch or base it on an existing application, or go directly to the page that you want to edit and, on that page, select from your profile menu to edit in Visual Builder Studio. Now, this is a different lifecycle path from bespoke visual applications. With them, you're not extending an app or modifying individual pages in the same way. You get a choice of which project you want to add your extension to when you're working with Fusion apps and potentially which repository to store your customizations, unless one already exists and then it's assigned automatically to hold your code changes. So you make your changes and edits to the portions of the application that have been opened for extensibility by the development team. This is another difference. Once you make your code changes, the workflow is pretty much the same as for a bespoke visual application: do your development work, commit your changes, push your changes to the remote branch. And then typically, your code is reviewed and if the code passes and is approved, it's merged with the main branch. Then, the package and deploy jobs run to deploy the main code to the production environment or whatever environment you're targeting. And once the package and deploy jobs complete, the code base is updated and users who log in see the changes that you've made. 15:03 Nikita: You mentioned creating apps that combine data from Fusion cloud, applications, customer data, and third-party APIs into one page. Why is it necessary? Why can't you just do all that in one Fusion Applications extension? Joe: When you create extensions, you are working within the Oracle Fusion Applications ecosystem, that's what they actually call it, which includes a defined a set of users who have been predefined and are, therefore, known to Fusion Applications. So, if you're a user and you're not part of that Fusion Apps ecosystem, you can't access the pages. Period. That's how Fusion Apps works to maintain its security and integrity. Secondly, you're working pretty much solely with the Fusion Applications APIs data sources coming directly from Fusion Applications, which are also available to you when you're creating bespoke visual apps. When you're working with Fusion Applications in Visual Builder, you don't have access to these business objects that give you access to your own customer database data through Visual Builder-generated REST APIs. Business objects are available only to bespoke visual applications in the hosted VB Cloud Service instance. So, your data sources are restricted to the Oracle Fusion Applications APIs and some third-party APIs that work within a narrow set of authentication mechanisms currently, although there are plans to expand this in the future. A mashup app that allows you now to access all these data sources while creating apps that leverage the Redwood Component System, so they look and work like Fusion Apps. They're a highly popular option for our partners and customers. 16:28 Lois: So, to review, we have two different approaches. You can create a visual application using the for-fee, hosted Visual Builder Cloud Service/Stand-Alone or the one that comes with Oracle Integration Cloud, or you can use the extension architecture for Fusion applications, where you use the designer and create your extensions, and the code is delivered and deployed to Fusion applications code. You haven't talked about JET yet though, Joe. What is that? Joe: So, JET is an abbreviation. It stands for Oracle JavaScript Extension Toolkit and JET is the underlying technology that makes Visual Builder, visual applications, and Visual Builder Extensions for Fusion Applications possible. Oracle JavaScript Extension Toolkit provides a module-based, open-source toolkit that leverages modern JavaScript, TypeScript, CSS3, and HTML5 to deliver web applications. It's targeted at JavaScript developers working on client-side applications. It is not for backend development.  It's a collection of popular, powerful JavaScript libraries and a set of Oracle-contributed JavaScript libraries that make it very simple, easy, and efficient to build front-end applications that can consume and interact with Oracle products and services, especially Oracle Cloud services, but of course it can work with any type of third-party API. 17:44 Nikita: How are JET applications architected, Joe, and how does that relate to Visual Builder pages and flows? Joe: The architecture of JET applications is what's called a single page architecture. We've all seen these. These are where you have a single webpage—think of your index page that provides the header and footer for your webpage—and then the middle portion or the middle content of the page, represented by modules, allow you to navigate from one page or module to another. It also provides the data mapping so that the data elements in the variables and the state of the application, as well as the graphical user interface elements that provide the fields and functionality for the interface for the application, these are all maintained on the client side. If you're working in pure JET, then you work with these modules at the raw JavaScript code level. And there are a lot of JavaScript developers who want to work like this and create their custom applications from the code up, so to speak. However, it also provides the basis for Visual Builder visual applications and Fusion Apps visual extensions in Visual Builder. 18:41 Lois: How does JET support VB Apps? You didn't talk much about having to write a bunch of JavaScript and HTML5, so I got the impression that this is all done for you by VB Designer? Joe: Visual Builder applications are composed of HTML5, CSS3, and JavaScript code that is usually generated by the developer when she drags and drops components on to the page designer canvas or sets properties or creates action chains to respond to events. But there's also a lot of JavaScript object notation (JSON) metadata created at the time that describes the pages, the flows, the navigation, the REST services, the variables, their data types, and other assets needed for the app to function. This JSON metadata is translated at runtime using a large JavaScript extension toolkit library called the Visual Builder Runtime that runs in the browser and real time translates the metadata and other assets in the Visual Builder source code into JET code and assets, which are actually executed at runtime. And it's very quick, very fast, very efficient, and provides a layer of abstraction between the raw JET code and the Visual Builder architecture of pages, flows, action chains for executing code and events to handle things that occur in the user interface, including saving the state in variables that are mapped to GUI components. For example, if you have an Input text component, you need to have a variable to store the value that was entered into that Input text component between page refreshes. The data can move from the Input text component to the variable, and from the variable to that Input text component if it's changed programmatically, for example. So, JET manages binding these data values to variables and the UI components on the page. So, a change to a variable value or a change to the contents of the component causes the others to change automatically. Now, this is only a small part of what JET and the frameworks and libraries it uses do for the applications. JET also provides more complex GUI components like lists and tables, and selection lists, and check boxes, and all the sorts of things you would expect in a modern GUI application. 20:37 Nikita: You mentioned a layer of abstraction between Visual Builder Studio Designer and JET. What's the benefit of working in Visual Builder Designer versus JET itself? Joe: The benefit of Visual Builder is that you work at a higher level of abstraction than having to get down into the more detailed levels of deep JavaScript code, working with modules, data mappings, HTML code, single page architecture navigation, and the related functionalities. You can work at a higher level, a graphical level, where you can drag and drop things onto a design canvas and set properties. The VB architecture insulates you from the more technical bits of JET. Now, this frees the developer to concentrate more on application and page design, implementing logic and business rules, and creating a pleasing workflow and look and feel for the user. This keeps them from having to get caught up in the details of getting this working at the code level. Now if needed, you can write custom JavaScript, HTML5, and CSS3 code, though much less than in a JET app, and all that is part of the VB application source, which becomes part of the code used by JET to execute the application itself. And yet it all works seamlessly together. 21:38 Lois: Joe, I know we have courses in JavaScript, HTML, and CSS. But does a developer getting ready to work in Visual Builder Designer have to go take those courses first or can they start working in VB Designer right away? Joe: Yeah, that question does often comes up: Do I need to learn JET to work with Visual Builder? No, you don't. That's all taken care for you in the products themselves. I don't really think it helps that much to learn JET if you are going to be a VB developer. In some ways, it could even be a bit distracting since some of things you learn to do in JET, you would have to unlearn or not do so much because of what VB does it for you. The things you would have to do manually in code in JET are done for you. This is why we call VB a low code development tool. I mean, you certainly can if you want to, but I would spend more time learning about the different GUI components, page templates, the Visual Builder architecture — events, action chains, and the data provider variables and types. Now, I know JET myself. I started with that before learning Visual Builder, but I use very little of my JET knowledge as a VB developer. Visual Builder Designer provides a nice, abstracted, clean layer of modern visual development on top of JET, while leveraging the power and flexibility of JET and keeping the lower-level details out of my way. 22:49 Nikita: Joe, where can I go to get started with Visual Builder? Joe: Well, for more information, I recommend you take a look at our Develop Fusion Applications course if you're working with Fusion Applications and Visual Builder Studio. The other course is Develop Visual Applications with Visual Builder Studio and that's if you're creating stand-alone bespoke applications. Both these courses are free. We also have a comprehensive course that covers JavaScript, HTML5, and CSS3, and while it's not required that you take that to be successful, it can be helpful down the road. I would also say that some basic knowledge of HTML5, CSS3, and JavaScript will certainly support you and serve you well when working with Visual Builder. You learn more as you go along and you find that you need to create more sophisticated applications. I would also mention that a lot of the look and feel of the applications in Visual Builder visual applications and Fusion apps extensions and customizations come through JET components, JET styles, and JET variables, and CSS variables, so that's something that you would want to pursue at some point. There's a JET cookbook out there. You can search for Oracle JET and look for the JET cookbook and that's a good introduction to all of that. 23:50 Nikita: We hope you enjoyed that conversation. To learn about some of the courses Joe mentioned, visit mylearn.oracle.com to get started. Lois: Before we wrap up, we've got a favor to ask. We've created a short survey to capture your thoughts on the podcast. It'll only take a few minutes of your time. Just click the link in the show notes and share your feedback. We want to make sure we're delivering the best experience possible so don't hesitate to let us know what's on your mind! Thanks for your support. Join us next week for another throwback episode. Until then, this is Lois Houston… Nikita: And Nikita Abraham, signing off! 24:30 That's all for this episode of the Oracle University Podcast. If you enjoyed listening, please click Subscribe to get all the latest episodes. We'd also love it if you would take a moment to rate and review us on your podcast app. See you again on the next episode of the Oracle University Podcast.

Serious Sellers Podcast: Learn How To Sell On Amazon
#604 - The Road to $30 Million of Amazon Sales

Serious Sellers Podcast: Learn How To Sell On Amazon

Play Episode Listen Later Oct 12, 2024 41:50


Join us for an insightful journey with Joe Sanhanga, a remarkable e-commerce entrepreneur generating millions annually through unique and high-priced products. Listen in as Joe shares his inspiring story from his roots in Zimbabwe to his educational pursuits in the UK and the US, ultimately landing in Las Vegas. His journey began on platforms like Shopify and WordPress, selling distinctive items such as African-style swimsuits and nano tape toys, before discovering the immense potential of Amazon's FBA and FBM models. Through their conversation, Bradley and Joe emphasized the transformative power of networking at conferences like Amazon Accelerate. Explore the strategies behind Joe's successful transition to selling on Amazon, starting with assisting a soil business during the pandemic and leading to the creation of "Wonder Soil," a private-label product on Amazon. Joe's ventures into innovative products like tanning lamps, vitamin D lamps, and seasonal depression lamps highlight the importance of team collaboration and strategic Amazon sales optimization. With aspirations to surpass a $30 million run rate, Joe shares valuable insights into leveraging Amazon's platform to achieve extraordinary growth in niche markets. Discover the challenges and tactics involved in marketing high-priced products, like a $599 lamp, in a competitive landscape dominated by lower-cost alternatives. We discuss the advantages of having larger margins for experimenting with keywords and bidding strategies, alongside the creative approaches necessary to maintain product visibility amidst Amazon's policies. Joe also shares his experiences optimizing advertising strategies, managing warehouse transitions to Amazon's Warehousing and Distribution system, and utilizing tools like Helium 10's Adtomic to automate and enhance PPC strategies. This episode provides a comprehensive view of the perseverance and innovation required to thrive in e-commerce, offering inspiration and actionable advice for sellers at any level. In episode 604 of the Serious Sellers Podcast, Bradley and Joe discuss: 00:28 - E-Commerce Strategies and Global Perspectives 04:54 - Amazon Product Sales Success Story 05:41 - Amazon Brand Growth During COVID 11:37 - Strategies for High Price Point Products 11:50 - Product Pricing and Brand Strategy 15:23 - Optimizing Keywords for Product Sales 18:21 - Amazon Advertising Strategy Discussion 19:14 - Managing $120,000 of Ad Spend With Adtomic 23:49 - Amazon PPC Management Strategies 27:52 - Optimizing Ad Placements to Lower ACoS 30:51 - Pricing Strategy Impact on Sales 32:45 - Warehouse Cost Savings and Amazon Advertising 34:28 - Inventory Management for Amazon Sellers 38:14 - Optimizing Amazon Listings for Conversion 41:17 - Online Presence and Networking ► Instagram: instagram.com/serioussellerspodcast ► Free Amazon Seller Chrome Extension: https://h10.me/extension ► Sign Up For Helium 10: https://h10.me/signup  (Use SSP10 To Save 10% For Life) ► Learn How To Sell on Amazon: https://h10.me/ft ► Watch The Podcasts On Youtube: youtube.com/@Helium10/videos Transcript Bradley Sutton: Today we talked to a $30 million a year seller who is selling, and has sold, some of the most unique products I've ever heard of, including one at a $600 price point, when everybody else is priced at only 40 bucks. How cool is that? Pretty cool, I think.   Bradley Sutton: Hello everybody, and welcome to another episode of the Serious Sellers Podcast by Helium 10. I'm your host, Bradley Sutton, and this is the show that's a completely BS-free, unscripted and unrehearsed, organic conversation about serious strategies for serious sellers of any level in the e-commerce world. In my travels recently, one of the things I like about going to conferences and it's what I always tell people about is that you know you can meet different people, network with people and find out about their story, and that's kind of like how I structure this whole podcast. But then I actually did that recently at Amazon Accelerate and I'm glad I did it, because I'm glad I did it. As I went to this one mixer that they organized and I was at first, I was like, oh man, I was so drained after that day and I'm like, oh man, it's gonna be a crowded place. I don't like to be in crowded places, but you know what? I'm going to hop on this little lime scooter from my hotel and go over to this restaurant where the event was and I was sitting down talking to some people at the table and then I met today's guest there, Joe. How's it going?   Joe: I'm going good. Thanks for having me on.   Bradley Sutton: Awesome, awesome. Now, you said you're in Vegas right now. Right?   Joe: Yes, we're in Las Vegas, Nevada.   Bradley Sutton: Now, that's not a typical Vegas accent you've got. So where were you born and raised?   Joe: Yeah, so I was born in Zimbabwe, raised as well in Zimbabwe, then I moved out to England where I spent a lot of my time there doing some education and stuff and then I got tired of the cold being a Zimbabwean.   Bradley Sutton: You went to the opposite, then if you went to Vegas, I cannot imagine a more opposite than cold place.   Joe: Oh yeah, 100%. I just went on to Google and I was like okay, I want to go somewhere in America, but I need to find somewhere warm. And I think the first thing that came up on the search was Death Valley, but there was nothing over there. So the second thing was Phoenix and Las Vegas. So, I eventually found myself in Las Vegas just because of the ease of doing business. Ability to meet people here is really good.   Bradley Sutton: And did you go to university uh over in UK or in the US?   Joe: yes, I did university in the UK as well as in the US, so I got an accounting degree back in uh UK um and then in the US, I did a um was a business management degree with some entrepreneurship uh additional to that   Bradley Sutton: was it like a unlv or?   Joe: I know this was in um in Phoenix in ASU, yeah.   Bradley Sutton: ASU, uh, Sun Devil right? Joe: yes, sir, okay, there, you see it.   Bradley Sutton: I always test my I don't know. I'm not going to ask you any kind of mascot because from England I don't know anything about England schools, but I know most of the US schools have mascots here. Actually, I'm wearing a. We'll talk about this later. I'm wearing a mascot from a minor league baseball team is my hat. This is called from nearby to Arizona is Albuquerque Isotopes. But the reason I use this today was because this is very similar, this logo, to our Helium 10 Adtomic logo. I know you and I were talking about Adtomic, doesn't it look like the A from Adtomic yeah,   Joe: it actually does. Now I see it when you mention it.   Bradley Sutton: So that's why I wore this on purpose. There's a method to my madness, but anyways, before we get to Adtomic, talking about Adtomic, I just want to talk about your e-commerce journey. So when you graduated from, after you know, there at ASU, did you get into e-commerce at all, or at what kind of?   Joe: So this was actually still back in England , around 2017 is when I kind of got first into my e-commerce kind of journey, which was on Shopify. Specifically, Shopify and WordPress was where I started out and I bought a random course of somebody online, learned all about basically advertising from like Facebook, from Instagram, from Google, sending it to this website and landing pages that we used to do. And then, within being in that realm, I started hearing this FBA term being thrown around.   Bradley Sutton: What were you selling on Shopify in those days?   Joe: Oh, so I remember we had to go at, we did these other swimsuits that we did African style print swimsuits, and then we also went on and started doing it was like these little tape toys, sort of like double-sided type tape. Yeah, exactly so we were doing those. It's called nano tape, um, so, yeah, that's basically how, how that started and then,   Bradley Sutton: and then that's when you, when you kind of like, learned about the amazon, uh potential.   Joe: So I heard, obviously, being in that space, I started hearing this word FBA being thrown around uh, the acronym, and you know. Then I went on Google, searched up, okay, what is FBA? And it's some sort of Amazon selling thing. Okay, and then there's FBM as well. So now I'm like, okay, there's these two terms, what is this all about? And that's basically when I started doing my research and I was like, okay, this Amazon thing seems to actually have some stuff to it. And at the time I think the platform is not the way. It's so different now, because sometimes I've got screenshots of my old dashboards and it just looks completely different. So, yeah, that's how I basically then started with Amazon.   Bradley Sutton: Did you start selling like your own account, you know, on Amazon, start selling your own products, or did you just start working for other companies that were selling on Amazon?   Joe: Yeah, so to begin with I was working with this other lady. She basically had soil and the way we actually started working together was I created a website for her, put on Shopify, to sell the soil, and then she was bagging up the soil to try and get it to consumers, because her business was mainly sending thousand-pound totes to farmers. But she said, how can I get this you know three-pound bag to people that are at home and want to grow some plants and what actually it was? This was around 20.   Bradley Sutton: Soil on Amazon, man, when you think you've heard it all.   Joe: It's called Wonder Soil. It's actually one of the rivals to Miracle-Gro and we actually I actually raised it to get the Amazon choice badge. We were on Business Insider as one of the top growing brands on amazon too, um, but basically the cool thing about it was we've tried to find a way to get the soil to consumers and everything worked well, because this was during covid, so people were at home, people had nothing to do, and you know people are growing stuff at home, people. You know we're just trying to, yeah, so the product hit at the right time uh, what year is this 2020.   Bradley Sutton: Okay. 2020 okay yeah. Oh yeah, I mean that was a good time. Yeah, during covid, people were always are really trying to make their own gardens and stuff like grow their own vegetables and stuff like that okay yeah this is a private label brand or you're reselling um others?   Joe: oh, so we actually have manufacturers in China. Uh, that we get all that product for We've actually gotten rid of our warehouse Now. We've gone full into AWD, so we're getting.   Bradley Sutton: Let's talk about that a little bit later in the show too. I haven't talked to many people who are doing that, so I'll be interested in that, ok.   Joe: Yeah, so that's, that's what that one. And then there's another lamp company, which is pretty funny, is tanning lamps and vitamin D lamps, so we run through those on Amazon as well. Those are actually the only there's a lamp that can give you vitamin D.   Bradley Sutton: It's the only lamp the same like the sun.   Joe: Yes, you spend five minutes every other day in front of it and it'll give you. And there's studies on YouTube. People use this lamp, where this lady her name is Carnival Doctor on YouTube. She did a study with a lamp for six weeks and her levels went from 20 something to 40 something vitamin D. She feels healthier than ever and it's perfect. It stopped her from having to buy, you know, vitamin D pills and, of course, all those sorts of things. So, yeah, it's the only one, and you get tan at the same time. So now, that's the difference. So, there's two lamps One gives you vitamin D and one gives you a tan, because there are some people that don't want the tanning effect. So that's what it is. So, it's-.   Bradley Sutton: Now what if you put this tanning lamp over your miracle magic soil? Are you going to create some like hybrid plant? Oh my, you sell the most interesting things. All right, there's a third account too,   Joe: yeah, so it's basically the third account is also in lighting, but this one is seasonal depression lamps where basically you look at it so that one is its own brand.   Bradley Sutton: Did you say depression? Yes, depression lamp Like as in I'm very depressed and I'm sad like that word depression.   Joe: Yeah, depression, you're sad. What does that have to do with a lamp? So, you look at this lamp for 30 minutes and you become happy. I know it sounds stupid, but minutes and you become happy. I know it sounds stupid, but that one doesn't give you vitamin D.   Bradley Sutton: That one doesn't give you vitamin D. Nor a tan. Yeah, you see. Hey, there's a product idea. You got to combine all three and then, oh my goodness, you'd have the most amazing.   Joe: That would be powerful. We've had people that have requested you know, do you have one that does both, or this, this, this? But because of FDA regulations, we've had to separate a lot of the things.   Bradley Sutton: Is these three separate companies or is it like the same group of people who's all owning all three of these?   Joe: So two of the companies is one group of people and the other one is one person.   Bradley Sutton: And then, what do you do in these?   Joe: So I run just an Amazon account. So I run just an Amazon account. So running the ads, running the listing optimization, making sure the account is obviously hitting the sales numbers, everything that just literally goes through Amazon and inventory everything.   Bradley Sutton: What's the overall projected sales for all three combined on Amazon?   Joe: So for all three combined, we're looking at 28. We're on pace to do 28 million this year on all three.   Bradley Sutton: Will that be your best, our biggest year yet.   Joe: Yeah, this would be our biggest year yet. We've seen record numbers in previous months. In previous, like this past quarter, we'd had record sales as well. I know we had our biggest. We had, I think, our first. We had two days in September where we had 100K sales days, which was the first time we've done that. We also had our highest sales days in the past two years. Nine of those days in our top 10 sales were all in September. So we've had record sales. Especially Q3 was really, really amazing. I think we were up about 800K across the board in Q3 alone. So we're on pace to do a really good year and it sets us up for our plan is to do a 2.5 million month at least once this year in total and that will set us up for a run rate for next year. We want to push over to that 30 million stage.   Bradley Sutton: If you're like me, maybe you were intimidated about learning how to do Amazon PPC, or maybe you think you just don't have the hours and hours that it takes to download and sort through all of those sponsored ads reports that Amazon produces for you. Adtomic for me allowed me to learn PPC for the first time, and now I'm managing over 150 PPC campaigns across all of my accounts in only two hours a week. Find out how Adtomic can help you level up your PPC game. Visit h10.me forward slash Adtomic for more information. That's h10.me forward slash A-D-T-O-M-I-C. I'm just curious, before we get into some more details about, like, your advertising because I know that's one of the things that is your specialty these lamps that you're doing like, were these kind of like inventions, or? Or there was an existing market of vitamin D lamps or an existing market of lamps that make you happy Like was that an existing keyword or is this something that you're you guys invented and kind of like created the demand for?   Joe: So it's actually crazy. You say that is because the first vitamin d lamp started in 1924. It was a guy by Dr. Sperti is his name. He's the guy who made it. He invented it and he started selling it throughout the US. It was a company in Kentucky, um, but he was just selling it out of his own like little warehouse and then eventually he got old um and then sold off for business and then basically that's where we put it online, um to run it through Amazon, and we first were going like, for example, the vitamin D one it's the only lamp that's there. The only competition are these vitamin D pills that you'll see on Amazon. But our price point for the lamp is like 599. And we're competing against people that can buy a bottle for four bucks, five bucks on Amazon. So it's been a pretty interesting game competing against people that can buy, you know, a bottle for four bucks, five bucks on amazon. So it's been a pretty interesting game. But it moves. It moves um on amazon. What's the price of the product?   Bradley Sutton: you said 599 599, 599, yeah, wow, uh, I want to. I'm trying to look at, look for it on amazon right now. What's the brand name called?   Joe: SpertI s-p-e-r-t-i, and then you'll see vitamin d we got to show the audience this.   Bradley Sutton: Okay, oh, my goodness gracious, here it is. Hold on, this is incredible. All right.   Joe: That's it and it's right. That's the first one that's popped up against our competition. All those are competitors on the right.   Bradley Sutton: So 500 and Sperti. So that was what the doctor's name was. Who?   Joe: made this up.   Bradley Sutton: Yeah, Dr. Sperti, that was his name yeah, there was a ready demand for this out there.   Joe: Oh, huge, because, if you think about it, vitamin D pills are basically the same target market as us. Yeah, so this is just a non-invasive way that you buy and you keep this for a very, very long time. So that's that. So something interesting. As you go through this, this listing, you're not going to see the word vitamin d anywhere on the listing and you'll notice our carousel images, our images on there. we have our box images because amazon actually took us down because our lamp has the word vitamin d on it.   Bradley Sutton: ah, yeah, yeah, I see it in the video there, so you don't have vitamin d anywhere in there, but you probably got indexed for the keyword by Amazon.   Joe: Exactly so. That's why we use UVB, which is basically the term for vitamin D. So Amazon is not allowing us to use it, even though we're FDA approved and everything. Amazon is just not letting us go for that.   Bradley Sutton: I see some of your main keywords. Yeah, vitamin D lamp.   Joe: Oh yeah, we can use them in the back. Vitamin D light.   Bradley Sutton: Vitamin D therapy lamp, vitamin D light therapy. Now, I'm just curious. I don't talk very often with people who have this high price point. What is different about having a product that's in the hundreds of dollars? Like, do you approach advertising differently, cause it's not like where I mean. You might now you know you, you might get a hundred clicks with no sale, but still you just get one, the 101st click. All of a sudden, that's $600 of revenue. So, so, like, how is it different, uh, with something like this, compared to your, your other products, which I'm assuming is like more you know, regular pricing 10, 20, 30 bucks.   Joe: So the cool thing about it is that across all the catalog that I, that I that I run, I have products starting at like five bucks, all the way to this one that has $5.99. So the landscape with this one is totally different. Like you said, you can set up an ad, you'll get 50 clicks at $1.20 CPC and, based on our margins, we're still clean on a sale. If we get one sale, we profit. So the cool thing about it is you just have to be a bit more patient. However, because we have such kind of should I say a big space for those clicks, it allows us to test a lot of keywords in this space and we really kind of exhaust any keyword that's there without having to really be careful, unlike if I was selling a smaller, less priced product, I can't just throw in all the keywords and just you know it'll go crazy if it's like a $60 product.   So with this, it gives me that comfortability to go out and bid higher and also it allows me to, like I said, like if you saw on that page where you searched, my competition were those pill bottles that are like five bucks, six bucks, seven bucks, so I can bid above all of those guys. So I ensure that every time you search the keyword I'm going to be first, because there's no way they're going to bid the same amount of dollars. I'm going to bid because their price points are different. However, they can take a loss on a sale because they have repeat products. So people finish that bottle, they come back and buy another With ours. That person buys a lamp and is done. So we obviously have to gauge it to a point whereby, okay, this is our ACOS target and at this A-cost target we're profitable. So that's now how more I manage that one. It's more ACOS targeting, but I'm basically trying to make sure I stand out for every single eyeball that's there because I have the room.   Bradley Sutton: So this is interesting because, regardless of the price point, there are similar kind of scenarios where it would be like this they're probably actual keywords of how somebody who's searching for this exact thing is probably very limited Vitamin D lamp or lamp for tanning, you know for your other product, or it's not. Like oh there's you know 5,000 way, you know 5,000 ways that are going to come up in Cerebro to search for this one thing. You're like it's kind of like that way with coffin shelf. If you're looking exactly for a coffin shelf, that's pretty much it, that's it. Coffin shelf or shelf shaped like a coffin, like there's very limited number of words. The other keywords I get sales from is more like the, you know, gothic decor or spooky things. So how are you doing your keyword research? Like using Helium 10 or amazon, for you mentioned you do a lot of testing for targets. So like, where are you coming up with these keywords to test to see if any of them stick?   Joe: So that's. It's more like said, I run Cerebro on a lot of those vitamin D bottle and pills and basically a lot of my. So, like I've said, I've exhausted the keyword vitamin D and the more you get long tail with this product, the less traffic you have. You know, for some of the products you can get long tail with a bunch of keywords and you still have traffic. Like, for example, if it's like a Ziploc bag, I can put Ziploc bag for Legos, Ziploc bag for sandwiches, Ziploc bag for this. You know the list is endless and you have traffic with this. Not many people even know this lamp exists.   So what I've actually done is sometimes I go and target competitor company names and key names. So if it's like some company that sells a bottle of vitamin D lamps or vitamin D pills, I'll actually target their brand because when I look at their keyword, it's people that are repeat purchases, so it always has traffic. And but because I can bid high on their own company name, I'm going to show up first and I have the room with my price point to show up consistently and eventually, if you're somebody that is very hooked on buying these products, for vitamin D pills, you're going to see my product and think, okay, what is this? Because it's coming up. I've seen it so many times when I come and buy this product that when you read about our process, you then be like, okay, so this is something that actually can benefit me and can work as an alternative for ingested pills and all the other disadvantages that come with that. So that's basically how I find other keywords and start going for those.   Bradley Sutton: You know, price game is something nobody ever wants to play, and you're not playing at all, you're doing the opposite. You know, like on some of these keywords I do see some like people ranking for, like vitamin D lamp, but they're, just like you know, $20 products and they're selling thousands of units. But then are you going after those people too, Like the people who are going after that or how? How, how do you still get sales when people can technically get something one 10th the price? People you just got to like, make sure that they know the value of what you, that yours is different.   Joe: Yeah, so that's where we have to communicate that through the listing, and it's because a lot of those $20 lamps that you're seeing there, those are not actually vitamin D lamps, those are seasonal depression lamps. So if you're looking at, can you see that Alaska Northern Lights big box on the right where your mouse is? Yes, that's one of the lamps that I sell. That's for seasonal depression.   Bradley Sutton: Okay, I was about to click on that, but no, I'm not going to click on the sponsored ad and charge you $3 right there. So good thing I didn't.   Joe: But then if you look at to the left, you've got that product. That's 19 bucks. Those are actually seasonal depression lamps, so they don't give off vitamin D. So somebody would purchase that and then they'll realize that doesn't give you vitamin D. So they'll probably return it and then come back to ours. But if they're looking for seasonal depression those would be those ones.   Bradley Sutton: This is just an interesting niche. This is kind of fascinating to me. So then, overall, almost $30 million. What are you spending per month? Or what are you paying Amazon for advertising per month?   Joe: So monthly. Right now we're spending total across the board with about 120K a month on advertising budget.   Bradley Sutton: Advertising. And then, what's your TACoS then? At kind of, is it different per account? Are you looking at your TACoS?   Joe: yeah, so the lamp TACoS are, like, I think, close to two percent um, and then uh, because that ACoS is really low, um. However, with uh, with the one that's got the majority of the products, our tacos right now we are sitting at a 5.38. That's what we just closed out at, okay. Okay, our ACoS is at 15 point. I think it was 15.5 is what we ended on in September. We brought that down from a 20 ACoS down to a 15. Our goal was to bring it down to 10, but obviously we've done about 50% of that target. Now, which is hard, you know, if you're spending, you know, over a hundred K. To bring down a cost by 5% is really difficult. So that's, that's where we are.   Bradley Sutton: Are you using Adtomic for all of this spend, all of this $120,000 spend?   Joe: We've launched. So with Adtomic, we've put in some rules for some SKUs and we're watching that and I actually had a call with Travis, like I said before, to try and we've got different rules for different products and we're trying to see how we can build out those rules in Adtomic.   Bradley Sutton: Like rules that you were just using manually, like downloading search term reports. What are some of the rules? Tell me how you run your PPC.   Joe: So most of my rules would come into the shipping product, one where basically first rule is identifying the product, pricing. So if it's a bag so let's say Ziploc bag, right, we've got a Ziploc bag, a four by six size. We have different variations. So we have a hundred pack, five hundred pack, thousand pack. The hundred pack could cost maybe 19 bucks, five hundred pack 50 bucks, other one 99 bucks.   So based on those, we make rules where if it's the $19 one, we want to start our bids at $0.40 or something like that. Somewhere it makes sense. But then if it's for the 1,000-pack one, we can start off our bidding at $2, $3. And that's because if somebody then buys it it's $99. So it's more of guiding based on that price threshold of the product and getting that rule in. And then, as we keep going, we want to make sure that if it's not getting any spend after two weeks it'll look back and add, you know, 10 cents to it if it's getting too many clicks. And if it gets like 10 clicks at that price, at that um, 44 cents, uh, whatever, 40 cents, um, and no sales, it'll dial it back by five cents or something like that, just to just to start, you know, bringing it back to see what we can get. So those are.   Bradley Sutton: So then, instead of basing your rules in Adtomic, like, necessarily on ACoS, you're like doing it on the, the performance, like clicks and. Are you doing impressions at all, or just mainly clicks? Mainly clicks and then sales? What about your keyword harvesting? Did you set up any keyword harvesting rules on your auto or broad campaigns? Yes, and what's your thresholds there?   Joe: So with there we do have our keyword harvesting set up and we usually just go in when it shows us. Then we'll add and accept whatever we want to Others we don't and we basically just throw them in. So we have one that right now has some rules and we've been working with the one that keeps the ACoS threshold in different margins. That's been looking good. So we've actually decided that when we've got launch ASINs because we're planning to launch another 42 products, I think it was soon is put those into the ACoS threshold, get those spending. Then, once we've gotten some traction with those, we start messing with the bids ourselves because we look at these in different silos as well in terms of market share.   So if it's like tapes, we might not be the biggest player in tapes, so we can't really go out the income on the market. But if it's like Ziploc bags, Celo bags, we have tons of market share. Our brand is known. The moment you see our packaging on our default listings, you know it's us. So we bid higher on those ones to really just take up and kill anybody that's coming in. And we're happy to take up that high bid because people repeat purchase on those ones so we can lose money on the first sale because we can look at the lifetime value of those customers and it makes sense.     Bradley Sutton:   How many targeting type, different targeting types are you doing per product? You know for me, sometimes a lot of some. I'll have three main keyword ones, at least, obviously, to start, because then I'll cap it and start new ones, but I'll have an exact, you know, like, like atomic calls, a performance campaign. I'll have a broad campaign with broad targets. I'll have an auto, but then I'll also a lot of times have an ASIN targeting campaign, product targeting campaign. I'll also do a sponsor display campaign. I might do a video, two video campaigns, like a keyword video campaign, an ASIN video campaign and then maybe, if I have, you know, three products in a certain brand, I might have a sponsor brand that's feeding a few of those. Like, are you doing all of those or just you're just keeping it to the basic keyword targeting campaigns? What do you guys do so?   Joe: So for every ASIN we basically have five different ads and it starts off with broad, which is obviously our broad keywords, and then we'll go to exact keywords where basically we don't start off by putting keywords in the exact. We let you know, get it from helium and atomic and then we put those in uh based on what it's telling us, and then we've got auto testing. So we uh, or it's called a auto cam, just normal campaign, which is obviously we let that run in the order category. Then ASIN testing, where basically we're running targeting that specific category of that product. And the cool thing about those ascent testing is it helps us identify new markets. So let's say we have a variation in poly and plastic packaging and let's say this product is sitting at number two. We might actually take that product. And then let's say we have other products that are like three, four, five, six in that category. We might take the number two product and move it to mailbags. It'll drop the BSR because of its historical performance and its ability to perform. We might actually start testing a different category just to gain more market share in a different category because we know we've kind of succeeded in that one. So that's more for ASIN testing.   Then we have ASIN targeting, where we actually we use our Cerebro to get competitors, Black Box to get competitors Then we obviously target those competitors depending on how many reviews they have. So if it's somebody that's got anything less than four stars, what they're targeting you, because most of our products are sitting within the 4.5 to 4.89 range. So anybody below four stars we're targeting you, and then we also use what's it called. Then those are basically the five that we do per ASIN and then we also use what's it called. Then those are basically the five that we do per ASIN. And then we have started testing some display campaigns. We had VCPM running, which was a waste of money really. It was just the attribution was wrong. So what we're doing now is some display campaigns to actually do some retargeting and basically that's where we've got started going. We haven't done much sponsored brands. Things have just really been working in sponsored product for us.   Bradley Sutton: Or the auto and maybe broad campaigns. Did you set any atomic rules as far as when to suggest a negative match or like a poor performing search term? Or how are you managing the spend on your auto campaigns? Because you know, sometimes if you just let Amazon do what they want, they'll just show you for all kinds of crazy stuff and they don't care about how much your spend is. So what are you doing to keep your auto campaigns under control?   Joe: Yeah, so what we basically do, obviously we have the loose you select the loose substitute compliments and all that type of stuff. We have those like basic keyword rules that we set our bids at where, and we do that based on our pricing. So, depending on the product's price, we'll add in those rules and then basically when Adtomic starts showing whatever negative is in there, we'll go in and either accept the negative and or reject it. And I remember I don't know if it was Travis who told me we don't want to is it reject the negative or something, because it will completely kind of block it out forever or something like that In Adtomic. If you were to do that on a negative, I think it was if you fully approve a negative. So we kind of just watch it and see if it's really a negative and then we test it out. But that's how we kind of do it. So we haven't really put much rules on that side. It's more depending on the price of the product.   Bradley Sutton: And then you said for like keyword harvesting, like if an auto finds something like is it just one for you? And then you, hey, I'll go ahead and move it to one of my manual campaigns. Or do you want to see like two or three orders of some new keyword before you put it to your exact campaigns, or what's your threshold there?   Joe: Yeah, usually we try and get up to about five, five orders. Um, cause, that's that we've, we've, cause we've had keywords where you might get an order or two, and then it just starts burning money after that. So, yeah, um, we let whatever's winning win and then if something shows promise and you know it comes up with like five orders, uh, that'll be cool and then we'll add it back in. And the cool thing about it is, if it was obviously like the, the lamps, five orders is a bit too many for a keyword. But if it's the Ziploc bags, we know we can easily get those five orders and it justifies because you know that the, the traffic on those is way more than the people that are looking for the lamps. So it just depends on the product as well.   Bradley Sutton:     What is what brought you from, I forgot what you said like, from 20 to 15 a cost, like? What specific strategies you think? Like, was it something different? You were doing um, or, or you just change the rules, or what. What can you attribute that lowering of ACoS to?   Joe: Okay. So basically, we started a KPI where we looked at the number of ACoS campaigns that are above 100% in our account, because I think we have about 4,000 something campaigns running. So basically, when we sorted that out, we would start off with, like, let's say, 40. Then of those 40, that's our priority for the month and basically, we'd look at what the ad type is. We'd look at what the ad type is, we'd look at where the you know impression share is going. Is it top of search, is it product key, is it product pages or is it in the categories? And then basically sometimes we would notice that, let's say, if it's product search for this specific ad, it's showing a way better ACoS but it's not getting as much spend and impressions as this one. But you know, the product page is just spending money. So what we'll do is we'll change the percentage on the impression share to show more on that specific placement that's actually performing the best.   And what we realized is a lot of our ACoS started just, you know, dropping for those campaigns where we doubled down. Yes, it might not spend as much, you might not as much traffic, but if our ACoS drops, you know, by 50% on that campaign, that's a win. So that's what we're doing. And then sometimes it's actually where you're getting a bunch of sales at like 60, 70% ACoS from top of search, but this product page placement is at 20% ACoS but it's not getting as much spend. So now we'll move our spend and our impression share more on that product page and reduce the top of search. Even though it cancels out some sales, the profitability of investing in that product placement on the product pages makes more sense. So that's how we've been kind of juggling the placements and it's been helping really well to cut ACoS.   Bradley Sutton: When you launch new products. What's your strategy? Is it strictly I mean, like do you have this big audience that you're able to promote to and then they send a lot of traffic that way, or is it 100% with PPC that you're launching products? What's your strategy? Like?   Joe: So 100% of PPC. We have been talking about, you know, starting to get an email list together, but, as you know, with Amazon you don't get that information of your customers, so it's very difficult. If we had like a website, then maybe we could leverage that side of it. But, like I said, 100% of all sales is Amazon and unfortunately, we don't have the customer data. So what we usually do is set up our PPC. Sometimes, depending on the market or the product, what we'll use are the deals, if it's promotions, and sometimes we've actually, you know how you can now put price, the strikethrough pricing. So sometimes when we launch a new product, we launch about a few bucks higher than we're actually planning to sell, and that's because we just want to get the featured offer pricing going. And then, once the featured offer has registered onto Amazon, we'll set a strikethrough price at the intended selling price that we want to and then we'll pump up our PPC. Why? Because now our product is showing amongst everybody else to have this discount of like 20% or whatever it is, and that increases our conversion rate because obviously people are seeing this discount. And then sometimes you might actually get the badge that says lowest price in 30 days and on a new launch. That helps quite a lot and basically that's what we do.   Then we start pumping PPC and then, once that ends, we actually noticed with another product where we were averaging about, I think it was 0.78 run rate so which is basically close to a sale a day on that product at 24 bucks. We raised the price to 28 bucks so that we could make a strike through at 24. And then at the end of the strike through because after 30 days when you set the strike through it stops the deal, we actually realized that our run rate went to 0.68 at 28 bucks. So we started noticing that the difference in sales were not actually bad from the price going back to four bucks. That's because we just had forgotten to change it back to that 24. So it actually helped us realize like wait, we were still selling at that 28 bucks, so now we just drop it back and when we drop it back to 24 with that strikethrough it just increases the sales and obviously the conversion rate and the ACoS, which allows us more dollars to spend on that product.   Bradley Sutton: Before you switched to AWD, did you guys have your own warehouse? Did you have multiple 3PLs, One 3PL? What were you doing?   Joe: So we had our own warehouse and basically obviously we're shipping it from China to our warehouse and then from our warehouse to Amazon, and then basically with AWD, and the fees just got out of hand. It kind of priced us out of obviously doing that route, which is why we went with AWD. And it's kind of been our first kind of-.   Bradley Sutton: The new fees you're talking about, like the inbound inventory placement fees and things like that,   Joe: all that type of stuff, yeah, it kind of really hit us hard. So we realized, and we priced everything up in Seoul, it's way more lucrative to go with AWD, and you have to have   Bradley Sutton: Is that AGL too? Or just like? Are you actually having Amazon ship from China or you're shipping it into AWD?   Joe: We're shipping it into AWD. Right now, we haven't fully gone into Amazon shipping it from China, but we're shipping it into AWD. And that's basically where we just noticed that economics-wise it just made way more sense to go with AWD. So we took that big step of obviously getting away with our warehouse and now just sending product into AWD. How big was your warehouse? It was pretty big. It was pretty big. I don't know how many square feet on the top of my head.   Bradley Sutton: Do you know how much it costs per month? About?   Joe: Yeah, it was close to about. I think it was like 25 grand.   Bradley Sutton: Oh my goodness, yeah, so we're talking probably 20,000 square feet or above. They're in Vegas. Yeah, it was pretty big. And then how many full-time employees had to run it?   Joe: So we had four people there   Bradley Sutton: and then now you had to let them go after you close the warehouse. So then it's not just $25,000 a month, but then probably another $10,000 of salary you're saving.   Joe: yeah, so there's a big saving, when you look at it, from everything. And we've kept one person I think it was that basically helps us with inventory forecasting and just helping manage kind of the inventory side of AWD. Because right now we've moved into AWD. But some issues we've had with AWD is when FBA goes out of stock there's like a two-week period we've seen that it takes for that transfer of inventory to go into FBA and that's because AWD hasn't learned our sell through rates yet. So right now, for example,   Bradley Sutton: you can't control that at all. Like you can't just force AWD to say, hey, I know I'm going to sell more, send more to FBA. Like you have to wait for them to be able to see it.   Joe: Yeah. So you can manually send more. But because we have a catalog of 900 products, it'll be very tenacious to look at FBA for all these products and then go to AWD and manually click one. So what we've done is we put the auto replenishment. But because Amazon hasn't learned our products yet, literally, we had a product that had a sell-through rate of I think it was it'll go through about 300, 400 products a month. We ran out of that product and AWD transferred 10 units to FBA and it took two weeks to get those 10 units and those sold out within a day. So it was just the worst and the worst.   Bradley Sutton: I got to start you on Helium 10 inventory management, because helium 10 inventory management is created for people who have three PLs and then and then we tell you, all right, set up a new shipment. But theoretically somebody just asked me to say the other day we don't integrate yet with AWD. I know that's on the roadmap, but like a third-party warehouse, like you know how much inventory is there, so you put the number in and then you know what you know. Helium 10 knows what your inventory is in Amazon. And then so we would just tell you the same way hey, it's time to trigger, you know. So I know you said before like hey, yeah, you might not have time to, you know, be checking 800, but that's the whole point of inventory management where you just you know you better send, you know, 500 units in from your warehouse and so, yeah, we'll get you started on that.   Joe: Yeah, that would be a lifesaver because this is how it's impacting my ads now. So you know back in the day, if you run out of stock on FBA, your listing is not showing anymore, your ads are not delivering. However, with AWD, if you've got stock, what it's done now is it changes our seller delivery date. So we realize that with this duct tape,   Bradley Sutton: and you're conversion like tanks right, because it says like oh, delivery in three weeks or something crazy like that.   Joe: So this duct tape product had delivery in two months. I'm not waiting two months to get duct tape.   Bradley Sutton: So instead of the listing going dead, it still shows available, but then two months.   Joe: So people are clicking on this sponsored ads and they're like, yeah, I'm not waiting two months to get a duct tape, I'm going to the alternative person which is their competitor. So, I'll add just hitting, hitting, hitting, hitting, no sales. And you're like what's going on? And then now when you look at it and it's fine detail, delivers in two months. You're like that's so. Now we've had to end the crazy thing about when you've got 4,000 ads, because you've got five ads SKUs, you can't go and manually turn all those off and then wait until it comes back in stock to turn it back on. So that's been a nightmare as well.   Bradley Sutton: Now Interesting, okay. So yeah, it looks like AWD, like overall pretty decent. You save all those fees, probably thousands and thousands of dollars of fees. You're saving tens of thousands of dollars in warehouse, tens of thousands of dollars in warehouse. But on the flip side, you almost have to, you know if, if you're not using Helium 10, um for inventory management, you almost have to like hire another full-time employee just to manage that, depending on how many SKUs you have, or else, or else you're going to lose, you know too much money.   It's not just the lost sales, what's advertising, like you said, very good, very good, uh, very good point. Um, if I were to ask you like, all right, hey, end of the day, not everybody can, can have a business that does 30 million a year. What set? What has set you guys, uh, apart? Obviously, you know you have some cool patent and some product. You know for one of them that that nobody else can get. That's been around since 1920, but it's anybody you know. I'm sure there's billions of or millions of businesses that were made a century ago, that that technically you could sell, but that doesn't mean you're going to be a 30 million dollar seller. So what sets you guys apart, would you say?   Joe: I think it's that consistency and never give up mentality when you start off a product, because a lot of things that I've seen with other sellers is they're quick to write off a product because they're not profitable with it within the first kind of initial launch phase. And what I've noticed is we stick out with the product and our launches are in strategies here. So we start off with a launch. So, let's say, we're doing zip bags right and we have these zip bags. They're heavy duty, so it's four mil size. When we start off with a zip bag, we're happy to lose some money on that because we know it's repeat purchases. So we now have to calculate and understand okay, this is the frequency of those sales, this is what we expect to come in, what sizes are winning, and basically having the consistency to keep pushing, even though it might not be profitable to start. Eventually, when you start getting those repeat sales, you'll see the profitability come in and that's where those products, when they start winning. You do the exact same thing with new launches and it's, like I said, that consistency to keep doing that with new launches and new launches and new launches has been a game changer. And then also just not being afraid to test Amazon. So you know, like I said with our vitamin D one, we've thrown different keywords in there, we've thrown different words in there, even at times where you get delisted because Amazon said these things don't work or this is, you can't put that writing, so it's.   It's helped us push our listing and appear in different places and we always do tracking to see if it's click-through rates, if it's the title. So, for example, some of our titles have our brand name, which is spot and industrial. That's a pretty long brand name and if you look at our uh, a product of ours on mobile devices, our brand name takes up should I? I say, 40% of the title. So a lot of our keywords and use cases don't actually show on mobile. So what we did test was removing the brand name and leading with the use cases and the product keywords and it started converting better because nobody cared what our brand name was.   But if they're seeing that zip bag for Legos, for this, for this, and it's heavy duty and it's waterproof, that's what people want to see and it increased our click-through rates, which increased our conversions as well. So stuff like that and they're minute tests. But if you do that on a catalog and with products at a volume, it can be a massive scale. And when you realize that from a potential of okay, we have 800 ASINs, 50% of them increase in conversion rates by just 10, 20% I mean in click-through rates you're bringing in even way more traffic and if you hold your conversion rates, that increases your sales without having to do any change in bids and anything like that. So those key changes allow you to save your dollars but still gain on all that traffic.   Bradley Sutton: Now, if I were to ask you your favorite Helium 10 tool, is it Cerebro, is it Adtomic? Is it Magnet? Chrome extension, what is it?   Joe: I would say I love the Chrome extension because it helps me. If I go onto a competitor, straight away I see what they're lacking If they don't have 150 characters in their titles, if they don't have enough bullets, if they don't have, you know, enough bullets, if they don't have enough images. So the moment I see a competitor that doesn't check all the boxes that the Helium tool shows, I'm targeting them. Why? Because if you look at my products I have 10, you know most optimized on your thing. Then at the same time I look at keywords and it gives me a breakdown of how much revenue is in this keyword, how much revenue is in this industry. So before we go launch a specific product like we were launching an anti-slip tape because we want to add to our tape ranges so just looking at that, you'll look at that keyword anti-slip tape. It brings in 600 million a month from all these different competitors.   Now I can run those competitors through Black Box and I love Black Box as well because it helps me really fine tune what I'm targeting and who I'm looking for. So, I can say they get X amount of revenue monthly with X amount of reviews. Like I said, if they have anything below four, Black Box shows me those people. Those are easy people I can add to my product targeting campaigns and I know, because our listings are optimized, we'll easily take some sales from those people. Campaigns and I know, because our listings are optimized, we'll easily take some sales from those people. So, I would say the listing Blackbox and also the Chrome extension will be my two favorite.   Bradley Sutton: All right. If anybody wants to find you on the interwebs out there, like on LinkedIn or somewhere like you open to saying how they can find you guys out there.   Joe: Oh yes, of course, on LinkedIn obviously it's just Joe Sanhanga, my name, and then on Instagram it's j.sanhanga, which is my last name, s-a-n-h-a-n-g-a, and that's mostly where I am on social media. But any questions or whatever I can on LinkedIn, you can just pop it in and I'll try and help where I can.   Bradley Sutton: Awesome, awesome. Well, thank you so much for coming on the show and hope to see you at an upcoming event soon then.  

Inclusivity Included: Powerful personal stories
Reclaiming words: The evolution of LGBTQ+ language

Inclusivity Included: Powerful personal stories

Play Episode Listen Later Jun 20, 2024 30:11 Transcription Available


Christian Castile, a trial attorney at Reed Smith, is joined by Reed Smith's Professional Development and Continuing Legal Education Manager, Joe Maguire, and Emily Chang, a former Reed Smith summer associate, to explore the evolution of LGBTQ+ inclusive language. This episode delves into the history and reclamation of the term "queer," examining its significance and the broader impacts of language on the LGBTQ+ community. Joe and Emily share their personal stories and insights, discussing how their experiences have shaped their understanding and use of LGBTQ+ terminology. They also touch on the intersectionality of language across different marginalized groups and the importance of person-centered language. Tune in for a thought-provoking discussion on the power of words and the journey toward inclusivity. This episode includes a frank discussion of words used to describe the LGBTQ+ community, some of which could be triggering to some listeners. ----more---- Transcript: Intro: Welcome to the Reed Smith Podcast, Inclusivity Included: Powerful Personal Stories. In each episode of this podcast, our guests will share their personal stories, passions, and challenges, past and present, all with the goal of bringing people together and learning more about others. You might be surprised by what we all have in common, inclusivity included.  Christian: Hello, and welcome to this month's episode of Reed Smith's podcast, Inclusivity Included. My name is Christian Castile, and I am the guest host of this month's episode. I am here joined today by Joe Maguire and Emily Chang, and we are going to be discussing the evolution of LGBTQ+ inclusive language, focusing on the term queer as a prime and driving example, but looking sort of across the board, a different language that we use. I'll get into a little bit of the history of that term and some other terms, but as we are getting started here I'm gonna toss it over to Emily and Joe to give us a little bit of introduction. So Emily, we'll go ahead and have you start. Can you just share a little bit about your background and what it is that inspired you to pursue a career in the legal industry?  Emily: Yeah, I'm Emily. I majored in undergrad in hospitality and graduated in 2020. So my job on cruise ships was no longer an option. And I took a semester off and then decided I wanted to go to law school. I had taken a hospitality law class and I had loved it. It was definitely the right move. And I am studying for the bar and joining the firm in Dallas soon.  Christian: That is so exciting. Are you doing anything interesting in between your law school graduation and starting at the firm?  Emily: I'm going to clerk for a bankruptcy judge in Dallas for a year.  Christian: That's incredible. Congratulations.  Emily: Thank you.  Christian: Joe, I'll pass it over to you. Sort of the same question, if you could just share a little bit about your background and how you came to get involved with Reed Smith and the legal industry more broadly.  Joe: Sure. So I was an English and philosophy major in undergrad, which was all incredibly useful if I wanted to go into publishing, which I did not. So I ended up going to law school, as many people do, as sort of a default. And I clerked for a couple of years, and then I practiced for a couple of years. And it was clear that it was just not something that I was... I love the law, and I love the learning, I love the words, but the actual practice just just didn't suit. And so I went a different path and worked in law schools and then eventually came to work at the firm. And actually, this week is my 25th anniversary at the firm on the 14th.  Christian: Congratulations. What a milestone.  Joe: Thank you. Yes, it's a milestone I don't think anyone ever really expects to hit. It sort of comes as a surprise. So yeah, and it's interesting because my law firm experience was very different from when I was a practitioner to when I was in a role that allowed me to work with lawyers was a different dynamic and one that suited me quite well.  Christian: Well, I know I speak for many of us here at the firm to say that we're happy to have you in the role that you're in. You do some great work for us, and I know I enjoy working with you. So I'm so pleased to be sitting here with you both today for this podcast episode. And I appreciate the insights that the different perspectives that you just both shared are going to provide for the discussion that we're having. So just really quickly, I thought for anybody who is maybe less familiar with sort of the history of what we're talking about today, we are looking at the word queer as a sort of focal point for the evolution of LGBTQ+ inclusive language. And the reason that we're focusing on that word is because historically queer has seen a lot of change, a lot of development over the way that it's been used, the way it's been perceived in this particular community, most notably sort of starting out as a derogatory term, and then over time being reclaimed as different generations of the the LGBTQ community have really focused on trying to recapture some of that language. So sort of with that in mind, this is a question for both of you again, as well. And we'll go, we'll take this in reverse order. So Joe, if you could open us up here, is there anything that you are comfortable sharing about your LGBTQ experiences, your experience as a member of the LGBTQ+ community? And specifically, what is the language that you use with respect back to your own identity?  Joe: So I was aware by the time I started school as a kid that I was different. And I had some awareness of what that was about. And I, as an elementary schooler, was mildly fluid from a gender perspective. And so consequently, I was effeminate enough to get the attention of my classmates. And that made me a target. There were other factors in my identity that sort of contributed to that sense of otherness that had nothing to do with sexuality or gender. Going through those experiences, I had a fair amount of confusion about exactly what was going on. And all that seemed to clarify once puberty hit. And it became very clear to me that my identity was male and gay. And that is how I identify now. And that's probably been since about sixth grade.  Emily: Yeah. And I use she/her pronouns. And I think came out to myself probably in middle school as a product of, I think I grew up in Texas and I think that different sexualities are not presented as an option to you until you learn about them yourself. And I grew up in a time when the internet was very available. And I think that was very useful and educational for me as a young person. And then I came out as so many do to my parents and greater community and when I left for college and could do that and everyone was very receptive, And so it's very nice to have a community here and in the larger, in everywhere I've gone.  Christian: Emily, it's interesting that you mentioned that, too. That could almost be its entire separate topic, right, of the advent of the Internet and how that has sort of impacted not only the way that, you know, our community has disseminated information and representation, but also how it's impacted the way that we use language. Language, getting sort of to the crux of this episode, I'm curious if either of you are willing to share specifically what the word queer means to you personally, and whether you've had any experiences with that term that sort of informed the way that you interact with it, the way that you perceive it, and your feelings around it.  Joe: It took me a long time to decide to respond to Christian about whether to do this, because I have, I feel conflicted. As a lover of words, I think queer is a great word. And I've always felt sad that it was hijacked in the way that it has been. And I mean, I went through a period of time where I wanted to be an etymologist. It's still an interest that I have. So despite the fact that I think it's a fabulous word, it's not a word I really ever use. And I certainly don't connect with it as part of my own identity. And while I love the idea of reclaiming words, anytime I've tried to use it, like the word has come out of my mouth, I have not felt comfortable. I'm not 100% positive about what the sort of official definition is in current usage. But, you know, I've heard it used as a an alternative to the sort of alphabet soup of LGBTQIA+, which is certainly a mouthful, and a lot. So I understand the desire to find a term that sort of captures all of that without literally needing to spell it out. But I've also heard it used as a general term for sort of intersection between sort of sexual and gender identities, which that can be a lot to communicate to someone. And so I can understand the need to want to kind of find an accessible term. I think about the term gay, which is sort of used as a catch-all for many sexual orientation identities, but it's a hijacked word and it's a little artificial. So because gay is an old term and it's one that I personally have come to identify with, I sort of try and remind myself on the use of the word queer that it's a little bit like gay and it's just a word that's been selected to try and capture something. But that's the purpose of words. They exist to capture the meaning of something, and it's never going to be quite exact.  Christian:  Yeah, absolutely. Especially, I think, within this community where there's so much nuance and sort of differences that we can all celebrate about each other. I think precision is definitely something that's difficult. Also hearing sort of from your response there, a little bit of, and correct me if I'm wrong, but it sounds like maybe some change over time in, you know, in one direction or another. Or maybe not necessarily directional change, but just some changes in the way that you've perceived that word over time and the way that you've sort of grappled with it. I'm curious if I'm reading that correctly, sort of what stages of your life, if any, that correspond with the way that you've your changes in that perception of that word have come about.  Joe: So you know obviously it was a common derogatory term in my youth so you know in that in that sense you know there's always going to be an element of trigger quick i mean it's a microsecond but it still exists that i probably you know will never fully lose and i think the evolution over time is to have it began to appear in different places from within the community. And I can't recall the precise time, but I can generally sort of recall when it started to pop up and I had a very negative reaction and I really had to sort of stop and examine that. But I think really my bigger transition was after marriage equality and sort of rights for gays and lesbians were sort of solidified in a variety of areas, legal areas, and societally. And then the sites turned to trans equality. And that just sort of opened up. Sort of before that, I didn't really know any trans people. And so being, knowing, and it's how we all learn and evolve is through our connections with other people. So by becoming connected with people who identified as trans and some of the other parts of the alphabet that I had never known before, I started to understand the challenge between precision, but also just being able to communicate in a general way. And that sort of pushed my evolution in how I see the word.  Christian: And Emily, I think for you, sort of same question, what does the term queer mean to you personally? And how has your understanding of the use of that word, whether it be for yourself personally or broader from the community perspective? What has that been like for you?  Emily: Yeah, I, again, did grow up kind of in this weird in-between time of very much when I learned the word as a young person, I knew it had been used in a derogatory way to large swaths of people to disenfranchise them and harm them. But that was never my personal experience. I had never heard the word used in a derogatory way to me or to any of my friends. There were certainly other words that got used, but queer was never one of them. And I do think I was growing up in a time of reclaiming the word. And I think there are lots of benefits to it. I like the idea that especially for kids, for people in middle school who are learning who they are to not have to. Niche down and label themselves when they're still learning who they are and to have this word that I perceive as an umbrella term for just the larger LGBTQ queer community to just be able to say I'm queer and I maybe don't know exactly what that means for me yet but it means that I'm something different than this societal standard I have found very helpful and I know a lot of my peers have found it very helpful and I think in a larger community sense I know several non-binary people who find it just easier than saying gay or lesbian when that doesn't quite identify with the intersection of their gender identity and their sexual identity. And so I know that the word has been harmful to people and have over time spoken to older people and have realized that and certainly don't use it to describe someone who I know is not comfortable with the word. But in my generation, I found it very helpful. And I think a lot of people my age find a comfort in it, almost a sense of security of just this big blanket term that also includes all of us and allows us to refer to the larger community as a whole, kind of as queer. And I think that's really nice. And I also grew up watching the word get used in mainstream media In 2018, when they revived Queer Eye, I know the original Queer Eye, I think, and I didn't watch it at the time, but the early 2000s one, I think that word was being used in an almost subversive way. And in 2018, when it came out, that was just what the show was called. And that's just what we all called it. And I don't know anyone who batted an eye at that, because it was just a very normal part of our vernacular.  Christian: Yeah, that's a really interesting point with the differences in reaction to pop culture. You know, I didn't even think about Queer Eye, but you're absolutely right. I have a similar, I think, sort of reaction to you when I think about, you know, when we were younger and that show was coming out for the first time versus now. That's a really interesting observation. Joe, I'm curious, do you have any reaction to that as somebody who, you know, maybe was paying more attention to the environment when shows like that were coming around originally?  Joe: Yeah, it's interesting. I'll just sort of move, start more current and work backwards. You know, so when they when they relaunched, you know, Queer Eye, I did not have any reaction at all to the word, I think, just because it was already like a brand in a way. But when it came out originally, I was I was suspicious of the show. It was it was a show where I avoided it, I think, in part because of the title and a lack of like, I just wasn't sure. Like i knew there were plenty of of gay people involved in the show but i just wasn't quite sure what their take was going to be was it going to be kind of a wink wink not not gay people are just so strange and funny and and so it took me a while to watch it and then i'm like okay i kind of see it so i i agree with emily that there was a lot of subversion going on in in the its original iteration that didn't really exist the second time around because it was sort of like no big deal.  Christian: Yeah, I think that goes directly to sort of this development of language piece that we're talking about today. It sounds like, you know, listening to the two of you sort of describe your experiences that you, you know, sort of all of us now as we sit here today are on a similar page with the way that we interact with this sort of language. But it's interesting hearing the perspectives coming from sort of two different and distinct places with different and distinct experiences sort of driving those thoughts. I'm curious to focus on, you know, as a community, as a group of folks who do have different identities and are trying to find a way to move forward that involves language that we all feel comfortable with and that describes us all, what are our thoughts on sort of the broader impacts of language, of the word queer, and how are those intersectional identities and things that we're thinking about factoring in. So sort of with that in mind, I'm curious if either of you have encountered in your experiences any challenges or any pushback from folks within the LGBTQ community to the word queer, either because they don't feel that it represents them or because, you know, any other concerns that you've been faced with?  Emily: I certainly have had interactions with people a little older than me who have a similar reaction to Joe in that the word when they grew up with it wasn't what it means to me now. And so it is a little bit more startling to them to hear on a first brush. And if the conversation continues and it's realized that that's a word that's not just a little new or startling, but is actually gently triggering in the way that it is for many people. It stops being used in that conversation and with that person if they're uncomfortable with it because as much as i like it and as much as i think it is inclusive for the whole community and even if the other person in the conversation thinks that it doesn't change the fact that they have an experience with that specific word that is harmful and and brings back negative associations And I do really like the trend toward inclusive words that don't make people pick niche labels at an early age. I do really like the freedom that broader terms give us. But I do also think there is room for growth or to find different words that across the community, across generations can be a little bit more kind to everyone that are new. We could invent a new word that is all-inclusive that no one has had bad interactions with. I don't know how we would or what that would be, but that's my ideal world for the future of language.  Joe: That is also my vision, would be to come up with a word that doesn't have baggage associated with it. And I also echo Emily, is that I would love a term, which is sort of how queer is tending to be used to be broad and inclusive, as opposed to the alphabet soup. The alphabet soup also, I think forces, I mean, Emily's coming at it from a person from the perspective of someone who perhaps is still trying to figure out who they are as they're, you know, forming their identity. But I'm also thinking about it in terms of like, just how specific does a person need to be? And I appreciate that, you know, some people have pretty complicated identities around orientation and gender that require not just a word, but maybe a sentence, a few sentences, and that gets very personal very quickly. Particularly because they may be things that the person that they're interacting with may not even be that familiar. They might use the word, and the person that they're speaking with may not even understand what that means. And so the fact that a person is often in the position of having to explain their identity to someone, that's just exhausting. And does someone need that much detail? So I think having an umbrella term that people kind of generally understand that you have an identity that is not 90, what is it, 94% of the population, whatever the current stats are.  Christian:Yeah, that's a very interesting piece. And I actually think it ties into something that Emily had just said specifically in that last answer that she gave about, I think you used the word freedom, Emily, when you were talking about words like queer and how they afford folks who use those identifiers a little bit more freedom. I'm curious, especially having just listened to what Joe said, if you could elaborate on that a little bit, sort of what you meant by that when you said freedom and, you know, how it ties into some of the things we're talking about today.  Emily: I definitely agree with Joe in that it gives freedom to not have to disclose parts of yourself that maybe you're not comfortable. Talking to other people about queer is just a very umbrella blanket term that implies that you are not the same as 94% of the population, but you don't have to go into specifically what you feel if you don't want to. I also think it gives freedom for exploration and change. And I think because being queer is not the norm in society, especially for younger people, can be difficult to figure out what that means for you specifically and how you feel and what your identity is. And so to have this umbrella word feels free and safe to me to not have to pick something and then feel nervous later about saying that specific word I chose doesn't fit anymore. And now I need to change what I'm telling people about myself and the stigma that comes with that. And I think the worry for some young people that comes from deviating from the norm already and the deviating from the deviation you decided. And so just saying I'm queer from the jump, it provides, I think, a sense of freedom to learn and grow and a sense of safety in that.  Christian: Right. And that's so important. And I think, you know, we have now nowadays we have studies suggesting, you know, having freedom as somebody who's growing up and discovering your identity, I think, is so important in, you know, long term success and happiness. I think a big piece of this too, and you both touched on this already, is whether it's queer or whether it's other language, so much of our community's success in speaking with each other is about this idea of person-centered language, which is not specific to the LGBTQ community. But when we are talking about it in that way, using the language that people are using to describe themselves and sort of being willing to go on that journey with folks to the extent that they are, you know, finding out new things about their identities, using new words, sort of being willing to take that linguistic journey with them, I suppose. Joe, earlier, you know, speaking of linguistic journeys, you mentioned that you had sort of a strong negative reaction to the word queer the first, you know, first time, first couple of times that you heard it. And you said that you had to examine that reaction. I'm curious if you'd be willing to to share for us sort of what that process was like for you and what was your impetus to maybe take a step back from the shock or the negative reaction that had you feeling like it was worth examining?  Joe:  Well, I think any time I have a strong negative reaction to something, I just feel like it's worth examining what's going on. Sometimes it's very obvious, but other times I'm like, hmm, I'm really surprised that I feel so strongly this way. And I think it's partly because I think I've always thought it's a cool word. I mean, just the sound and in a way that like faggot, for instance, not a cool word. It just doesn't sound cool. it doesn't have like there's it doesn't have any uniqueness to it it's very harsh and so you know as i dug deeper into it i realized this that it and i love the idea of reclaiming words but there are a couple things that that sort of went on for me one was it was a little bit shocking because it was a word that you're not supposed to say and then people are saying it and there are other or reclaimed words in other communities. I know African Americans who have a very strong negative reaction to the use of the N-word by anyone, whether they are part of the African American community or not. And then I think there's also this other piece that is a challenge in reclaimed words, which is why it would be lovely for, and I think we will eventually evolve to a term that doesn't have baggage, but the challenge is who can use the word, right? It's It's been reclaimed, but who, who's allowed to use it and when, and, um, I think anytime you have a word that people are unsure, they're unsure about what it means exactly and who is allowed to use it, that creates a barrier. It's no longer inclusive. It's really quite exclusive. And that's a danger that I, you know, that I see. And I have to kind of think about like, if I start using it, how do I feel if other people, say an ally or just a random person on the street, uses it? Yeah, I'm still not 100% sure about how I feel.  Christian: It's definitely a key topic to sort of conceptualize for sure. It's interesting, right, when you think about this discussion too in terms of other communities outside of the LGBTQ+ community, right? And so I'm thinking about the way that other marginalized groups have their own language issues that come up. I'm curious if either of you have ever found yourself in an experience where you were either more comfortable or more informed about using language, that is specific to a marginalized group because of your experiences with words like queer and sort of the dynamic nature of LGBTQ+ language. I think that Joe makes a really good point about who can use words and when and how that is concerning in a lot of ways. And I think that having a lot of friends in different marginalized communities, I don't necessarily use words that maybe they have reclaimed or that they would use for themselves. Because if I'm not part of those communities, it doesn't feel like my place to use them. But to me, the queer community is broader. And again, I think as someone who hasn't experienced that word being used in a derogatory way and who has only ever encountered the word in a generally pretty positive way, it makes me feel more comfortable. If that's how I describe myself openly and my friends from other marginalized communities use that word for me, I don't mind it as much, especially, I think, because I know that they have a history with words that impact them. And so I'm more likely to understand that their intent with that word is positive and to support me and the way that I use that word. And they don't ever mean it in a derogatory way because they understand the power that words have. And I think that that kind of intersectionality is important. And I also think that the queer umbrella is so broad and encompasses so many other marginalized communities that there is a lot of interplay between different communities and the words that we use.  Joe: I would say from my perspective, I'm very sensitive to words. So I try and really pay attention to the words that people are using for themselves and about their community. I just pay a lot of attention. I will occasionally do the bystander thing, not just for our people within the queer community who have an identity I don't identify with, but are perhaps a topic of conversation. But also for other communities and to just highlight, you know, in a low key way, why a particular language that's being used might be problematic. And I'm not talking about slurs. I'm thinking about having been in a conversation about for the Latin community and the use of Latinx versus Latino / Latina, and just being thoughtful about the words that are used. And the fact that communities are not monolithic, I mean, we, by definition, are very broad, but within other marginalized communities, there's a broad range of identities that people hold, and language reflects that. And one of the problems with language is it's kind of a general label that works well a lot of the time, but it's going to chafe a number of people who are part of that community and people who the label is applied to. And I use that labeling not in a negative way, but just it's a term that's used to refer to them.  Christian: Yeah, and I think that's critical, right? That point about, you know, communities not being a monolith. So there's always going to be a certain amount of struggle. But I think what I'm hearing from both of you is that, you know, sort of grappling with language in the way that you have as a member of the LGBTQ community has given you sort of insights and an ability to think critically about language in other settings and as used by other groups as well. In a way that is really empathy forward, which I think is really awesome and something that is important for us as we move forward in this D&I space. I think that puts us at right about time. Emily and Joe, it has been an absolute pleasure talking with you today. Thank you so much for sharing your insights. Thank you everybody so much for listening to this month's episode of Inclusivity Included. We at Reed Smith are always happy to have you as listeners. I hope you all had a good time today and learned a lot. Thank you.  Outro: Inclusivity Included is a Reed Smith production. Our producers are Ali McCardell and Shannon Ryan. You can find our podcast on Spotify, Apple Podcasts, Google Podcasts, reedsmith.com and our social media accounts.  Disclaimer: This podcast is provided for educational purposes. It does not constitute legal advice and is not intended to establish an attorney-client relationship, nor is it intended to suggest or establish standards of care applicable to particular lawyers in any given situation. Prior results do not  guarantee a similar outcome. Any views, opinions, or comments made by any external guest speaker are not to be attributed to Reed Smith LLP or its individual lawyers.  All rights reserved. Transcript is auto-generated.

Oracle University Podcast
Forgotten, But Not Gone: How Model-Based Development Is Still Alive and Well Today

Oracle University Podcast

Play Episode Listen Later Apr 9, 2024 20:32


Computer Aided Software Engineering (CASE) tools, which helped make the analysis, design, and implementation phases of software development better, faster, and cheaper, fell out of favor in the mid-'90s. Yet much of what they have to offer remains and is in active use within different Oracle tools.   Listen to Lois Houston and Nikita Abraham interview Senior Principal OCI Instructor Joe Greenwald about the origins of CASE tools and model-based development, as well as how they evolved into their current forms.   Develop Fusion Applications Using Visual Builder Studio: https://mylearn.oracle.com/ou/course/develop-fusion-applications-using-visual-builder-studio/122614/   Build Visual Applications Using Visual Builder Studio: https://mylearn.oracle.com/ou/course/build-visual-applications-using-oracle-visual-builder-studio/110035/   Oracle University Learning Community: https://education.oracle.com/ou-community   LinkedIn: https://www.linkedin.com/showcase/oracle-university/   X (formerly Twitter): https://twitter.com/Oracle_Edu   Special thanks to Arijit Ghosh, David Wright, and the OU Studio Team for helping us create this episode.   ---------------------------------------------------------   Episode Transcript:   00:00 Welcome to the Oracle University Podcast, the first stop on your cloud journey. During this series of informative podcasts, we'll bring you foundational training on the most popular Oracle technologies. Let's get started. 00:26   Nikita: Hello and welcome to the Oracle University Podcast! I'm Nikita Abraham, Principal Technical Editor with Oracle University, and joining me is Lois Houston, Director of Innovation Programs.   Lois: Hi there! In our last episode, we looked at Oracle's Redwood design system and how it helps create world-class apps and user experiences. Today, Joe Greenwald, our Senior Principal OCI Instructor, is back on our podcast. We're going to focus on where model-based development tools came from: their start as CASE tools, how they morphed into today's model-based development tools, and how these tools are currently used in Oracle software development to make developers' lives better.   01:08 Nikita: That's right. It's funny how things that fell out of favor years ago come back and are used to support our app development efforts today. Hi Joe!   Joe: Haha! Hi Niki. Hi Lois.
 01:18 Lois: Joe, how did you get started with CASE tools?    Joe: I was first introduced to computer-aided software engineering tools, called CASE tools, in the late 1980s when I began working with them at Arthur Young consulting and then Knowledgeware corporation in Atlanta, helping customers improve and even automate their software development efforts using structured analysis and design techniques, which were popular and in high use at that time. But it was a pain to have to draw diagrams by hand, redraw them as specifications changed, and then try to maintain them to represent the changes in understanding what we were getting from our analysis and design phase work. CASE tools were used to help us draw the pictures as well as enforce rules and provide a repository so we could share what we were creating with other developers. I was immediately attracted to the idea of using diagrams and graphical images to represent requirements for computer systems.  02:08 Lois: Yeah, you're like me. You're a visual person. Joe: Yes, exactly. So, the idea that I could draw a picture and a computer could turn that into executable code was fascinating to me. Pictures helped us understand what the analysts told us the users wanted, and helped us communicate amongst the teams, and they also helped us validate our understanding with our users. This was a critical aspect because there was a fundamental cognitive disconnect between what the users told the analysts they needed, what the analysts told us the users needed, and what we understood was needed, and what the user actually wanted. There's a famous cartoon, you can probably find this on the web, that shows what the users wanted, what was delivered, and then all the iterations that the different teams go through trying to represent the simple original request.   I started using entity relationship diagrams, data flow diagrams, and structure charts to support the structured analysis, design, and information engineering methods that we were using at the time for our clients. Used correctly, these were powerful tools that resulted in higher quality systems because it forced us to answer questions earlier on and not wait until later in the project life cycle, when it's more expensive and difficult to make changes. 03:16 Nikita: So, the idea was to try to get it wrong sooner. Joe: That's right, Niki. We wanted to get our analysis and designs in front of the customer as soon as possible to find out what was wrong with our models and then change the code as early in the life cycle as possible where it was both easier and, more importantly, cheaper to make changes before solidifying it in code.   Of course, the key words here are “used correctly,” right? I saw the tools misused many times by those who weren't trained properly or, more typically, by those whose software development methodology, if there even was one, didn't use the tools properly—and of course the tools took the blame. CASE tools at the time held a lot of promise, but one could say vendors were overpromising and under delivering, although I did have a number of clients who were successful with them and could get useful support for their software development life cycle from the use of the tools. Since then, I've been very interested in using tools to make it easier for us to build software.   04:09 Nikita: So, let me ask you Joe, what is your definition of a CASE tool?
 Joe: I'm glad you asked, Niki, because I think many people have many different definitions. I'm precise about it, and maybe even a bit pedantic with the definition. The definition I use for a CASE tool comprises four things. One, it uses graphics, graphical symbols, and diagrams to represent requirements and business rules for the application. Two, there is a repository, either private, or shared, or both, of models, definitions, objects, requirements, rules, diagrams, and other assets that can be shared, reused, and almost more importantly, tracked. Three, there's a rule-base that prevents you from drawing things that can't be implemented. For example, Visio was widely regarded as a CASE tool, but it really wasn't because it had no rules behind it. You could wire together anything you wanted, but that didn't mean it could be built.  Fourth, it generates useful code, and it should do two-way engineering, where code, typically code changed outside the model, can be reverse engineered back into the model and apply updates to the model, and to keep the model and the source code in synchronization.   05:13 Joe: I came up with a good slogan for CASE tools years ago: a good CASE tool should automate the tedious, manual portions of software development. I'd add that one also needs to be smarter than the tools they're using. Which reminds me, interestingly enough, of clients who would pick up CASE tools, thinking that they would make their software development life cycle shorter. But if they weren't already building models for analysis or design, then automating the building of things that they weren't building already was not going to save them time and effort.  And some people adopted CASE tools because they were told to or worse, forced to, or they read an article on an airplane, or had a Eureka moment, and they would try to get their entire software development staff to use this new tool, overnight literally, in some cases. Absolutely sheer madness!  Tools like this need to be brought into the enterprise in a slow, measured fashion with a pilot project and build upon small successes until people start demanding to use the tools in their own projects once they see the value. And each group, each team would use the CASE tool differently and to a different degree. One size most definitely does not fit all and identifying what the teams' needs are and how the tool can automate and support those needs is an important aspect of adopting a CASE tool. It's funny, almost everyone would agree there's value in creating models and, eventually, generating code from them to get better systems and it should be faster and cheaper, etc. But CASE tools never really penetrated the market more than maybe about 18 to 25%, tops.   06:39 Lois: Huh, why? Why do you think CASE tools were not widely accepted and used?   Joe: Well, I don't think it was an issue with the tools so much as it was with a company's software development life cycle, and the culture and politics in the company. And I imagine you're shocked to hear that.  Ideally, switching to or adopting automated tools like CASE tools would reduce development time and costs, and improve quality. So it should increase reusability too. But increasing the reusability of code elements and software assets is difficult and requires discipline, commitment, and investment. Also, there can be a significant amount of training required to teach developers, analysts, project managers, and senior managers how to deal with these different forms of life cycles and artifacts: how they get created, how to manage them, and how to use them. When you have project managers or senior managers asking where's the code and you try telling them, “Well, it's gonna take a little while. We're building models and will press the button to generate the code.” That's tough. And that's also another myth. It was never a matter of build all the models, press the button, generate all the code, and be done. It's a very iterative process. 07:40 Joe: I've also found that developers find it very psychologically reinforcing to type code into the keyboard, see it appear on the screen, see it execute, and models were not quite as satisfying in the same way. There was kind of a disconnect. And are still not today. Coders like to code.   So using CASE tools and the discipline that went along with them often created issues for customers because it could shine a bright light on the, well let's say, less positive aspects of their existing software development process. And what was seen often wasn't pretty. I had several clients who stopped using CASE tools because it made their poor development process highly visible and harder to ignore. It was actually easier for them to abandon the CASE tools and the benefits of CASE tools than to change their internal processes and culture. CASE tools require discipline, planning, preparation, and thoughtful approaches, and some places just couldn't or wouldn't do that. Now, for those who did have discipline and good software development practices, CASE tools helped them quite a bit—by creating documentation and automating the niggly little manual tasks they were spending a lot of time on.   08:43 Nikita: You've mentioned in the past that CASE tools are still around today, but we don't call them that. Have they morphed into something else? And if so, what?   Joe: Ah, so the term Computer Aided Software Engineering morphed into something more acceptable in the ‘90s as vendors overpromised and under-delivered, because many people still saw value and do today see value in creating models to help with understanding, and even automating some aspects of software code development.  The term model-based development arose with the idea that you could build small models of what you want to develop and then use that to guide and help with manual code development. And frankly just not using the word CASE was a benefit. “Oh we're not doing CASE tools, but we'll still build pictures and do stuff.” So, it could be automated and generate useful code as well as documentation. And this was both easy to use and easier to manage, and I think the industry and the tools themselves were maturing. 09:35 Joe: So, model-based development took off and the idea of building a model to represent your understanding of the system became popular. And it was funny because people were saying that these were not CASE tools, this was something different, oh for sure, when of course it was pretty much the same thing: rule-based graphical modeling with a repository that created and read code—just named differently. And as I go through this, it reminds me of an interesting anecdote that's given about US President Abraham Lincoln. He once asked someone, “If you call a dog's tail a leg, how many legs does a dog have?” Now, while you're thinking about that, I'll go ahead and give you the correct answer. It's four. You can call a dog's tail anything you want, but it still has four legs. You can call your tools whatever you want, but you still have the idea of building graphical representations of requirements based on rules, and generating code and engineering in both directions. 10:29 Did you know that Oracle University offers free courses on Oracle Cloud Infrastructure? You'll find training on everything from cloud computing, database, and security to artificial intelligence and machine learning, all free to subscribers. So, what are you waiting for? Pick a topic, leverage the Oracle University Learning Community to ask questions, and then sit for your certification. Visit mylearn.oracle.com to get started. 10:58 Nikita: Welcome back! Joe, how did you come to Oracle and its CASE tools?   Joe: I joined Oracle in 1992 teaching the Oracle CASE tool Designer. It was focused on structured analysis and design, and could generate database Data Definition Language (DDL) for creating databases. And it was quite good at it and could reverse engineer databases as well. And it could generate Oracle Forms and Reports – character mode at first, and then GUI. But it was in the early days of the tool and there was definitely room for improvement, or as we would say opportunities for enhancement, and it could be hard to learn and work with. It didn't do round-trip engineering of reading Oracle Forms code and updating the Designer models, though some of that came later. So now you had an issue where you could generate an application as a starting point, but then you had to go in and modify the code, and the code would get updated, but the models wouldn't get updated and so little by little they'd go out of sync with the code, and it just became a big mess. But a lot of people saw that you could develop parts of the application and data definition in models and save time, and that led to what we call model-based development, where we use models for some aspects but not all. We use models where it makes sense and hand code where we need to code.    12:04 Lois: Right, so the two can coexist. Joe, how have model-based development tools been used at Oracle? Are they still in use?   Joe: Absolutely! And I'll start with my favorite CASE tool at Oracle, uhm excuse me, model-based development tool. Oracle SOA Suite is my idea of a what a model-based development tool should be. We create graphical diagrams to represent the flow of messages and message processing in web services—both SOAP and REST interfaces—with logic handled by other diagrammers and models. We have models for logic, human interaction, and rules processing. All this is captured in XML metadata and displayed as nice, colored diagrams that are converted to source code once deployed to the server. The reason I like it so much is Oracle SOA Suite addressed a fundamental problem and weakness in using modeling tools that generated code. It doesn't let the developer touch the generated code. I worked with many different CASE tools over the years, and they all suffered from a fundamental flaw. Analysts and developers would create the models, generate the code, eventually put it into production, and then, if there was a bug in the code, the developer would fix the code rather than change the model. For example, if a bug was found at 10:30 at night, people would get dragged out of bed to come down and fix things. What they should have done is update the model and then generate the new code. But late at night or in a crunch, who's going to do that, right? They would fix the code and say they'd go back and update the model tomorrow. But as we know, tomorrow never comes, and so little by little, the model goes out of synchronization with the actual source code, and eventually people just stopped doing models. 13:33 Joe: And this just happened more and more until the use of CASE tools started diminishing—why would I build a model and have to maintain it to just maintain the code? Why do two separate things? Time is too valuable. So, the problem of creating models and generating code, and then maintaining the code and not the model was a problem in the industry. And I think it certainly hurt the adoption and progress of CASE tool adoption. This is one of the reasons why Oracle SOA Suite is my favorite CASE tool…because you never have access to the actual generated code. You are forced to change the model to get the new code deployed. Period. Problem solved. Well, SOA Suite does allow post- deployment changes, of course, and that can introduce consistency issues and while they're easier to handle, we still have them! So even there, there's an issue.   14:15 Nikita: How and where are modeling tools used in current Oracle software development applications?   Joe: While the use of CASE tools and even the name CASE fell out of favor in the early to mid-90s, the idea of using graphical diagrams to capture requirements and generate useful code does live on through to today. If you know what to look for, you can see elements of model-based design throughout all the Oracle tools. Oracle tools successfully use diagrams, rules, and code generation, but only in certain areas where it clearly makes sense and in well-defined boundaries. Let's start with the software development environment that I work with most often, which is Visual Builder Studio. Its design environment uses a modeling tool to model relationships between Business Objects, which is customer data that can have parent-child relationships, and represent and store customer data in tables. It uses a form of entity relationship diagram with cardinality – meaning how many of these are related to how many of those – to model parent-child relationships, including processing requirements like deleting children if a parent is deleted.  The Business Object diagrammer displays your business objects and their relationships, and even lets you create new relationships, modify the business objects, and even create new business objects. You can do all your work in the diagram and the correct code is generated. And you can display the diagram for the code that you created by hand. And the two stay in sync. There's also a diagramming tool to design the page and page flow navigation between the pages in the web application itself. You can work in code or you can work in the diagram (either one or both), and both are updated at the same time. Visual Builder Studio uses a lot of two-way design and engineering.   15:48 Joe: Visual Builder Studio Page Designer allows you to work in code if you want to write HTML, JavaScript, and JSON code, or work in Design mode and drag and drop components onto the page designer canvas, set properties, and both update each other. It's very well done. Very well integrated.   Now, oddly enough, even though I am a model-based developer, I find I do most of my work in Visual Builder Studio Designer in the text-based interface because it's so easy to use. I use the diagrammers to document and share my work, and communicate with other team members and customers. While I think it's not being used quite so much anymore, Oracle's JDeveloper and application development framework, ADF, includes built-in tools for doing Unified Modeling Language (UML) modeling. You can create object-oriented class models, generate Java code, reverse engineer Java code, and it updates the model for you. You can also generate the code for mapping Java objects to relational tables. And this has been the heart of data access for ADF Business Components (ADFBC), which is the data layer of Oracle Fusion Apps, for 20 years, although that is being replaced these days. 16:51 Lois: So, these are application development tools for crafting web applications. But do we have any tools like this for the database? Joe: Yes, Lois. We do. Another Oracle tool that uses model-based development functionality is the OCI automated database actions. Here you can define tables, columns, and keys. You can also REST-enable your tables, procedures, and functions.   Oracle SQL Developer for the web is included with OCI or Oracle SQL Developer on the desktop has a robust and comprehensive data modeler that allows you to do full blown entity relationship diagramming and generate code that can be implemented through execution in the database. Now that's actually the desktop version that has the full-blown diagrammer but you also have some of that in the OCI database actions as well. But the desktop version goes further than that. You can reverse engineer the existing database, generate models from it, modify the models, and then generate the delta, the difference code, to allow you to update an existing database structure based on the change in the model. It is very powerful and highly sophisticated, and I do strongly recommend looking at it.  And Oracle's APEX (Application Express) has SQL workshop, where you can see a graphic representation of the tables and the relationships between the tables, and even build SQL statements graphically.    18:05 Nikita: It's time for us to wrap up today but I think it's safe to say that model-based development tools are still with us. Any final thoughts, Joe?   Joe: Well, actually today I wonder why more people don't model. I've been on multiple projects and worked with multiple clients where there's no graphical modeling whatsoever—not even a diagram of the database design and the relationships between tables and foreign keys. And I just don't understand that.   One thing I don't see very much in current CASE or model-based tools is enabling impact analysis. This is another thing I don't see a lot. I've learned, in many years of working with these tools, to appreciate performing impact analysis. Meaning if I make a change to this thing here, how many other places are going to be impacted? How many other changes am I going to have to make? Something like Visual Builder Studio Designer is very good at this. If you make a change to the spelling of a variable let's say in one place, it'll change everywhere that it is referenced and used. And you can do a Find in files to find every place something is used, but it's still not quite going the full hundred percent and allowing me to do a cross-application impact analysis. If I want to change this one thing here, how many other things will be impacted across applications? But it's a start. And I will say in talking to the Visual Builder Studio Architect, he understands the value of impact analysis. We'll see where the tool goes in the future. And this is not a commitment of future direction, of course. It would appear the next step is using AI to listen to our needs and generate the necessary code from it, maybe potentially bypassing models entirely or creating models as a by-product to aid in communication and understanding. We know a picture's worth a 1000 words and it's as true today as it's ever been, and I don't see that going away anytime soon.   19:41 Lois: Thanks a lot, Joe! It's been so nice to hear about your journey and learn about the history of CASE tools, where they started and where they are now.  Joe: Thanks Lois and Niki. Nikita: Join us next week for our final episode of this series on building the next generation of Oracle Cloud Apps with Visual Builder Studio. Until then, this is Nikita Abraham… Lois: And Lois Houston, signing off! 20:03 That's all for this episode of the Oracle University Podcast. If you enjoyed listening, please click Subscribe to get all the latest episodes. We'd also love it if you would take a moment to rate and review us on your podcast app. See you again on the next episode of the Oracle University Podcast.

Oracle University Podcast
Introduction to Visual Builder Studio, Visual Builder Cloud Service, Stand-Alone, and JET

Oracle University Podcast

Play Episode Listen Later Mar 19, 2024 24:38


The next generation of front-end user interfaces for Oracle Fusion Applications is being built using Visual Builder Studio and Oracle JavaScript Extension Toolkit. However, many of the terms associated with these tools can be confusing. In this episode, Lois Houston and Nikita Abraham are joined by Senior Principal OCI Instructor Joe Greenwald. Together, they take you through the different terminologies, how they relate to each other, and how they can be used to deliver the new Oracle Fusion Applications as well as stand-alone, bespoke visual web applications. Develop Fusion Applications Using Visual Builder Studio: https://mylearn.oracle.com/ou/course/develop-fusion-applications-using-visual-builder-studio/122614/ Build Visual Applications Using Visual Builder Studio: https://mylearn.oracle.com/ou/course/build-visual-applications-using-oracle-visual-builder-studio/110035/ Oracle University Learning Community: https://education.oracle.com/ou-community LinkedIn: https://www.linkedin.com/showcase/oracle-university/ X (formerly Twitter): https://twitter.com/Oracle_Edu Special thanks to Arijit Ghosh, David Wright, and the OU Studio Team for helping us create this episode. --------------------------------------------------------- Episode Transcript: 00:00 Welcome to the Oracle University Podcast, the first stop on your cloud journey. During this  series of informative podcasts, we'll bring you foundational training on the most popular  Oracle technologies. Let's get started. 00:26 Lois: Hello and welcome to the Oracle University Podcast. I'm Lois Houston, Director of Innovation Programs with Oracle University, and with me is Nikita Abraham, Principal Technical Editor. Nikita: Hi everyone! Today, we're starting a new season on building the next generation of Oracle Cloud Apps with Visual Builder Studio. 00:45 Lois: And I'm so excited that we have someone really special to take us through the next few episodes. Joe Greenwald is joining us. Joe is a Senior Principal OCI Instructor with Oracle University. He joined Oracle in 1992 with an extensive background in CASE tools. Since then, he has used and taught all of Oracle's software development tools, including Oracle Forms, APEX, JDeveloper ADF, as well as all the Fusion Middleware courses. Currently, Joe is responsible for the Visual Builder Studio and Redwood development courses, including extending Fusion Applications with Visual Builder. 01:22 Nikita: In today's episode, we're going to ask Joe about Visual Builder Studio and Oracle JavaScript Extension Toolkit, also known as JET. Together, they form the basis of the technology for the next generation of front-end user interfaces for Oracle Fusion Applications, as well as many other Oracle applications, including most Oracle Cloud Infrastructure (OCI) interfaces.  Lois: We'll look at the different terminologies and technologies, how they relate to each other, and how they deliver the new Oracle Fusion applications and stand-alone, bespoke visual web applications. Hi Joe! Thanks for being with us today. 01:57 Joe: Hi Lois! Hi Niki! I'm glad to be here. Nikita: Joe, I'm somewhat thrown by the terminology around Visual Builder, Visual Studio, and JET. Can you help streamline that for us?  Lois: Yeah, things that are named the same sometimes refer to different things, and sometimes things with a different name refer to the same thing.  02:15 Joe: Yeah, I know where you're coming from. So, let's start with Visual Builder Studio. It's abbreviated as VBS and can go by a number of different names. Some of the most well-known ones are Visual Builder Studio, VBS, Visual Builder, Visual Builder Stand-Alone, and Visual Builder Cloud Service. Clearly, this can be very confusing. For the purposes of these episodes as well as the training courses I create, I use certain definitions.  02:39 Lois: Can you take us through those? Joe: Absolutely, Lois. Visual Builder Studio refers to a product that comes free with an OCI account and allows you to manage your project-related assets. This includes the project itself, which is a container for all of its assets. You can assign teams to your projects, as well as secure the project and declare roles for the different team members. You manage GIT repositories with full graphical and command-line GIT support, define package, build, and deploy jobs, and create and run continuous integration/continuous deployment graphical and code-managed pipelines for your applications. These can be visual applications, created using the Visual Builder Integrated Development Environment, the IDE, or non-visual apps, such as Java microservices, docker builds, NPM apps, and things like that. And you can define environments, which determine where your build jobs can be deployed. You can also define issues, which allow you to identify, track, and manage things like bugs, defects, and enhancements. And these can be tracked in code review merge requests and build jobs, and be mapped to agile sprints and scrum boards. There's also support for wikis for team collaboration, code snippets, and the management of the repository and the project itself. So, VBS supports code reviews before code is merged into GIT branches for package, build, and deploy jobs using merge requests.  03:57 Nikita: OK, what exactly do you mean by that? Joe: Great. So, for example, you could have developers working in one GIT branch and when they're done, they would push their private code changes into that remote branch. Then, they'd submit a merge request and their changes would be reviewed.  Once the changes are approved, their code branch is merged into the main branch and then automatically runs a CI/CD package (continuous integration/continuous deployment) package, build, and deploy job on the code. Also, the CI/CD package, build, and deploy jobs can run against any branches, not just the main branch. So Visual Builder Studio is intended for managing the project and all of its assets. 04:37 Lois: So Joe, what are the different tools used in developing web applications? Joe: Well, Visual Builder, Visual Builder Studio Designer, Visual Builder Designer, Visual Builder Design-Time, Visual Builder Cloud Service, Visual Builder Stand-Alone all kind of get lumped together. You can kinda see why. What I'm referring to here are the tools that we use to build a visual web application composed of HTML5, CSS3, JavaScript, and JSON (JavaScript Object Notation) for metadata. I call this Visual Builder Designer. This is an Integrated Development Environment, it's the “IDE” which runs in your browser. You use a combination of drag and drop, setting properties, and writing and modifying custom and generated code to develop your web applications. You work within a workspace, which is your own private copy of a remote Git branch. When you're ready to start development work, you open an existing workspace or create a new one based on a clone of the remote branch you want to work on. Typically, a new branch would be created for the development work or you would join an existing branch. 05:35 Nikita: What's a workspace, Joe? Is it like my personal laptop and drive?  Joe: A workspace is your own private code area that stores any changes you make on the Oracle servers, so your code changes are never lost—even when working in a browser-based, network-based tool. A good analogy is, say I was working at home on my own machine. And I would make a copy of a remote GIT branch and then copy that code down to my local machine, make my code changes, do my testing, etc. and then commit my work—create a logical save point periodically—and then when I'm ready, I'd push that code up into the remote branch so it can be reviewed and merged with the main branch. My local machine is my workspace. However, since this code is hosted up by Oracle on our servers, and the code and the IDE are all running in your browser, the workspace is a simulation of a local work area on your own computer. So, the workspace is a hosted allocation of resources for you that's private. Other people can't see what's going on in your workspace. Your workspace has a clone of the remote branch that you're working with and the changes you make are isolated to your cloned code in your workspace. 06:38 Lois: Ok… the code is actually hosted on the server, so each time you make a change in the browser, the change is written back to the server? Is it possible that you might lose your edits if there's a networking interruption? Joe: I want to emphasize that while I started out not personally being a fan of web-based integrated development environments, I have been using these tools for over three years and in all that time, while I have lost a connection at times—networks are still subject to interruptions—I've never lost any changes that I've made. Ever. 07:08 Nikita: Is there a way to save where you are in your work so that you could go back to it later if you need to? Joe: Yes, Niki, you're asking about commits and savepoints, like in a Git repository or a Git branch. When you reach a logical stopping or development point in your work, you would create a commit or a savepoint. And when you're ready, you would push that committed code in your workspace up to the remote branch where it can be reviewed and then eventually merged, usually with the main Git branch, and then continuous integration/continuous package and deployment build jobs are run. Now, I'm only giving you a high-level overview, but we cover all this and much more in detail with hands-on practices in our Visual Builder developer courses. Right now, I'm just trying to give you a sense of how these different tools are used. 07:49 Lois: Yes, that makes sense, Joe. It's a lot to cover in a short amount of time. Now, we've discussed the Visual Builder Designer IDE and workspace. But can you tell us more about Visual Builder Cloud Service and stand-alone environments? What are they used for? What features do they provide? Are they the same or different things? Joe: Visual Builder Cloud Service or Visual Builder Stand-Alone, as it's sometimes called, is a service that Oracle hosts on its servers. It provides hosting for the deployed web application source code as well as database tables for business objects that we build and maintain to store your customer data. This data can come from XLS or CSV files, or even your own Oracle database customer table data.  A custom REST proxy makes calls to external third-party REST services on your behalf and supports several popular authentication mechanisms. There is also integration with the Identity Cloud Service (IDCS) to manage users and their access to your web apps. 08:47 Joe: Visual Builder Cloud Service is a for-fee product. You pay licensing fees for how much you use because it's a hosted service. Visual Builder Studio, the project asset management aspect I discussed earlier, is free with a standard OCI license. Now, keep in mind these are separate from something like Visual Builder Design Time and the service that's running in Fusion application environments. What I'm talking about now is creating standalone, bespoke, custom visual applications. These are applications that are built using industry-standard HTML5, CSS3, JavaScript, and JSON for metadata and are hosted on the Oracle servers. 09:27 Are you looking for practical use cases to help you plan and apply configurations that solve real-world challenges?  With the new Applied Learning courses for Cloud Applications, you'll be able to practically apply the concepts learned in our implementation courses and work through case studies featuring key decisions and configurations encountered during a typical Oracle Cloud Applications implementation. Applied learning scenarios are currently available for General Ledger, Payables, Receivables, Accounting Hub, Global Human Resources, Talent Management, Inventory, and Procurement, with many more to come!  Visit mylearn.oracle.com to get started. 10:09 Nikita: Welcome back! Joe, you said Visual Builder Cloud Service or Stand-Alone is a for-fee service. Is there a way I can learn about using Visual Builder Designer to build bespoke visual applications without a fee? Joe: Yes. Actually, we've added an option where you can run the Visual Builder Designer and learn how to create web apps without using the app hosting or the business object database that stores your customer data or the REST proxy for authentication or the Identity Cloud Service. So you don't get those features, but you can still learn the fundamentals of developing with Visual Builder Designer. You can call third-party APIs, you can download the source, and run it locally, for example, in a Tomcat server. This is a great and free way to learn how to develop with the Visual Builder Designer. 10:52 Lois: Joe, I want to know more about the kinds of apps you can build in VB Designer and the capabilities that VB Cloud Service provides. Joe: Visual Builder Designer allows you to build custom, bespoke web applications made of interactive webpages; flows of pages for navigation; events that respond when things happen in the app, for example, GUI events like a button is clicked or values are entered into a text field; variables to store state and the ability to make REST calls, all from your browser. These applications have full access to the Oracle Fusion Applications APIs, given that you have the right security permissions and credentials of course. They can access your customer business data as business objects in our internally hosted database tables or your own customer database tables. They can access third-party APIs, and all these different data sources can appear in the same visual application, on the same page, at the same time. They use the identity cloud service to identify which users can log in and authenticate against the application. And they all use the new Redwood graphical user interface components and page templates, so they have the same look and feel of all Oracle applications. 11:59 Nikita: But what if you're building or extending Oracle Fusion Applications? Don't things change a little bit? Joe: Good point, Niki. Yes. While you still work within Visual Builder Studio, that doesn't change, VBS maintains your project and all your project-related assets, that is still the same. However, in this case, there is no separate hosted Visual Builder Cloud Service or Stand-Alone instance. In this case, Visual Builder is hosted inside of Fusion apps itself as part of the installation. I won't go into the details of how the architecture works, but the Visual Builder instance that you're running your code against is part of Fusion applications and is included in the architecture as well as the billing. All your code changes are maintained and stored within a single container called an extension. And this extension is a Git repository that is created for you, or you can create it yourself, depending on how you choose to work within Visual Builder Studio. You create an extension to hold the source code changes that provide a customization or configuration. This means making a change to an existing page or a set of pages or even adding new pages and flows to your Oracle Fusion Applications. You use Visual Builder Studio and Visual Builder Designer in a similar way as to how you would use them for bespoke stand-alone visual applications.  13:10 Lois: I'm trying to envision how this workflow is used. How is it different from bespoke VB app development? Or is it different at all? Joe: So, recall that the Visual Builder Designer is effectively the Integrated Development Environment, the IDE, where you make your code changes by working with both the raw HTML5, CSS3, and JavaScript code, if need be, or the Page Designer for drag and drop, and setting properties and then Live mode to test your work. You use a version of VB Designer to view and modify your customizations, and the code is stored in a Git repository called an extension. So, in that sense, the work of developing pages and flows and such is the same.  You still start by creating or, more typically, joining a project and then either create a new extension from scratch or base it on an existing application, or go directly to the page that you want to edit and, on that page, select from your profile menu to edit in Visual Builder Studio. Now, this is a different lifecycle path from bespoke visual applications. With them, you're not extending an app or modifying individual pages in the same way. 14:11 Joe: You get a choice of which project you want to add your extension to when you're working with Fusion apps and potentially which repository to store your customizations, unless one already exists and then it's assigned automatically to hold your code changes. So you make your changes and edits to the portions of the application that have been opened for extensibility by the development team. This is another difference. Once you make your code changes, the workflow is pretty much the same as for a bespoke visual application: do your development work, commit your changes, push your changes to the remote branch. And then typically, your code is reviewed and if the code passes and is approved, it's merged with the main branch. Then, the package and deploy jobs run to deploy the main code to the production environment or whatever environment you're targeting. And once the package and deploy jobs complete, the code base is updated and users who log in see the changes that you've made. 15:00 Nikita: You mentioned creating apps that combine data from Fusion cloud, applications, customer data, and third-party APIs into one page. Why is it necessary? Why can't you just do all that in one Fusion Applications extension? Joe: When you create extensions, you are working within the Oracle Fusion Applications ecosystem, that's what they actually call it, which includes a defined a set of users who have been predefined and are, therefore, known to Fusion Applications. So, if you're a user and you're not part of that Fusion Apps ecosystem, you can't access the pages. Period. That's how Fusion Apps works to maintain its security and integrity. Secondly, you're working pretty much solely with the Fusion Applications APIs data sources coming directly from Fusion Applications, which are also available to you when you're creating bespoke visual apps. When you're working with Fusion Applications in Visual Builder, you don't have access to these business objects that give you access to your own customer database data through Visual Builder-generated REST APIs. Business objects are available only to bespoke visual applications in the hosted VB Cloud Service instance.  So, your data sources are restricted to the Oracle Fusion Applications APIs and some third-party APIs that work within a narrow set of authentication mechanisms currently, although there are plans to expand this in the future. A mashup app that allows you now to access all these data sources while creating apps that leverage the Redwood Component System, so they look and work like Fusion Apps. They're a highly popular option for our partners and customers. 16:25 Lois: So, to review, we have two different approaches. You can create a visual application using the for-fee, hosted Visual Builder Cloud Service/Stand-Alone or the one that comes with Oracle Integration Cloud, or you can use the extension architecture for Fusion applications, where you use the designer and create your extensions, and the code is delivered and deployed to Fusion applications code.  You haven't talked about JET yet though, Joe. What is that? Joe: So, JET is an abbreviation. It stands for Oracle JavaScript Extension Toolkit and JET is the underlying technology that makes Visual Builder, visual applications, and Visual Builder Extensions for Fusion Applications possible. Oracle JavaScript Extension Toolkit provides a module-based, open-source toolkit that leverages modern JavaScript, TypeScript, CSS3, and HTML5 to deliver web applications. It's targeted at JavaScript developers working on client-side applications. It is not for backend development.  It's a collection of popular, powerful JavaScript libraries and a set of Oracle-contributed JavaScript libraries that make it very simple, easy, and efficient to build front-end applications that can consume and interact with Oracle products and services, especially Oracle Cloud services, but of course it can work with any type of third-party API. 17:42 Nikita: How are JET applications architected, Joe, and how does that relate to Visual Builder pages and flows? Joe: The architecture of JET applications is what's called a single page architecture. We've all seen these. These are where you have a single web page—think of your index page that provides the header and footer for your web page—and then the middle portion or the middle content of the page, represented by modules, allow you to navigate from one page or module to another. It also provides the data mapping so that the data elements in the variables and the state of the application, as well as the graphical user interface elements that provide the fields and functionality for the interface for the application, these are all maintained on the client side. If you're working in pure JET, then you work with these modules at the raw JavaScript code level. And there are a lot of JavaScript developers who want to work like this and create their custom applications from the code up, so to speak. However, it also provides the basis for Visual Builder visual applications and Fusion Apps visual extensions in Visual Builder. 18:38 Lois: How does JET support VB Apps? You didn't talk much about having to write a bunch of JavaScript and HTML5 so I got the impression that this is all done for you by VB Designer? Joe: Visual Builder applications are composed of HTML5, CSS3, and JavaScript code that is usually generated by the developer when she drags and drops components on to the page designer canvas or sets properties or creates action chains to respond to events. But there's also a lot of JavaScript object notation (JSON) metadata created at the time that describes the pages, the flows, the navigation, the REST services, the variables, their data types, and other assets needed for the app to function. This JSON metadata is translated at runtime using a large JavaScript extension toolkit library called the Visual Builder Runtime that runs in the browser and real time translates the metadata and other assets in the Visual Builder source code into JET code and assets, which are actually executed at runtime. And it's very quick, very fast, very efficient, and provides a layer of abstraction between the raw JET code and the Visual Builder architecture of pages, flows, action chains for executing code and events to handle things that occur in the user interface, including saving the state in variables that are mapped to GUI components. For example, if you have an Input text component, you need to have a variable to store the value that was entered into that Input text component between page refreshes. The data can move from the Input text component to the variable, and from the variable to that Input text component if it's changed programmatically, for example. So, JET manages binding these data values to variables and the UI components on the page. So, a change to a variable value or a change to the contents of the component causes the others to change automatically. Now, this is only a small part of what JET and the frameworks and libraries it uses do for the applications.  JET also provides more complex GUI components like lists and tables, and selection lists, and check boxes, and all the sorts of things you would expect in a modern GUI application. 20:34 Nikita: You mentioned a layer of abstraction between Visual Builder Studio Designer and JET. What's the benefit of working in Visual Builder Designer versus JET itself? Joe: The benefit of Visual Builder is that you work at a higher level of abstraction than having to get down into the more detailed levels of deep JavaScript code, working with modules, data mappings, HTML code, single page architecture navigation, and the related functionalities. You can work at a higher level, a graphical level, where you can drag and drop things onto a design canvas and set properties. The VB architecture insulates you from the more technical bits of JET. Now, this frees the developer to concentrate more on application and page design, implementing logic and business rules, and creating a pleasing workflow and look and feel for the user. This keeps them from having to get caught up in the details of getting this working at the code level.  Now if needed, you can write custom JavaScript, HTML5, and CSS3 code, though much less than in a JET app, and all that is part of the VB application source, which becomes part of the code used by JET to execute the application itself. And yet it all works seamlessly together. 21:35 Lois: Joe, I know we have courses in JavaScript, HTML, and CSS. But does a developer getting ready to work in Visual Builder Designer have to go take those courses first or can they start working in VB Designer right away? Joe: Yeah, that question does often comes up: Do I need to learn JET to work with Visual Builder? No, you don't. That's all taken care for you in the products themselves. I don't really think it helps that much to learn JET if you are going to be a VB developer. In some ways, it could even be a bit distracting since some of things you learn to do in JET, you would have to unlearn or not do so much because of what VB does it for you. The things you would have to do manually in code in JET are done for you. This is why we call VB a low code development tool.  I mean, you certainly can if you want to, but I would spend more time learning about the different GUI components, page templates, the Visual Builder architecture — events, action chains, and the data provider variables and types. Now, I know JET myself. I started with that before learning Visual Builder, but I use very little of my JET knowledge as a VB developer. Visual Builder Designer provides a nice, abstracted, clean layer of modern visual development on top of JET, while leveraging the power and flexibility of JET and keeping the lower-level details out of my way. 22:46 Nikita: Joe, where can I go to get started with Visual Builder? Joe: Well, for more information, I recommend you take a look at our Develop Fusion Applications course if you're working with Fusion Applications and Visual Builder Studio. The other course is Develop Visual Applications with Visual Builder Studio and that's if you're creating stand-alone bespoke applications. Both these courses are free. We also have a comprehensive course that covers JavaScript, HTML5, and CSS3, and while it's not required that you take that to be successful, it can be helpful down the road. I would say that some basic knowledge of HTML5, CSS3, and JavaScript will certainly support you and serve you well when working with Visual Builder. You learn more as you go along and you find that you need to create more sophisticated applications. I would also mention that a lot of the look and feel of the applications in Visual Builder visual applications and Fusion apps extensions and customizations come through JET components, JET styles, and JET variables, and CSS variables, so that's something that you would want to pursue at some point. There's a JET cookbook out there. You can search for Oracle JET and look for the JET cookbook and that's a good introduction to all of that. 23:47 Lois: Joe, thank you so much for joining us today. We're really looking forward to having you back next week to discuss extending Oracle Fusion Applications with Visual Builder Studio. Joe: Thanks for having me. Nikita: And if you want to learn about some of the courses Joe mentioned, visit mylearn.oracle.com to get started. Until next time, this is Nikita Abraham… Lois: And Lois Houston signing off! 24:09 That's all for this episode of the Oracle University Podcast. If you enjoyed listening, please click Subscribe to get all the latest episodes. We'd also love it if you would take a moment to rate and review us on your podcast app. See you again on the next episode of the Oracle University Podcast.

Jewelry Journey Podcast
Episode 205 Part 2: How Joe Vilaiwan Became a Beloved Jewelry Designer for Hollywood's Boldest Stars

Jewelry Journey Podcast

Play Episode Listen Later Sep 28, 2023 27:16


What you'll learn in this episode: How Joe's family history in the Thai diamond trade influences his business today How Joe generates publicity for his brand without a large PR budget Why Vilaiwan Fine Jewelry focuses on selling one-of-a-kind pieces to select clients How to wear bold, colorful jewelry without getting lost Why fine jewelry doesn't have to be limited to precious metals and gemstones About Joe Vilaiwan (Polthakorn Viboonviriyawong) Vilaiwan Fine Jewelry is the work of creative artist and designer Joe Polthakorn Viboonviriyawong, a second-generation jeweler. In his native Thailand, Joe grew up in his family's diamond jewelry business and developed an instinct for identifying quality stones and metals. A natural-born artist, Joe began designing jewelry at age 14, when he created avant grade diamond rings that hinted at his future career. As an independent visual concept designer for major retailers in the United States and Asia, he quickly became known for his bold, eye-catching store window installations. In 2005 in Los Angeles, Joe returned to his roots and launched Vilaiwan Fine Jewelry, which caught the attention of store buyers who recognized his unique blend of art and ornamentation. His meticulously hand-crafted, statement necklaces, cuffs and earrings became top sellers in museum stores and exclusive boutiques as stylish women in international fashion capitals began wearing and collecting his glamorous wearable arts. A favorite among fashion editors, stylists and celebrities, Vilaiwan Fine Jewelry has been featured in magazines, on runways and in film. Joe recently collaborated with Disney Consumer Products to create the couture jewelry collection for the major motion picture, “Oz the Great and Powerful.” Additional Resources: Joe's Website Joe's Instagram Joe's Facebook Photos Available on TheJewelryJourney.com Transcript: Although Joe Vilaiwan is known for creating large, over-the-top jewelry, he insists that anyone can wear his work—and almost everyone has, from Joan Rivers to Iris Apfel. As the founder of Vilaiwan Fine Jewelry, he has made it his mission to find the perfect piece for every client who connects with his work. He joined the Jewelry Journey Podcast to talk about how he gets inspired; how he sources the unique materials he uses in his jewelry; and how he has gotten A-list press for his brand without a large budget. Read the episode transcript here.    Sharon: Hello, everyone. Welcome to the Jewelry Journey Podcast. This is the second part of a two-part episode. If you haven't heard part one, please head to TheJewelryJourney.com.    Today, Joe will tell us how he started his business and who his clients are. Also, we'll hear how he comes up with his ideas. Welcome back.    Do you find that your jewelry sells better in a certain part of the country?   Joe: If I find my right clients, I believe that in every part of the country or a certain part of the world, I think every part of the world, they will have a group or niche who are beautiful inside and out, who are intelligent, who have great taste, a good sense of design. They're very niche, but if I find them, they'll always be my clients. It could happen any time. I have rare clients. There are clients in Palm Springs, in New York, in Europe, in Paris, in Asia. I don't think there's any particular area, but if I find the right group, obviously everywhere in the world they will be my clients.    Sharon: Your company name is Vilaiwan Fine Jewelry. To me, it's wonderful jewelry, but it's also fashion jewelry. Have you considered changing the name?   Joe: No, not at all, and I intentionally called it that. Actually, we also have a fine jewelry collection. You must see it. I do not bring it to the Beverly Hills Art Show because it's a little dangerous because it's outdoors. But we've had a fine jewelry collection for the last six or seven years already, and it's actually been doing very well. We use diamonds, real gemstones, because I have my family backing me up on that in the factory and with sources. My parents bought them in cash and it was a kit, so we have a great source of stones.   However, even when I started with custom jewelry, I still want to call it fine jewelry. For me, fine doesn't have to be diamonds. It's just personal taste, but fine for me means fine craftsmanship, fine material, fine production. You find out about the inspiration and the way I design them. Everything is for fine people. That's what the meaning of fine jewelry is for me. That's why it's become fine jewelry for everyone. Even though it is crystals and shells, the way it's made is not different from the production we use with emeralds or blue sapphire or anything. The craftsmanship is always the best. I think I might be the only company in the world that has a lifetime guarantee. If something happens in the next five or six years when you wear it and you break it, we fix it for you.    Sharon: That's good to know. Is most of your jewelry made here in the States? Where is it made?   Joe: Everything is made in the States. However, I do have a lot of suppliers all over the world in terms of the craftsmanship or some stones. Some type of the necklace might be made in Thailand, might be made in Italy, because in its culture, they might be very, very good in some particular process. Makers in Thailand are very good at finding all those gemstones, the collections for the fine jewelry. In Italy, they are really good with the way they work with metal. So, I have a supplier who has expertise in different techniques, but everything is completed and finished in the U.S.A.    Sharon: Let's say they're good at something in Italy. At the same time, do you go around to different stores and show them their things and hope they'll buy something?   Joe: No, usually I view them as the artisan in his country. I just use them as my suppliers. There are some companies where I don't even know what the finished product will be. Let's say it's the pearls you got, right? Those are actually made from seashells. They blend them and then put them together as a big, look-alike, gigantic pearl. My source for that pearl is South Korea; however, they don't know what I'm going to do with the pearl. I'm the one who puts together the necklace and everything. Therefore, they will not know what the finished product would be, and I don't need to go to South Korea and see who is also using it.    Just by myself with my private clients, I almost don't have enough jewelry to sell to them. Mostly we used to do trade shows, and most of the clients who went to my trade show were museums. We're in museums in London and San Francisco. We are in over 34 art museums all over the world that carry my line, and they've been selling very well. The Metropolitan Opera sells very well with my jewelry. Those are the people and the buyers who will meet me two times a year at the trade shows.    I'm very picky about who's going to carry my line. I'm very picky about my clients as well. I'd rather have a good amount of clients, but they're quality clients. Then we can create a friendship, a relationship. Life is too short, and I like to work in that way so I can be happy and enjoy their company and they can enjoy my company. We can actually have interaction towards my art, and I think that will make everything fun and loveable.   Sharon: If I go to one of the museums in London, and I want to buy a necklace but there isn't one there, is that it?   Joe: That's it, yeah. You will be the only one who has it. That's why having my clothes in your closet, you see they have my signature on it. People really collect them. In the past, we had some collections that have art pieces for design, but the maximum is the other pieces. Some pieces have eight to 10, but that's it. That's the maximum. This way, everything is one of a kind. There's only one of these necklaces in the world, and you will be the only person who has it. I love it that way.   Sharon: I like to know that, but I'm surprised to hear that. Do you have certain craftspeople who work for you?   Joe: Yes, I do have a good team of people who work for me, and I help them as they are single mothers. I give them projects so they can work at home. We meet and I teach them how to do it, and then they can just submit their work that we are planning to do. My things are not mass-produced; they are not machine-made.    That's why I say it's important that these pieces carry the energy of me, who designed them or made them, and the craftsmanship of the people. This is not talking about the stone itself. That also has its own particular energy. It's the cosmic, pure energy to be a great piece of art. We can actually feel that. People can sense that energy. That's why it's important to give the right piece to the right person because then the magic happens. It's going to make you feel completely different. It's like you find the best version of yourself. I do believe everyone deserves that throughout every life.    Sharon: That's good to hear. I'll think about that when I wear it. I haven't worn it yet. You said you named the company after inspiration from your mother, or you attribute it to your mother. Where do you get your other inspiration from?   Joe: I have inspiration all over. I don't have a program of design. My challenge is to start designing. I get inspired so easily. I could see the dirt on the floor and think about the textures, and I have to write it down or schedule it so quickly. One of your questions is do I find the stone first and then design it, or do I design it first and then find the stone? It happens both ways. Sometimes I find a stone that is very interesting and see the picture of the design in my head right away. Sometimes I have the design in my head, and then I find some stone that will suit that design.    For me, inspiration comes from everything. I think you can use this with every perspective of your life if you persevere. You can get inspired from everything around you. You can look at the sky; you can look at nature; you can look at what people wear. I've gotten inspired many, many times with the way the homeless dress in L.A. We have the homeless, and sometimes they dress very funky, very inspiring, and I get inspired from that. You can go to museums or look at things around you. If you are creative and you can actually manage that in your head, you can get inspired very easily.    I get inspired getting things I haven't made yet. Actually, I have to screen that and think about how I'm going to put it into the collection. What would suit what clients if this piece is coming out? Who is the client I would think of? That's how I use my knowledge of advertising, to screen those designs and see what the best time to launch that collection is, who the best people to show this to are. But prior to getting inspired, it's so easy for me. It's not a big thing at all.   Sharon: How do you turn it off? Are you going to bed at night?   Joe: Yeah, that's very challenging. That's what my problem is. My friend was helping me try to find something that pulls my attention. I really can't turn it off because I enjoy it so much. For me, it's like playing. Sometimes I really need to get away and watch something completely different or go work out or travel so I can turn it off. If not, I would always get excited, like, “Think about this. It's going to be so cool.” For me to keep it balanced at this point, my age is very important.   Sharon: Have you thought about or have you had men ask you to design something?   Joe: Yeah, I have a lot of new clients that come in both sexes. A lot of them are gentlemen who are very busy, and they know their wives would love my jewelry. I have a big group of those clients. I always choose the gift for their wives for their anniversary. I have a group of gentlemen who also like big and bold jewelry. Once in a while, I do make some men's jewelry as well. I have clients who love buying men's cuffs and men's rings from me. I do have those kinds that buy for themselves as well. So, it's two groups of gentlemen buying. They are very fun, and so far, I have never failed them in choosing the right piece for their wives or their girlfriends. They're all very good about this.   Sharon: Do they call you or your assistant and say, “It's my wife's birthday”?   Joe: Yes. They call me directly or they call my assistant, or they will make an appointment. For my clients, I only take private appointments. If I'm in town in L.A. or even in New York, people will come to New York and everyone will make an appointment. I have a client who is the first person to make an appointment when I go to New York. She wanted to be the first person to pick everything. I usually have a private appointment for those clients, for some family close to their anniversary or their birthday or a special occasion. They come to an assistant or they call me, and then we'll make an appointment. We'll discuss the design I already have and anything particular or special they want to have in the piece for that certain occasion, and we make it happen.    I have to say that not only do we do jewelry, but we also do a presentation for them. We wrap them. We have the flowers in the box. If their wife collects teddy bears, we have little teddy bears on the card. The gentleman just needs to sign. They appreciate it so much because my team and I prioritize not just the beauty of the creations, but also the feeling, the energy, the complement of the relationship we have with our clients as well. For me, that's the part I enjoy the most: meeting my clients and having my clients in my life. I want to continue doing that. It's not always the product or the jewelry itself. The experience of it is also important for us.    Sharon: Does a person ever come to you and say, “I don't really know what I want,” and you can look at them and see something in them?   Joe: Many times, they say, “Is there something you think will be me?” Many times, I introduce new colors into their lives. I have clients who only wear black all the time, and I introduce a new way for them. I say, “You have to do this because it will make you have much more fun in your life.” I had one client who has now become one of my collectors. I said, “In three months, I'll take it back. You can exchange it to be any black piece you want.” Now she has new colors in her life. Now, she buys red shoes. Now, she wears some lipstick. Introducing new colors in people's lives is something I really like to do because people have to have fun. Colors are made to go. They give you so much fun, such a sensibility in your life, and you should enjoy it. It's my honor to be able to do that and help them have more fun because colors are designed in their lives. Sometimes they just don't know they could pull that off.    At the same time, if they find something I don't think would suit them, I would be honest with them. I would say, “Don't get this because I don't think it will actually complement your skin very well. If you have it, return it.” I would be honest with them. I want to choose the piece that would help them make the neck look longer, make them look taller, complement their eye color. That is my job, to suggest those to them.   Sharon: Do you have people who bring you their designs? Do your craftspeople ever bring you their designs and say—   Joe: No.   Sharon: “I think this is a good design”? Never?   Joe: Never, because people know I want to custom make for clients. I only design what I design. I have only made what I design. So, no, I never have anyone that brings in their design and asks me to do it, because for that, they don't need me. They can go to any jewelry production or jewelry company, and they'll have them do the work. It's easy. They come to me because they want my signature and my design and to wear them.    Sharon: Has anybody ever said to you, “I want this piece incorporated in what you're making. I want this flower. I want you to put this in the necklace somehow”?   Joe: So far, for the past 16 years, I never had that before, maybe because of my brand and my personality. My work speaks very strongly of who we are. People perceive them very quickly and get very quickly that we are one of a kind; we are special; we are unique. People respect that. They know if they ask us to put something, they will usually come in to find my creation that will suit them or ask me to help them find my creation that will suit them. I think that would be the best answer to that.   Sharon: If somebody wants to get ahold of you, what's the best way?   Joe: The best way to get ahold of me is through social media on Instagram, @VilaiwanJewelry. The website is Vilaiwan.com. People often send me messages through Instagram or email me at Joe@Vilaiwan.com. That's the best way you can reach me. Mostly I will post my answer back myself because I like to be involved. I like to know, and I'm excited to know, who is interested in my jewelry because my jewelry is not for everyone. I'm fine with that. I like to look at it that way. If it's not for everyone, then I want to know there is that one person who thinks they will potentially be my client. I would love to know them. So, I always respond to those messages myself.   Sharon: You mentioned, for instance, that in fall you have dark colors and the old color scheme. What if somebody says, “This spring, the colors are”—I don't know what they are, but maybe melon and bright green. Do you have colors that go? Are you influenced by the colors that are popular?   Joe: I'm not influenced by colors so much. The people that know me know I always put together very interesting colors, very unique color schemes. I love to put very dark green with salmon pink, or I would put orange and purple together. That's my signature, too, the combination of colors that people cannot think of, or the colors that people did not know could create a harmony that's interesting. It doesn't have to be a popular color. It can be any colors at any time. If I get inspired and feel like it will be interesting, I will put it together with the design I have, and it will be a fantastic piece. I don't know how to explain it, but if you go through the pictures or see my Instagram, you will see a lot of those pieces I have posted are very unique colors. There are a lot of colors that not a lot of people would think to put together, and those mostly sell very quickly.   Sharon: I was going to ask you, is there anything left? If somebody sees something on Instagram or Facebook and they say, “Joe, I like that one and I really want to get it,” is that left?   Joe: The best is to say, “I want it definitely,” and then they're presented right away. I will put what's sold in the books. I will post “sold” in dollars, and many times, people say, “Well, can you make it again?” and I say, “No, we cannot make it.” A lot of times, it's only one piece of that scale of ruby that I find. So, they are unique. That's why we don't even have enough pieces to supply. With only my private clients, I was still swamped with it. I appreciate that, and I'm really grateful for those clients and the support they have for me through our pieces for 15, 16 years.   Sharon: Wow! I didn't realize it was that long.    Joe: Yes.   Sharon: Thank you so much for being with us today and for telling us. I'm glad things are going so well.   Joe: Thank you, Sharon. Thank you so much for having me. It was great meeting you at the Beverly Hills Art Show. We'll be there again in October, and you will see how completely different it is. Everything you saw at the Beverly Hills Art Show that day is ours. It will be completely new collections that you will see. I'm looking forward to it.   Sharon: So am I. Thank you very much.   Joe: I had so much fun talking to you and your friends. I like people that enjoy life and appreciate art. I appreciate things that are very similar. I think that's what makes it fun, right?   Sharon: That's right. Thank you so much.   Joe: Thank you very much.   Sharon: We will have photos posted on the website. Please head to TheJewelryJourney.com to check them out.   Thank you again for listening. Please leave us a rating and review so we can help others start their own jewelry journey.

Woodland Walks - The Woodland Trust Podcast
18. Coppicing at Priory Grove, Monmouth

Woodland Walks - The Woodland Trust Podcast

Play Episode Listen Later Aug 25, 2023 31:50


Discover the fascinating ancient art of coppicing as we visit Priory Grove in Wales' Wye Valley, where the technique is still practised on a small scale to benefit both people and wildlife. We meet site manager Rob and contractor Joe to learn more about the coppicing carried out here, and how this interaction between people and nature has enabled the two to develop and evolve in tandem. Also in this episode, find out how an unfortunate end for ash trees resulted in a fantastic sea of wild garlic, the team's efforts to encourage dormice, bats, pine martens and other wildlife and which tree to identify by likening the trunk to elephants' feet!  Don't forget to rate us and subscribe! Learn more about the Woodland Trust at woodlandtrust.org.uk Transcript You are listening to Woodland Walks, a podcast for the Woodland Trust presented by Adam Shaw. We protect and plant trees for people, for wildlife.  Adam: Well, today I am off to Priory Grove, which is next door really to the River Wye near Monmouth in Wales to meet the site manager Rob there who's gonna give me a bit of a tour. It's predominantly made up of ancient woodland and provides a wide range of habitats for wildlife. Things like roe, fallow deer, they're known to forage throughout the area, and a wide variety of bird species, including the tawny owl, sparrowhawk, and the great spotted woodpecker, which can all be seen on the wing here. All very exciting and I've just got to find it and find Rob.  Rob: Hello, I'm Rob Davies, site manager, South East Wales.  Adam: So tell me a little bit about where we are and why this is significant.  Rob: This is Priory Grove woodland. It's quite a large site on the outskirts of Monmouth, but nobody really knows what its history is. It's it's called Priory Grove, presumably because it was attached to one of the monastic estates round here. And that probably accounts for its survival as one of the one of the largest ancient woodlands next to Monmouth. And it did retain a lot of its coppice woodland, which is quite important for biodiversity.  Adam: Right. And what we're, I mean, we're standing by some felled, are these oak?  Rob: These are oak. Yes, oak, oak in length.  Adam: So why why have these been felled?  Rob: This is part of the coppice restoration programme, so coppicing on this site has been a management tool that's been used for hundreds if not thousands of years in this area and it's used to produce products like this, this oak that will go into timber framing and furniture and all those good things. And also, firewood is part of the underwood and the the the hazel and the the the understory coppice. So products for people and in the past it was used for all kinds of things before we had plastic. But it's still very useful, and so because it didn't cease until recently on this site, the animals and plants and the fauna that relies upon this method that have evolved with it essentially in the last 10,000 years or so since we've been managing woods in this way, still are present here on this site or in the local area. So if you continue the cycle you continue this interaction with the wildlife and you can help to reverse the biodiversity declines. So it's very holistic, really this management technique. But it does mean that to make space for the coppice regrowth, because trees don't grow under trees, you know it needs the light. The light needs to be there for the coppice to come up again. You have to take out some of these mature oaks that were planted 150, 200 years ago, with the intention of being used in the future. So we're planting things and we're carrying out the plans, we're bringing them to fruition, what people enacted a couple of hundred years ago.  Adam: It it's interesting, isn't it, because it it it is an ancient woodland, but that doesn't mean it's an untouched woodland, because for hundreds of years it's it's been managed. Man has had a hand in this and not only that, commerce has had a hand in that, so often I think we think of these things as a dichotomy. You have ancient woodland, nice, pristine sort of nature, and then you have sort of horrible invasive commerce. Actually, I think what's interesting about this site is that there isn't that dichotomy. They both work in tandem, is that fair?   Rob: That's right, it's a false dichotomy. So the reason these woods have survived is because they were used for people, and because of the way they're managed, coppicing and thinning is quite a sensitive technique, it allows space for nature to be present and to develop and evolve in tandem, so they're not mutually exclusive.  Adam: Yes. So tell me about coppicing is an important part of this site, tell me a little bit about what you're doing at the moment with that.  Rob: Yeah, so we've had a grant actually from the Wye Valley AONB from, supported by the Heritage Lottery Fund, to to do some coppicing work on stands that were coppiced about 20 years ago. So we're continuing that cycle. And we've been working with a company called Wye Coppice Community Interest Company, Wye Coppice CIC, and they're quite developed in, in the Wye Valley area. And we formed a good relationship with them and through them we've been able to do half a hectare of coppicing up on the other slope higher up in the site there. If you like we can go up and meet Joe?  Adam: That would be wonderful. Yeah. You you lead on I will follow. Well, you can hear from this I'm a bit out of breath, we've claimed, OK, I'll be embarrassed to say it's a hill, a small incline, but we've come across this stand of of felled trees. So just tell me a bit about what's going on here.  Rob: Exactly. So all these stumps you can see scattered throughout the stand. This is the coppice, so it's cut down to just above base ground level there now and it will just regrow. So it's kind of a natural defence strategy that we're just exploiting. So it's it's been used to, it's, you know, since it evolved things like hazel especially, it‘s used to being browsed off by animals, the animals move on and then the tree just comes back. So it's like a phoenix strategy it comes back, back up again. We're just exploiting that. So we'll cut the tree to base and then we'll protect the regrowth from the browsing animals and then the tree will come again.  Adam: Right, and this is the work done by Joe?  Rob: Yeah, this yeah so this is the work done by Joe Weaver. Joe's just down the end there actually if you want to come and meet him.  Adam: OK, let's go have it let's go meet him. Ohh I've got stuck. OK, so Joe, this is all your handiwork.  Joe: It is, yes.  Adam: Tell me a bit about what what it is you do then.  Joe: So I run Wye Coppice CIC, we're a coppice contracting company and working with Woodland Trust, Natural Resource Wales and Wildlife Trusts throughout the Wye Valley and we're embarking on a project to restore areas of the Wye Valley to restore, do a coppice restoration project for for various organisations throughout the Wye Valley. The what you see, what you see here is about 1 1/2 acres of cut down trees with 7 or 8 standards.  Adam: What are standards?  Joe: The standards are the trees that we've left behind, so, so they're the large, they're the larger trees.  Adam: Oh, I see right. So you wouldn't be coppicing, these are very well established big trees, you don't coppice trees like that, you coppice quite small trees, don't you?  Joe: Yes, so all the small diameter understory trees we've cut down to ground level and and they will, they will resprout and grow back again. We can then come back in 10 years and recut them and have a healthy supply of continue, a continual healthy supply of pole wood.  Adam: And yeah, so what you're trying to get with coppicing is sort of quite it's quite small diameter wood, is that correct?  Joe: Yes, generally speaking, so this is a restoration project you can see this first cut is fairly large diameter. And so most of this will go to make charcoal but generally speaking after 10, maybe 15 years of growth, we'll have poles about sort of thumb size and maybe up to about 50 pence diameter.  Adam: Right. And that's ideal size, is it?  Joe: And that's a really good size for products like bean poles, hedging stakes and binders that go on the top of naturally laid hedging and then various other pole wood applications.  Adam: And and when you see a coppiced tree, evidence that it's been coppiced, there's, I'm trying to look over there, is is this where you see lots of different branches actually coming out from the stump in the ground? That's evidence that's been coppiced, cause it not just one thing grows, lots of them?  Joe: That's right. So you can, if you have one birch tree standing up, for example, you can cut that down to the ground, and when you come back in a few months' time, you'll notice about 5 or 6 shoots coming from that one stump at the bottom of the ground. So if we can protect that from deer browsing and rabbit browsing, then those stems, those five or six shoots will grow up into individual stems that we can then use use in pole wood products.  Adam: It's odd, isn't it that that happens, though, that you chop down one sort of main stem and you get four or five coming back, that's sort of an  odd natural thing to happen, isn't it?  Joe: It is. I think it's the tree's response to the stress of being cut down. So it sort of puts out a lot of it puts a lot of energy into regrowing new growth to try to survive because essentially these broadleaf species, trees, they're they're forever growing, you can cut them down they'll regrow, cut them down again, they'll regrow again. So it's a constant cycle of of regrowth.  Adam: Yeah it's it's like sort of, you know, thumbing their nose at you isn't it, going well, you cut me down well I'm gonna come back fivefold. You know, that's it's a sort of really funny response.  Joe: Indeed. But we can reap the benefits of that.  Adam: Yeah no, no, it's, I get, I get why that's good. And coppicing itself, that, and that's an ancient art, isn't it?  Joe: It has, certainly here in the Wye Valley it was practised at the beginning of the Industrial Revolution to produce charcoal to power the Industrial Revolution until coal was iintroduced and so it happened for hundreds and hundreds of years here.  Adam: Right. So you think, do you think I mean there's no need for you to be an historical expert on the history of coppicing, but do you think that's the first big sign of it happening, sort of Industrial Revolution time?  Joe: Certainly around here it is yeah, and there's some of the coupes that we've cut, some of the coppice areas that we've cut here, we've found evidence of charcoal hearths. So you can see flat areas with bits of charcoal sort of sliding down the bank.  Adam: So that would be ancient sites in here, well, ancient, I mean, a few 100 years old of them actually making charcoal in this woodland?  Joe: Yes, in this woodland, throughout the Wye Valley all the way throughout the Wye Valley here, yes.  Adam: Amazing. Now so your company, it's not just a traditional sort of private business, it is a a different sort of form. Just explain how that works.  Joe: So we run a community interest company and that allows us to access grant funding if we need to. Essentially, we're run as a private business, but we are able to do community outreach work as well and that's part of what we do is to try to educate people about sustainable woodland management.  Adam: And how did you get involved in all of this then? Did you grow up as a boy going I want to chop down trees to make fences.  Joe: No, I didn't. I was walking in the Dolomites, I saw two stoats fighting and thought woodland life is for me *laughs*.  Adam: Ok, well, fantastic, never heard that, so inspired by the the battle between two stoats and the and and the Dolomites. That's fantastic, but a hard life, I would have thought to run a business to, I mean it's physical work anyway, but that's my perception from the outside, is it hard work?  Joe: It it can be very difficult, it does have its benefits. Obviously it keeps you fit and it gets you outside but yes, it is a hard life and and you know it's it's quite a technical job as well and the training is expensive so we're trying to introduce a training programme as well through through our through our business Wye Coppice to try to get young people interested in woodland management.  Adam: And do you find that people sometimes don't understand or or perhaps disagree with the fact that commerce and nature can be actually mutually beneficial? Do you find that an issue at all?  Joe: Yes I do. Yes, and we're we're we're always willing to stop and talk to dog walkers especially. Shortly after COP26, we had two dog walkers come past and shout at us for chopping the trees down, after sitting down with them and having a cup of tea, they bought a bag of charcoal off us.  Adam: Right ok very good there we are. You're bringing them round one by one, one by one, those customers are coming over. Well brilliant and we've had not a bad day. I thought I might have to put my wet weather gear on, but it's been it's been OK. Anyway well, that's brilliant thank you very much. That's been really interesting.  Joe: Thank you.  Adam: So we've got this stand of trees we're looking at Rob. A couple couple of oak. Did you say that was a lime?   Rob: That's a lime yeah.   Adam: That's the lime, that that one with lots of ridges in it is that the lime?  Rob: That's it, yeah.  Adam: That's the lime. So why have you left these trees? Is there particular reasons you didn't take these ones out?  Rob: Yeah. So these as you can see, these are all mature trees and so you don't take these decisions lightly. So when we coppice this sort of half a football field area here, there were thirteen of these big mature trees, trees you can barely get your hands around as they're so large, taken a couple of hundred years to grow, so you've got to be quite careful and quite selective, although you need the light. There's an old adage about oak trees, it goes something like this that to fell an oak tree you need three things. You need a good eye, a sharp axe and a cold heart because these trees, you know they've been grown and nurtured and developed, and they're impressive life forms. And so it's not something you do without considering it very carefully so so you can see a couple of trees in here which are a couple of oaks, good size, but they're full of ivy, very dense ivy and that's very good for wintering bats. For hibernation, or for potentially summer roosting.  Adam: So the bats would live just amongst the Ivy, they'd sleep amongst the ivy?  Rob: Yeah when it gets as dense as this, when it's really all knotted, entwined, there's lots of gaps behind it. You could stick your hand in and find little cavities and several species of bat, especially pipistrelle, they they will hibernate over winter in this kind of growth. So you really don't want to be disturbing this.  Adam:  Right. And and what what's, is there something specific about lime that wildlife like is there any particular wildlife?  Rob: Well, it's good for bees. It's good good good pollen.  Adam: You get beehives in there? Oh I see, the pollen itself is good.  Rob: They like the flowers. Yeah yeah it produces lots of the small leaved lime it produces lots of good flowers and and it will attract aphids which is actually a food source for for dormice in the summer. So they they feed on the feed on the lime sap, you know if you park your car under a lime tree, you'll get this very sticky kind of substance coming off it.  Adam: Yes, yeah, yeah. Of course it does. Yes. Yeah, yeah.  Rob: So that attracts aphids, attracts the dormice, it's good for insects who like nectar as well. So it's a it's a very valuable tree and and you know  Adam: So interesting it's it's not valuable commercially, it's valuable for nature.  Rob: Yeah, absolutely. And it's quite it's quite a special tree in the in the Wye Valley, it doesn't occur much outside this area naturally, and it's kind of an ancient woodland indicator in this part of the world, perhaps not officially, but it's a.  Adam: OK. Any other trees we've got here?  Rob: Yeah. The rest of the trees, then are beech.  Adam: Right and you've kept those why?  Rob: Yeah, because you can see if you look at this one here, it's got quite a few cavities in it at the base at the top, beech tends to do that. It tends to take, form little cavities, rot holes and ways in, and that's ways in for fungus and then they eat out and hollow the tree. So the potential for harbouring bats again is very high in these trees. Without sort of going into them, doing some invasive exploration, you can't tell, but it's it's very high potential for bats. So again, bats, all species of bats in this country are protected under law because they've had massive declines like a lot of woodland species. And so we'll do everything we can to retain that habitat.  Adam: It's it's the Field of Dreams, philosophy. You you build it and they will come.  Rob: Yeah, yeah. This as long as it stays there, it'll always be valuable as habitat and so at least then, there are future sort of veteran trees within this stand.  Adam: It is interesting you you've already, I mean, we've only done a short part of this walk so far, but you talked about whoever was managing this woodland 100 years ago knew what they were talking about. And I think that's fascinating that we don't know who that person is or who who they, who those people were. And in 100 years time, people won't know who you were p.sumably, but the the evidence of your work will be here. They'll go yeah, that was a good bloke who did all this and left us with something.  Rob: That's it, you you don't plant trees for yourself, you plant trees for the future generation so you know, I won't see the oaks I plant develop. I'll be dead long before they mature and it's the same for the person who did this. But you can see the ones we took out, the ones I took out and selected were tall and straight. And that means that the coppice is well managed, because there was enough light for the hazel in the understory to come up straight away. If you cut hazel to the ground and you protect it, in a couple of years, it'll be way above six, eight foot and it'll just continue to get higher and higher over the next few years. And what that does is it shades the stem of the oak and it prevents side branching. So you get this very tall initial first stem. And that's what you're looking for. And that's what these trees had. So this would have clearly been cared for and these trees have been selected, they were on a journey from the moment they were planted.  Adam: OK. And just on my journey of education about trees, how do, what, they're beech, I wouldn't be able to spot that myself, what tells you they're beech?  Rob: It's a smooth trunk. If you look at this one here now you can see I always think of them as sort of elephant legs. They're grey and they're tall and they're smooth and they quite often have sort of knobbly bits on the base like an elephant's foot. And if you go through a stand of pure beech, it looks like it looks like a stand of elephants' feet, really tall, grey stems and these big huge buttress roots.  Adam: Fantastic. I am never going to forget that and I will always think of elephants when I look at a beech, a brilliant brilliant clue. Thank you. Right. So where we off to now?  Rob: We'll walk around so you can see the top of the coupe and just see the extent of it and and then we'll walk back down perhaps and have a look at this oak.   Adam: Brilliant. Well we've come to the, over the brow of the hill and along this path, there's a tiny little path for me to walk, and on either side there's a carpet of green. And I think I know what this carpet of green is. Rob, what is it tell me?  Rob: This is wild garlic.   Adam: Yeah. This is the time of year, is it?  Rob: Yep, you can see the flower heads. Ramsons it's also called, it's just about coming into flower now.  Adam: Sorry they're called what?  Rob: Ramson.  Adam: Ramson. Is that the flower itself is called ramson, or is that?  Rob: Well, just the plant.  Adam: We call it wild garlic but it's it's real name is ramson?  Rob: Well some people call it ramson too.  Adam: Right OK. And I never, I mean I have never picked and eaten anything from a forest because I am sure I will kill myself, but all of this, I mean, I've seen loads of people do that, pick wild garlic and it's, I mean there's there's acres of the stuff here.  Rob: It can it can yeah any kind of wild plant comes with the caveats that you need to know what you're doing.  Adam: Yes, which which I don't.  Rob: Yeah, absolutely. It's funny yeah, this site is quite well known for its ramsons, for its wild garlic carpets. This this is in response to something here, quite a sad thing actually. We're right next, you can probably hear the road noise there, we're right next to the main road from Monmouth into the Forest of Dean, Staunton Road there, and unfortunately, a lot of the trees along the road edge were big, big, mature ash trees. And they all had dieback and they were all dropping limbs and about to crush a car. And so, you know, we take that very seriously in terms of health and safety so the trees just along the road edge, we left the ones in the wood, just the road edge trees we had to do something about them, so they've either been reduced or felled and what that's done in this woodland where in the last 60 years, you have had very little management, like most woods, post war, very little has happened. So it becomes very high, very closed canopy, very dense. And what's happened, because of the ash felling is, you've got this pocket of light here and the ramsons have immediately responded to that. So this wasn't here last year. This carpet like this.  Adam: What so this is this is brand new?  Rob: This is brand new. It was the odd plant coming up every year, patches of it.  Adam: I'm shocked because this looks like something from the Wizard, if this was yellow, this would be we'd be in the middle of the Wizard of Oz set here, the yellow brick road. It just I mean it it's just a beautiful, winding, lush, dense path of wild garlic. It looks like it's been here forever.  Rob: And in a sense it it was. It was just waiting for the opportunity, waiting for that temporary disturbance caused by the ash felling. And so like with the coppicing, that's what we're trying to recreate essentially, is these temporary pockets of disturbance where you you break up the canopy, you get this flush of greenery and then until the trees recover it and regrow again. So you don't want this homogeneous block of woodland really. You want, you want variation, because that's the key to success for, for wildlife and biodiversity, different niches, different ages. If you look closely, you can see it's not just the garlic either. You can see wood anemone, you can see greater wood vetch, you can see little violets. So, you know, quite quite a lot of species are now taking advantage of this temporary light that the ash felling's produced.  Adam: It is a nice positive message, isn't it? Because ash dieback has been a real tragedy. But even in the midst of problems there are opportunities which nature comes back with, it's an optimistic sign.  Rob: There is and so this as I say, you know these these trees would have coppiced without us because you know when animals browse them, they they they they come back after that so all we're doing is sort of recreating these natural processes through the management of the woodland. A once in a lifetime storm might have knocked these ash out or a hurricane, something like that, could have felled the whole area and then temporary open space, the plants capitalise and then the wood comes back again, so we're just just mimicking what nature does anyway.  Adam: I'm going to take a photo of this, put it on my Twitter feed. It's fantastic. So we've just taken a little stop on this path of wild garlic. So over to the right is well, I thought it was a bird box, it's a large bird box. You tell me it's actually something very specific.   Rob: Yeah, this is a pine marten nest box cause there was there has been a big release of pine marten. Pine martens are native to this country. It's kind of like a large weasel that lives in the trees. That's a really bad way of describing it, but it's a it's a mustelid. It's a large, impressive, intelligent animal and they were sort of pressed to persecute, to extinction, with persecution in the past. But they're very important in these woods for regulating, you know, the biodiversity, they, they prey on the grey squirrel especially, and they'll regulate bird numbers like any predator does. So it's it's great to see them coming back and it's a success story actually, because a couple of years ago now there was a release programme where captive animals were put into the Forest of Dean which is just over that direction. And so we put up some boxes and monitored them and pine martens are moving back into this area now. Whether they're using the boxes or not, we're not entirely sure, but they are moving in, so it's a, it's a really good story. So we'll do whatever we can to sort of encourage them because we've we've lost a lot of this old growth woodland that we're trying to protect and so they haven't got the nest cavities, so temporarily we'll provide this habitat.  Adam: And over the other side of the little dip, there's another pathway and it looks like the bank has been cut away and it's very black so that it doesn't look quite natural. What's going on there?  Rob: Well the the track that's been put in there is exposed, an earlier industry, so that's that's a charcoal platform. See what is it about five, five metres in diameter. Sort of sort of circular and very, very thick layer of charcoal. A huge fire has been there, but that's that's lots and lots of fires, one on top of the other.  Adam: So this is this is not current, this is probably a couple of hundred years old?  Rob: I think the last burn in this woodland would have been before the Second World War.  Adam: Oh right, so not that old.  Rob: Well, I mean, if they were still burning, they would have had the odd one, but this probably dates to sort of the the height of the the periods of the the late 19th century. So this here, it's been buried and forgotten about. But it shows you as Joe was saying earlier, at one point this was a managed wood and quite a few woods in Wales if you look on the maps you'll see things like coed poeth, which probably roughly translates as sort of hot wood or or burning woods, very roughly, probably, which gives you, may may give you an indication that these woods were worked and if you came here, you would have probably seen people living in the woods with the charcoal, tinner and charcoal workers, especially in the the 19th century, would have moved in in the summer to do the charcoal production with their families.  Adam: Just living in a tent or something?  Rob: Living in on site yeah, because then you know you don't want to move products, move things twice. You know, it's it's an economic, so you bring your family in, you produce your product, and then you come out with it at the end of the season so it's very peaceful here today. You can hear the birds. It's great for wildlife, but it would have been a managed landscape and we're trying to introduce a little bit of that. Obviously not people living in the woodlands anymore, but there's space for both here within this woodland, a bit a bit of coppicing a bit of management and reserve areas.  Adam: And I mean, I I hadn't quite noticed it while we were walking, but now we're we're standing here on this green carpet, there is an overpowering smell of garlic, it's quite extraordinary. It's very fresh, you know, sometimes when you're in the kitchen and the garlic it's it's, it's not fresh, it's pungent, but this is, you know, it's mixed with the sort of cool air, it's a really lovely smell.  Rob: It's making me hungry, actually.  Adam: Yeah yeah, yeah, yeah. Well I was thinking whether I should pick some for dinner.  Rob: Chop some up. Pasta sauce. It's lovely with that.  Adam: Yeah, yeah, yeah, lovely. And and there's another one amongst this wild garlic, it's clock, what was it?  Rob: Yeah, this one here, it's the town hall clock or moschatel as it's known.  Adam: Town hall clock that's it. So just, what's the what's its proper name?  Rob: Moschatel. Well, that, that's it's another acronym, ah pseudonym really it's moschatel.  Adam: Moschatel.  Rob: Or town hall clock. I forget the Latin actually, to my shame.  Adam: Is moschatel the Welsh word for it, or it's not  Rob: No, it's not. It's a general general word, just a colloquial local term.  Adam: And why is it called the town hall clock?  Rob: Look you can see these four, the flowers have four sides to them, like an old town hall clock would.  Adam: Right, lovely. It's really quite, quite a rich path we're wandering down.  Rob: You see the the bluebells are out look just now, if you look up into the wood there you can see them. In Welsh they're called clychau'r gog, which is the cuckoo bell.  Adam: Wow. Cuckoo bell.  Rob: Because it comes out when the cuckoo comes. Apparently, the grant paid for like a fence, contractors to fence off that, this boundary here, stop the deer coming in from the Dean. To stop the wild pigs actually, pigs are a  Adam: You get wild pigs here?  Rob: They're a nuisance round here, yeah.  Adam: Wild pigs?  Rob: They call them, they're not really boar, because a boar will produce like, I don't know, maybe a litter of six, and these pigs will do 22.   Adam: Right. Blimey. And how big are they?  Rob: They look like boar.  Adam: So and boar can be quite violent, can't they, quite aggressive.  Rob: Yeah, they're sort of half breed, half pig, half boar. They're big animals, got a cute little stripey piglets, just like a boar does. But they, you know, they're exponential in their reproduction, so they're  Adam: And and they're around this wood?  Rob: They're here.  Adam: So do they cause a problem with eating or do they nibble on the new trees and stuff?  Rob: Yeah, yeah, well, they sort of rootle, I mean you want boar, because they were here originally. You want boar, like the deer, you want them in sustainable numbers, they're all sleeping now.  Adam: Do they come out at night?  Rob: They only come out at night yeah.  Adam: I'll have to return.  Rob: Yeah. I mean you'd see them if you went up to the top path up there.  Adam: We haven't done a night podcast. I think we should do some bats and.  Rob: You can do bats, if you wait, while you're waiting for the badgers to come out, you can do the bats. There's a few sites around here where you can watch them.  Adam: OK, well maybe  Rob: I'm sure there's other Trust sites where people know.  Adam: Maybe I'll come back.  Rob: One summer when I was doing my bachelor's degree, I was working in Llanelli in like a, just a café just to get some money. I was working with the local girls there, I'd been out surfing in Llangennith on the Gower the day before and I was like just telling her how the seals came in because they chased the mackerel in just beyond the surf line and I was sitting there and the water just boiled with the stench of of fish and mackerel and I looked around and two seals popped up and they were driving the mackerel into the back of the waves to hunt them. I was telling her this and she was like, what, you're telling me there's seals in the water here, in Llanelli, where? I said just in the Gower. Seals? Like seals seals, like live in water? I said there's seals there, yeah, they've always been there, we just don't value what's around us.  Adam: We don't notice it.  Rob: We don't notice because you can't see it, you don't see it, yeah.  Adam: It's interesting, isn't it, Attenborough has done a series recently on the UK and you go, you don't have to go to Africa or Latin America to see these things.  Rob: There you go. I was in West Wales last week in Aberaeron, and you can see bottlenose dolphins. Increasingly under threat there's that number of point but yeah, but they're there. You can see the seals, you can see them all around us, yeah. This is doing well.  Adam: Well, I'm going to have to leave our little trip down the Wye Valley with some rather unexpected chat about seals and bottlenose dolphins and a promise to return one dark night to meet some bats. Until next time, happy wandering.  Thank you for listening to the Woodland Trust Woodland Walks with Adam Shaw. Join us next month, when Adam will be taking another walk in the company of Woodland Trust staff, partners and volunteers. Don't forget to subscribe to the series on iTunes or wherever you're listening to us and do give us a review and a rating. And why not send us a recording of your favourite woodland walk to be included in a future podcast? Keep it to a maximum of five minutes and please tell us what makes your woodland walk special or send us an e-mail with details of your favourite walk and what makes it special to you. Send any audio files to podcast@woodlandtrust.org.uk. We look forward to hearing from you. 

#DoorGrowShow - Property Management Growth
DGS 204: Property Management And Real Estate Technology In 2023 With Joe Edgar

#DoorGrowShow - Property Management Growth

Play Episode Listen Later Jun 7, 2023 39:10


On this week's podcast episode, we brought back a guest we've had on the #DoorGrowShow before, Joe Edgar from Tenant Cloud. Property management growth expert, Jason Hull sits down with Joe Edgar to talk about the many new features that have been added to Tenant Cloud to benefit property managers and what is next to come for the software. You'll Learn... [01:35] An Introduction to Tenant Cloud [06:44] The Different Systems PMs Need [14:11] Integrating Different Property Management Tools [17:36] Tenant Management and Roommates  [27:43] Accessing and Transferring your Data [31:55] Are Completely Remote Showings the Future? Tweetables “Listings are important because of course, as soon as you have a rental, what do you need? You need a tenant. Nothing worse than vacant property.” “So there's a relationship in all of those that you really have to harbor and that's where making sure you're connected to your tenants and you're connected to managing service for them is important because then they will reach out to you to buy one where if it's a bad experience, they won't.” “You're busy doing all this work, but then actually going back and making sure you're making money at what you're doing is often the last thing they look at.” “You have two choices in life... You can be reactive or you can be proactive. ” Resources DoorGrow and Scale Mastermind DoorGrow Academy DoorGrow on YouTube DoorGrowClub DoorGrowLive TalkRoute Referral Link Transcript [00:00:00] Joe: Because that's one of the hard parts is you're busy doing all this work, but then actually going back and making sure you're making money at what you're doing is often the last thing they look at. They worry about because they're trying to provide to customers, their owners. Yeah. And the tenants, good quality customer support. And so that's where it's the hard challenge and making sure they're all connected in a nice, easy way.  [00:00:20] Jason: All right, we are live. Welcome DoorGrow Hackers to the DoorGrow show. If you are a property management entrepreneur that wants to add doors, make a difference, increase revenue, help others, impact lives, and you're interested in growing in business and life, and you are open to doing things a bit differently, then you are a DoorGrow hacker. DoorGrow hackers love the opportunities, daily variety, unique challenges, and freedom that property management brings. Many in real estate think you're crazy for doing it. You think they're crazy for not because you realize that property management is the ultimate high trust gateway to real estate deals, relationships, and residual income. At DoorGrow, we are on a mission to transform property management business owners and their businesses. We want to transform the industry, eliminate the bs, build awareness, change perception, expand the market, and help the best property management entrepreneurs win. I'm your host, property management growth expert, Jason Hull the founder and CEO of DoorGrow. Now let's get into the show.  [00:01:25] All right, so my guest today is Joe Edgar. And Joe, it's been a while since we've had you on the show here, so.  [00:01:33] Joe: Yeah, definitely has. Glad to be here.  [00:01:35] Jason: So Joe started a company called Tenant Cloud. And today you're going to be talking about property management and real estate technology in 2023. So, Bring us up to date, man.  [00:01:47] Joe: Yeah, it has been a while since we first launched, I think back in 2016 was a real focus on the DIY landlord and trying to support that general group. And as it really has grown into-- our biggest following is now really property managers focused in the single family rental space. So, that distinction has come down to really the difference in logistics. And so, as many know in property management, if you're managing multi-family, then you usually have somebody on site, but if you're managing single family rentals, there's just too many properties. And so Yeah. Ends up being a logistical nightmare. And so that's really where we end up fine tuning our solution is all around the logistics, managing those single family rentals and helping you grow your business.  [00:02:30] Jason: Cool. So what have you been up to since then? I'm sure you've made some updates to Tenant Cloud.  [00:02:36] Joe: Yeah, there have been a lot of updates especially since then. I think some of the best things that really help a property management company really get going is the fact that you can sign up for Tenant Cloud and in just a couple of minutes for free. There are some paid solutions, but just on the basis of free, you can set up your own company website. From your company website, you can have its own listing portal. So all of your listings that you're going to manage, it can have applications and so tenants can find you. They can apply for a rental. You can manage that application, you can send it back for more information. You can charge a management fee or not. Lots of customization inside of there. You could have multiple bank accounts. If you have different owners, you can, send an agreement to an owner have them sign it. They have their own portal so they can own their own reports. And then of course, the more traditional stuff on top of that, which is, just managing the property itself. Everything from maintenance to just general communication with your tenants. And so all those things kind of fit in there. I think the most fun thing that we have that really brings a lot of value worth mentioning is if you follow the industry, we're starting to see these silos and vertical step up. I think the biggest mover now is co-star who is looking to buy move.com, which is realtor.com. And so they're really trying to have that niche. And then Zillow of course, exists. And then you have Redfin who's putting together a lot of other sites. And those are all around listings. And so listings are important because of course, as soon as you have a rental, what do you need? You need a tenant. Nothing worse than vacant property. So, we built this thing. We have so many tenants that come to us. Our affiliate sites, College Pads, and Rentler, are all really bringing us lots and lots of leads.  [00:04:25] So having all of these leads, we decided to go the extra mile. We said, what if we offered all of them the ability to basically say what it is they're looking for. And by telling us what they're looking for, we can then match them with all of the inventory of vacancies. And so we take users who are already, they came to us for the purpose of trying to find a home. And we have all these property managers who are trying to find tenants into their rentals. So we built this thing called premium leads, and really you could think of it as like Tinder for tenants. Okay. And so what happens is the tenant will put on what they're looking for. They're like, "I want Southwest Austin. I'm looking for, $2,500 a month, a two bedroom, one bath, a yard, a fence." Say the general things they're looking for. And the second you turn on premium leads as a landlord, it will take all of your properties, even if they're not listed, it'll have them already matched, but they won't see it. The tenant won't see it until you actually make it live by listing it. And immediately all of those show up for the property manager. So the second you turn on premium leads, you have potentially, like, I love turning it on because it's such a nice feeling to like list a property, immediately you have like 15 leads, you're like, "That's great," and you invite them to apply. So you just invite them to apply and that sends real invites to those tenants. So those tenants now got a personal invite from you and you can go through, the tenant goes through it. If they like the property, they can swipe left and ask more questions. They can fill out a rental application, maybe schedule a showing, anything like that. Or if they don't like it, they swipe left and they move on their way.  [00:06:03] Jason: So they'll swipe right if they like it. Yep. And left if they don't, and then it's swipe left if they don't. Got it.  [00:06:08] Joe: Yeah. So it's a very non-abrasive way to approach all of these different tenants looking for leads. And so it now is the largest lead generator inside of our solution. So we integrate with Zillow, we integrate with realtor.com, many of the Redfin solutions, but it now outperforms all of them. It produced about 60% of the leads on Tenant Cloud. Wow. So it's a really nice way to go and find and fill your tenants. So again, everything, it's really about bringing all of those things that you have to property management into one easy solution at a low cost, help you save time, grow your business.    [00:06:44] Jason: So if somebody already is like knee deep in another property management software, can they still use the premium leads? [00:06:50] Joe: Oh yeah, for sure. It's easy. I mean, that's what's nice is it's segmented off. We have a lot of property managers who do multi-family and multi-family is a different beast. We have a lot who hack us and use us for like multi-family, but as I said, the single family rentals has a logistics problem and I can explain why we're so different in that space. Sure. But when you get into multi-family we know where the space and we know the industry. And so if you're in multi-family more traditionally after one of those larger property management solutions, and most of that is in part because multi-family is 95% owned by institutional investors. And institutional investors need data. These large rates. And so we're not designed for that big stuff. We're really out to help smaller property managers kind of, grow their business and not answer to large rates. So the way the data flows separates us pretty substantially. And so that's what would make a unique thing. So on the logistics problem you have, maybe you have one maintenance person, but a lot don't. And so the key feature is if you were a property manager, you already know, it's like how many property managers can manage how many units? You have the math and it's generally around a hundred units per person.  [00:08:04] And you can get some that are starting to get more efficient. They're getting into like duplexes and triplexes where they get down to, maybe the 85 to one. But normally about a hundred. And a hundred's a good number because if you're also a broker, then you also know I'm managing these properties because I know about 5% of them will bring me additional business annually. Either my clients are selling or my clients are buying, or my tenants are looking to buy. Right. So there's a relationship in all of those that you really have to harbor and that's where making sure you're connected to your tenants and you're connected to managing service for them is important because then they will reach out to you to buy one where if it's a bad experience, they won't. [00:08:43] And so having a nice solution on their phone that they can easily sign a lease, they filled out their application, they can pay their rent, they can view everything that's in their power, is great. Then in addition, if anything happens, they can go to their phone. And there's four simple questions that breaks 1500 problems with a home down into four simple questions that are icon based. And so they select them and they can take a picture and a video and it goes direct to the property manager. And the property manager now has the choice because we can't say, not all tenants are accurate. Not all tenants know how to fix anything. And so, whatever they say the problem is, it could be something different. And so I've had this on my own experience where it's like, I find out the roof keeps leaking, but I'm like, you realize it hasn't rained in weeks. And you find out it's the air conditioner. It's like catching condensation. And so you know what they say the problem is and what it actually is is not always the case. And so it's nice. You get the maintenance request, you have a picture, you have a video, you have a small explanation if they wanted to add it to it. And if you have a service professional that you work with, you can send it to them or you can change the category. You can schedule it from there. [00:09:50] And once you assign it to them, they can now communicate directly with the tenant, but you are privy to all the messages. And now they can schedule this outside of it. Or you can plan for them, but they can schedule outside of you having to do it constantly. Now, that's one method. It can also be if you're in a property management office there's one here in Austin I just talked to. They have 50 rentals, so they're growing theirs. They're managing on behalf of about 10 owners. And so that's not big enough on their level to have a maintenance person on staff. And so they contract everything. And so what's nice is inside of theirs, they can actually use it inside the maintenance request. They can get a quote and that quote goes out to all service professionals in the local area that can then send in bids on behalf of that. And you can run it in two different flows. You can say, "okay, well I'll make the decision," depending on what you have with the owner. Or you can send the different quotes to the owner to pick one of them. [00:10:44] And so there's lots of different ways to manage that. But now once you connect them, you can then do the same thing. You're like, okay, I like your bid. You do it, I'll schedule you. You're in. And then you have privy. And then there's a way the tenant can say, well, it's not done exactly. And they say it is done. So you kind of do a lot before you actually have to go on site. I mean, when I was doing property management, the worst thing was most of the site visits are not what they said. And they're things like, "the lights are out," and it's because the light bulb is burned up. It's like, well, that's not, you just wasted a lot of time for me to drive across town. There's two hours of wasted time to do this. And so having those logistics are great. That's the heart of Tenant Cloud. But then on top of that, it's like, okay, well the logistic problem and getting on the phone and scheduling is tough. Then I got to account for all this. [00:11:30] And accounting is the next piece. So when the tenant goes in and enters that, we have those categories of which they're selecting by icon based for maintenance requests. They're matched with both revenue and expenditure and capital expenditure categories inside the accounting automatically. And then in addition, you can keep track of any assets. And by that I mean if you have a refrigerator or an oven, you can store all those in. So if a maintenance request comes, you can actually look up any piece of equipment like a fridge and it can tell you, show you all the maintenance requests it's had. It'll find correlations like things. You're replacing this motor every year so you can make those decisions on like, we probably should just get a new fridge. But then inside of that, all of those are matched with the IRS 1040 Schedule E categories. And so what is great is you as a property manager who is going to be doing your 1099s at the end of the year. Your contractors, if you were to bid it inside the system, you can pay them and they can invoice you. So if it's someone you don't know, then of course they'll create an invoice for you after the work. But it's someone you do know and they just, you're figuring out what the bill is on the side. You can message them on the side or directly in the ticket, and then you can pay them directly. What's nice is when it comes to accounting time, your owners have a very clean, simple 1040 Schedule E already done for them that has all their costs laid out, that you didn't have to go back and do anything extra, has all the receipts matched to it. Each one goes all the way down. And each property manager, as a refer to, are these "additional opportunities." There's lots of ways, depending on how you have a relationship with your owner to set up those additional opportunities. [00:13:06] For example, you could just charge like, I have a 10% fee on top of any cost for maintenance I do. And so that would be added into maintenance requests. So that's already being done. Or you could have it, we have a flat rate that we charge for tenants. I mean there's lots of ways to set it up for your property management company to make sure they're accounting for their revenue as well. Because that's one of the hard parts is you're busy doing all this work, but then actually going back and making sure you're making money at what you're doing is often the last thing they look at. They worry about because they're trying to provide to customers, their owners. Yeah. And the tenants, good quality customer support. And so that's where it's the hard challenge and making sure they're all connected in a nice, easy way. And everything kind of flows in a simple recurring way that is predictable and you know for sure how it's going to work is an important part of growing your business. And so then that passes through to the owners can fully see their reports. You have your reports for your 1099s and all of it happened behind the scenes without you really looking at it. So the heart of it is to be kind of a logistics and accountant, a back office person to help you, a small property management company kind of grow. [00:14:10] Jason: Cool. Cool. So the maintenance coordination piece, solving that logistics challenge, can that be used by companies that are also using another property management software already?  [00:14:20] Joe: Yeah. Sorry, I kind of went on a-- I digress. That was your question before. You can kind of go on and use whatever piece you want. So we have lots of larger ones who are doing multi-family and they have found that they get all our leads at Tenant Cloud. So they still use their traditional property management software to answer to the beast above them for accounting. Yeah. But they get all their leads and manage all their rental applications through Tenant Cloud. And for their business, they get to keep the application fee. And so it's nice because they can set all that up and so they run everything there. So all the applications you can do a background check, you can do a full one, you can do a partial one. So there's lots of different variations you can do in there. And so it's nice for them because they manage everything on there. Once they actually do a lease, then they actually put them in their other property management software and do it on there. And then some are slowly kind of converting into Tenant Cloud as it does more for them. As they see, they're like, well, why don't we just move here? But in a lot of the wreaths they don't. But on slower ones, yeah, you can manage just leads.  [00:15:15] We have a really nice CRM tool built in. And so because we give you a free website and then we distribute your listing to so many different places, we set you up on a unique text number. You don't know what it is, it doesn't matter to you, but what's great is it does matter to someone looking at your rental. And so to find your listing on any site, and then, if I have a rental application, that's an easy one. I'll fill out the application that goes through the system and you get a nice, clean application. You can request more information, whatever you want to do. But when it's just a lead, which is how most of them come in. They'll send you a message and they can do it via text straight from the listing. They hit a number, they send you a text, and you can respond to them via text, right in your Tenant Cloud account. And so that's where you can take all the different messengers, have it in one place, nice and simple track notes, maybe it's, maybe the one they're looking for is not available now and you want to use it for later, so you just tag it. [00:16:08] But yeah, there's different parts of Tenant Cloud that you can use for just different parts of your business, depending on what you're doing.  [00:16:13] Jason: So what you're saying is on the tenant side, there's basically CRM for tenant leads and that you can manage that communication and you can do it through text message because the listings have that number on it. Exactly. And then on the maintenance coordination thing, which also sounded really cool that piece can be used standalone as well, is what you're saying?  [00:16:31] Joe: Yep. Correct. Okay. Each one is really segmented Now if you use them altogether, of course, they just make life easier, but sure. But yeah, you really can use each little function separately. Now, if you wanted to come from another software, you can easily upload your data. So we have tools for that. And if you ever wanted to take Tenant Cloud data, this is one of the things, it has been our company's motto from the beginning, that we are not making business on holding your data randsom. And so you can easily take your data at any time you want and use it and flow it anywhere. And so some of those have been good. We have a QuickBooks integration, so that makes it seamless. But we have others who use some other unique accounting software, and so we've made that so you can just pull your data and put it in anything else that you want as well. So there's lots of reasons to have that, but that's an important thing before you use one, you're like, I want to know that I can get all my data out of it. because you're uploading images. Yeah, you're uploading tenant information. I mean, it ends up becoming your record retention for a lot of stuff that you're doing on a legal basis. And so it's important to have all that, but to also have access to where you can get rid of it on a digital form, but store it somewhere still. [00:17:36] Jason: So if we were to look at the Tenant Cloud ecosystem or, system as a whole, we've got, the tenant lead sort of CRM in communication for taking care of the vacancy situation. We've got the maintenance coordination piece, we've got the accounting piece you've mentioned. What other major?  [00:17:53] Joe: So there's tenant management. Tenant management is just one where you want to have all your information about each tenant. It may flow from the application but then once you have it, you want to message them. And so you could have tenants all on one street and you need to message them and say, "Hey, street clean, street sweeping on this date. So you can message a part of them. Or you may have all your tenants at large, you have a policy change you're going to do, or you may have two cities and you say, okay, in this city this is changing. And so just helping manage all of those tenants and having a place to keep both private and information that you share with the tenant is really important. [00:18:29] So there are things like, for instance, if you enter an accounting or you send us something, it's nice to know that it's live. And it's also nice to know that they have seen it. And so when you have a message, you can see for sure that you see, as we all know a hard part, but a reality of property management is that you will end up in a court, every so often with a tenant. And so making sure you have an easy place to account for all your timing and what you did with a maintenance request. And all of your messages in regards to just your relationship in general in one place is really important. And so to be able to pull it out and show dates and to be able to show what was seen and what wasn't seen is really important. A nice, easy process to kind of print it out and, bring it to court. As you will know, it's a huge part. And unfortunately that's part of the business, but it is one that you really, if you're going to grow your business, it's an important part to have, early. So there's tenant management. [00:19:20] We have a whole calendar scheduling piece, and that's really important because it's the next piece that I'll talk about is as you grow your property management business, in the beginning it's usually just you. And that's fantastic because that is definitely where you're like, I need to grow this. And then you bring out, and sometimes it's a significant other. That's fantastic if you can pull that off. Right. And so there's two of you, right? And often they'll use the same logins, right? Because they're like, there's two of us. So we're talk, we see each other enough that we'll do stuff. But once you have that first real hire, it's a different business. Because now you really don't have the same, it's a professional relationship and you don't have that same thing where you're like, we do need to, like who's doing what. Yeah. And so even though I say it's this calendar function, we have a team feature. You can go in and add team members and you can change all the settings for each team member. [00:20:10] And so it could be like it, you can assign them specific properties and so they're only able to see stuff on properties. You could limit them from accounting, you could limit them from certain settings. And so there's lots of ways, depending on what the team member is. For instance, you could have accountant, you could have a property manager just doing marketing, and you could have someone who, does maintenance. So just depending on what it is. But what's great about your team function is now you have a way to communicate with them. So very easily in a chat you can press a hash sign and find any of your properties in a message, and it will pull that up and then have a link to it. And then at sign you can find any one of your team members. And from a message, you can make that a task. And so all of a sudden tasks are running for everybody. And as the master account, you can see all the tasks going through on the calendar, and then you can message, each other about different tenants or any type of messaging that goes on there. And so you'll find, and then the system itself will self-generate tasks for you. For example, ones you should, they're obvious, that is like, all right, I have a lease. I want to know two months in advance before this lease expires.  [00:21:12] Tell me, cause I need to renew it. It could be, I talked to this tenant and they're going to schedule something, they send a message and from that message, they're going to pay rent two days late. But I get it. And so boom, you have a task, you're going to have those reminders come up. And so that's really that angle from trying to get the system knows a lot of the things that you automatically need to do. So they're already in there. For instance, every six months you need to check smoke detectors you need to do servicing before winter. There's cleanup. So all those things can be automatic inside of that calendar, but then really running inside the team function really brings it to work because now you mix that with your maintenance team or whether they're outside or not, but it's assigning them and it really becomes a magic. So we built this kanban board where you can manage a lot of those tasks, especially when you get more than a hundred properties and you're trying to grow your business. You'll know exactly what I'm talking about. You're just like, "ah, I forgot." So you have two choices in life. When it gets that big, you can be reactive. Or you can be proactive. So we have tried to build a system to help you be proactive. And that's, it's telling you before you think about it. So then you're like, "oh yeah, I totally forgot about it." I do need to schedule you that. You move it into the next kanban board, you assign it to this person, run it there. And so it's really a great way for a team to come together and trying to do property management. And so that's one of the features. There's quite a few features, but another one I'll mention that's worth noting, that makes us different than other solutions as well is when you go down to single family rentals, a lot don't know-- many in this area will know-- but universities are very unique in that universities have a higher density of smaller property managers managing around the university than non universities. And so if you get out away from the universities, you're into these big apartment developments and so they're slightly different. And you get into universities and there's quite a few property managers that just service around that area.  [00:23:01] And so one of the struggles for the property managers is always how do they deal with roommates? And you have so many different ways to deal with a roommate. You could take one rental and I could rent out every room individually, or I could rent out the whole house and just say, okay, well I'm going to, I'll rent out the house to all of you, but each one of you are going to pay a specific amount. Or I can rent out the whole house, and I'm going to say, all right, I don't know. I don't care. You're all on the lease. However you pay, just get me the money. And so those are all very different structurally in how you set something up and it all the way down from receiving an application, vetting them, moving them in to sign a lease, and moving them out, holding deposits and the ongoing relationship.  [00:23:42] They're all different. And so what's nice is we really have thought through a lot of those, and they're not just on roommates. So we're starting to see this happen now in older care centers. And so, assisted living of sorts, they are now doing a lot of roommate features. And so these are older care centers that are using us for property management software. However, they usually the tenants are self-sustaining, so they don't need a nurse. They're just living inside of a center. And so the same kind of features. And so a lot of this roommate functionality is taken off and then really during 2020, like, when Covid kind of happened, it wasn't as popular. It was a feature that we had built in and we we thought it was really aimed for the college universities as college pads, one of our partners. And so we had built that in, but really starting last year. And my own take is that real estate went so expensive that you're seeing a lot of roommates pop in. And so a lot of people are procrastinating moving into their own place. Rentals are taking off and people are moving in together. So now you see this over pouring. So the last report realtor.com did it. However it follows what Wall Street Journal did. That theirs was, there are 2 million households formed again last year, which means we are missing 6.5 million homes in the marketplace based on them. And if we are missing 6.5 million and things are so expensive, you are saying we have no choice that roommates are just over pouring into everyone's lives. So what they didn't think was is now a single family home, an apartment, everyone is now dealing with roommates and it's created software problems everywhere. [00:25:24] One that we have already solved and thought through. That's a great feature because how you rent them matters. It's, it changes the entire relationship from being a customer support frustration. Like if they're each paying a separate amount and you're doing rooms, but you're treating it as a solution where they're all in the same one, you'll just mess up all, for everyone. And so being able to manage those on so many different levels is really nice because you can have separate leases. One lease that they all sign and they all share their invoice, where as soon as one pays all the rest of them see it and they can figure out how to pay. Or you can just say each one of you're paying and then somebody's else is out and they're done. Or you going to move one in and move mountains, move the deposit. So it becomes such a problem that it's one to be noted. But now in today's industry, were roommate renting is just a commonplace, so that's a feature worth talking about.  [00:26:11] Jason: Very cool. Yeah. Cool. All right, so we've got the maintenance coordination, the accounting, the CRM for tenant leads, tenant management and communication, you've got the calendar scheduling, which sounds like kind of team communication, and then you've got the Roommates functionality, so,  [00:26:29] Joe: so we have a whole document. So anything you can manage all your, so we have both PDF and from scratch. So if you want to build an agreement yourself, you can drop in, easy pop in auto fills on the template, or you can just add a PDF and build the template. We also have them available for every state and county if they're divided. So lots of stuff to do E-signature and create your own lease agreements and manage kind of all that in-house as well. And then notices, So you can build a template notice, send it to a tenant when you know, rent's due or something like that. [00:26:58] Jason: Nice. Very cool. Yeah. Well, sounds like you guys have been busy so.  [00:27:03] Joe: Very busy. Yeah, it's been fun. Yeah.  [00:27:06] Jason: Very cool. Well, yeah, I can see how this would stand out from some of the property management software. Now you had mentioned that people can migrate from their existing software. So how difficult, because this is usually really painful for people, Yeah, to transition. I've seen people go from AppFolio to Buildium or AppFolio to Rent Manager or switching to Propertyware or Propertyware to AppFolio. Like, so how difficult or easy is it to switch from one of these to Tenant cloud and are there some that are easier than others? [00:27:42] Joe: No. So we've tried to make it as easy as possible. So what we do is we give you a template. So if you go into upload, you can find the upload and then you download a template Excel file. And basically you'll take whatever data you can get. That's the hardest part really isn't so much setting it up in Tenant Cloud. It's more other companies aren't so willing to just give you data. And that's the hardest part is that if you can get the data from them, we give you a template that's really easy added in and once it's in, you're done. Your tenants are set up, all their information is set up. The lease is set up. If you have late fees that are in there, they'll be set up. All of it will be done. Your property will be set up and you'll be live and it'll be working. But it's all, it's really more a problem of like, which software relationship are you trying to get out of? That's a hard one because for us, and we have many that call and like, " well I just want all this!!" And we're like, fortunately Buildium won't give us that data. We can't call them on behalf of you. Yeah. So the only thing we can do is like they can give it to us. Yeah, exactly. So that's the hardest part in getting in, helping people migrate. Is just being able to pull all the information. They spent so much time, putting in another software but on our end, it's really easy to kind of set it up. [00:28:52] And that's the heart of it is because everything is connected. It's helping you do each phase of your life. Because if you ask a property manager, like, what's the hardest part of your job? Well it really depends like one on the season, on the time of the month, and what stage of the property is in. Because if it's vacant, of course it's like, I need a rental, I need leads. I got to find this. But if it's, if they're all rented, well now you're like, oh, I got fridges breaking everywhere. So it just depends on the job. So the software's always set up to help you in all of those sanctions of your life. And so uploading it is really easy because it connects to all of them automatically and you're kind of done. But yeah, again, the hardest part is getting the information. So, yeah, I wish I could say that was really easy, but that's a part we don't usually get to touch. So. Cool.    [00:29:35] Jason: Well, Tenant Cloud sounds pretty cool. I have not heard of too many people using it yet, and so I'm really interested in getting some feedback. That'll be really interesting to see. So it sounds like you guys have really been innovating in the space, so.  [00:29:49] Joe: Yeah, we've been trying to keep it as affordable as possible and get it going. We now have over a hundred thousand active property managers and landlords. Using it and over a million tenants. So it's been fun, but you'll look at how big the market is and there's 15 million DIY landlords and something like 18,000 property managers. And, it's a small slice. [00:30:11] There are many out there still using, Excel or, a back of the notebook to keep track of stuff. So it is more about getting the word out there and let them know that there is a nice, easy solution to use.  [00:30:21] Jason: Yeah. Very cool. So, now if they have a website, like say from us third party website or their own site or whatever are they able to get the rental listings?  [00:30:31] Oh, I love that you said that. Yes.  [00:30:32] An embed code to put into their site.  [00:30:34] Joe: Yep. So if they just give us, they can tell us now, I will give you a quick hack so there's a quick hack, but then we can also help them do it. And so the quick hack is we give you a free site and if you have a listing link, so if you just relink that listing of yours and use Tenant Cloud, it'll automatically go there because it's the relink. Right? However we can help you customize it. So the free one we give you is going to be an extension of Tenant Cloud, right? Yeah, it's our free version. But if you want us to host it, we do have to be given the credentials, but we can host it and then you'll have an active live site, and then there are parts of it you can turn off or turn on. So you could use, if you've already built one, you say, I want to host this, but I still want the listings on my native site. We can do that for you. We have quite a few that do that. So, and the listing functions nice. It gives you a map, it'll show all your rentals. So you have a sub thing that you can click and, see a preview and then you go to the full listing. And then on there is really where the CRM powers because it says, 'do you have a question?' Or it'll be like, 'schedule a tour' or 'fill out an application.' And so each one of those, so if they schedule a tour or have a question that goes right to your CRM. And so that's where you can respond to them how whatever format they want to respond. If they give you email, you can do email. If it's text, you can do text. Or if they create an account, they can talk actually through the Tenant Cloud app. But then of course they've got an application, it forces them to put that behind some closed information just so they're not  [00:31:55] Jason: I'm seeing some-- put it out-- Smart property managers switching from doing one-off showings for every vacancy constantly to doing open house dial. And is that possible using Tenant Cloud?  [00:32:08] Joe: You can schedule them as open house, but what we don't have and that what we want to do, and this really came about from Covid, is we've been working with a company, so it's coming out here in the future, but it's not there. And that is to be able to do remote showings. So the remote showings are slightly different than open house. What it is soon you'll be able to have where you set up, it's a door lock, it gives a specific code to a phone, and then there are two cameras set up in it, wifi, and then so you have control of all the doors and you have a camera view. And so someone can go in and quickly get a text number that's going to be live for 10 minutes and you can literally watch them. And give them a short tour before they go out and you can secure the place back up and know whether any new windows were left open or any doors. And so you like, do those. So that's been more of the answer we've done just because it is, if you do the open house it there, there's a lot of things that require onsite. So it's like, how can we help property managers again, with the logistics problem. Yeah. And logistics problem's the hard one because you go, you list the property. And half the problem is like only 50% of the people show up showings and you drove a long way to get there and you're like, Ugh. And so yes, to get as many people at a specific time is great. And so you can kind of set that up with your calendar. That's easy. But the real heart of it is like, how can I show this and actually just be right here on my computer? So I could do five showings at the exact same time from my laptop. And that's really the heart of what we're trying to get to, is that you should be able to do that during business hours, know that it's locked up and know who it is that went into the rental. And so that's part of it. They have to get verified in order to get a code. And so they're using their phone as part of that process. There's a picture and an id check as well. And so they're verifying themselves, which just helps keep honest people honest when they're setting up and doing a rental. So you're kind of doing a bit of vetting as you set some different things up. So, so that's more of where we're trying to go, is trying to get more remote.  [00:34:04] Jason: Cool. Cool stuff. So, well, I think everybody should go check it out. How can people get in touch with you or learn more about Tenant Cloud? [00:34:13] Joe: Yeah, I'm always easiest on Twitter, so, @Joe_Edgar_ , always accessible there. Tenant Cloud's the sites, t e n a n t c l o u d TenantCloud.com. And you can find us on all the social media. But yeah, definitely hope to check it out. It's, like I said, we have a base version that's free and then, other features that come on top of that. You can set up your bank account. Receive applications, list your property, move in a tenant, and collect rent online, and that's all free.  [00:34:42] Jason: So, Cool. Very cool. Yeah, I think that was the first episode we did with you. You, we were talking about how I think software for property managers will be free someday. So.  [00:34:51] Joe: Yes. I honestly think it's going to go that more and more features are coming to where it's like, the more of your business isn't there. Like some of the stuff I hope we get to, and I'll mention this just because more of the viewers are property managers, but if you remember that I talked about the maintenance request function and getting a bid. Well, I'm no stranger to property management. I own a couple of property management companies. And built the software off of that. And I know in our, one of them is fairly large, and so we have a maintenance crew, we have a turning crew, we have a painting crew. We now even have a a cabinet crew. We go through so many cabinets. We're like, we just need to build these ourselves. And so we have all these different crews and they're just doing us. But one of the biggest costs is the downtime. And so for them it's like each one of them is a side business. And so it's like we've been trying to like think of ways there, like how can we grow this? And I know I'm not alone. And so what we're hoping to get to is that all the property managers who use us are. They'll soon have a little flip that comes up that they can turn on to now get leads. And so they will be part of the ones like saying, Hey, we have a service that does carpet cleaning. And so inside of my normal property management, now I can actually go and service people outside of the properties I manage if I want to look to expand some of the businesses that I've now created. [00:36:10] And so, and it's unique because property management is different. Like if I go and if I say to a property manager, Hey I have a property I need to do a turn on. They know exactly what that means. And there's not just one contractor outside of property management that could do that. And so property managers are in a unique space where they're like, well, I know exactly what you need. I need to go do an inspection. I need to check the carpets, I need to check the walls. There's probably going to be some painting. I got to do a little plumbing. I may even have to do some hvac, I'm going to have to do a little landscaping. And all of that's tied into it and owning a property manager has built out some of the functions to be able to service that. It's not all the property management companies, but quite a few of them will do it as they grow, just because they're like, well, we're now in-house. We're doing enough of them. I've got one lawn mowing guy that's running or something. So, so it's a nice feature that we hope to really bring out to embrace our own customers, helping them now find and grow their business in other unique ways they never thought about. So.  [00:37:05] Jason: Awesome. Very cool. Well, Joe, thanks for being on the show. Appreciate you being here.  [00:37:10] Joe: Oh, my pleasure. Thanks.  [00:37:11] Jason: All right, so check out tenantcloud.com. Sounds like it's really cool software. I'm really curious to get your feedback on how it compares to whatever else you've been using or what you're using for those that are doing research lately. So, let us know in our Facebook group. So join our free community that's available to property management entrepreneurs on Facebook. It is DoorGrow Club. The DoorGrow Club. You can get to that by going to DoorGrowclub.com and it will redirect you to our Facebook group. Answer the questions and join the group and we will give you some free gifts as well and that can benefit your property management business. And, check us out at DoorGrow.com. We are the world's leading property management coaching mastermind. We are helping grow and scale property management companies rapidly. We would love to help you grow and scale your business, figure out operations, make your day-to-day easier, and take some vacations, people.  [00:38:05] Jason Hull: You just listened to the #DoorGrowShow. We are building a community of the savviest property management entrepreneurs on the planet in the DoorGrowClub. Join your fellow DoorGrow Hackers at doorgrowclub.com. Listen, everyone is doing the same stuff. SEO, PPC, pay-per-lead content, social direct mail, and they still struggle to grow!  [00:38:32] At DoorGrow, we solve your biggest challenge: getting deals and growing your business. Find out more at doorgrow.com. Find any show notes or links from today's episode on our blog doorgrow.com, and to get notified of future events and news subscribe to our newsletter at doorgrow.com/subscribe. Until next time, take what you learn and start DoorGrow Hacking your business and your life.

Portals of Perception
037 - A Metamodern Solarpunk Regenerative Vision

Portals of Perception

Play Episode Listen Later Dec 9, 2022 93:36


At Portals we're seeing more and more that emerging and potentially world - changing ideas and perceptions are arising at points all over the planet. In this conversation we speak with Joe Lightfoot , a creative and dynamic thinker, writer ( A Collective Blooming ) and podcaster who is opening new pathways toward creating communities and grass roots engagement that he believes can radically transform our inner and outer worlds. Joe describes the Liminal Web, an emerging digital ecosystem that includes the people, platforms and communities pioneering visions that seek deep systems change. In this he traces the impulse for "radical belonging" among millennials seekin g to give rise to new pods and meta - tribes as an alternative to the isolation and loneliness felt in the absence of community in the postmodern, technological age. Joe re - imagines the big systems – economics, agriculture, politics – that would be par t of a truly regenerative planetary culture. A transition not based in the destruction of the modern world, but rather prepared to harvest the best to nourish an evolutionary process. There also is a shift in Joe's thinking to the inner journey of transfor mation required before a person might be able to engage fully with larger world and systems changes. Join Aviv Shahar and Joe Lightfoot in this expansive and fascinating exploration. For information about upcoming special events visit our events page. TWEETABLE QUOTES “Suffering can be a really amazing teacher and guide because you just don't get to give up. I just had to keep going deeper and deeper for years.” (Joe)“So what comes after postmo dernism is a fascinating question. And one idea is metamodernism where we kind of integrate the wisdom of modernism and postmodernism, and we oscillate and move between the two to synthesize that.” (Joe)“I think we need to be compassionate and understand ing and students of history and sociology to make sense of how we ended up where we are now. And this idea of loving the system while you deconstruct it I think is really potent and really powerful because, if you can understand the drivers and the forces that have led us where we are, you can make better sense of how to change that.” (Joe)“What I'm seeing is that the outer work really is dependent on how much of the inner work we've done.” (Joe)“I boil it down to this: Until we can create the right vib es together, I don't think we're go ing to be able to create any kind of future that we're imagining.” (Joe)“We need to have fun while we're doing what we're doing or it's not going to last, and it's not going to be worth doing.” (Joe)“I've been completely drunk on the highs of connection, and love, and togetherness. And I've watched these contexts heal us in ways that I wouldn't have thought possible. And it allows us to get to the heart of our inner stories, and ease up, and let go of a lot of the weight that we're holding. That, for me, is a pathway forward.” (Joe)“Trust the process. There seems to be these inherent and beautiful natural unfoldings to our journey that, if you listen to the inner voice that's directing you towards wh at you're passionate about, and you just keep moving towards that, naturally over time you will gather the experiences that will lead you on the path you need to go down. And it's a slightly unsatisfying answer because it's what a lot of the old sages say. But if you just let go, the path emerges before you. And all you need to do is follow your bliss.” (Joe)RESOURCES MENTIONED Portals of Perception WebsiteAviv's LinkedIn Aviv's TwitterAviv's Websitehttps://www.joelightfoot.org/https://www.joelightfoot.org/acollectiveblooming

Woodland Walks - The Woodland Trust Podcast
7. Avoncliff Wood, Wiltshire

Woodland Walks - The Woodland Trust Podcast

Play Episode Listen Later May 17, 2022 32:01


Lying next to the River Avon just inside the Cotswolds, Avoncliff Wood is no ordinary wood. The site hosts one of the biggest trials in the UK to find biodegradable alternatives to plastic tree guards. As if that wasn't enough, it's also a living laboratory, revealing how ash dieback will really affect nature. Site manager Joe gives us a special behind the scenes tour to learn more. We also meet volunteer wardens Kay and James, and catch up with TV presenter Alice Beer who lives nearby. Don't forget to rate us and subscribe! Learn more about the Woodland Trust at woodlandtrust.org.uk Transcript Voiceover: You are listening to Woodland Walks, a podcast for the Woodland Trust presented by Adam Shaw. We protect and plant trees for people to enjoy, to fight climate change and to help wildlife thrive. Adam: Well, I've changed trains at Bath Spa for what appears to be a very small train which is taking me to Avoncliffe. Now, in fact, the train conductor has told me the platform is so short when I get there only one door is going to open. He came through asking “Is anybody getting off?” and I'm the only one, the only one. Well, I have to tell you, the station here is straight out of a 1930s style Agatha Christie film, that's what it screams to me. Beautiful signs, beautiful flowers, the River Avon just almost next door to the station, a great looking pub and down at the end of the platform one single man who I'm assuming is Joe Middleton with the Woodland Trust, site manager here and the guy who's going to show me around. Joe: So, welcome to Avoncliffe Wood in the Avon Valley just in between Bath and Bradford-on-Avon. We just crossed over the famous Avoncliffe Aqueduct and just followed the River Avon until we hit even Avoncliffe Wood which carpets the side of the valley across this area of the Cotswolds AONB, Area of Outstanding Natural Beauty, right at the southern end of the Cotswold AONB. Adam: There's very little woodlands right here, so what's going on in this first field? Joe: So, we're just at the edge of our woodland creation. So we bought 20 hectares, about 40 football pitches, of ancient woodland – untouched for generations – and to buffer that, to try and expand carbon storage and fight climate change and the ecological decline we're seeing we actually bought another 10 hectares, another 20 football pitches, worth of agricultural fields essentially and meadows which were very intensively grazed and we've planted that up with over 5,000 trees to try and get the next generation of trees in here. Adam: Wow, okay so shall we go through, have a look? Thank you. Joe: So just next to us as you can hear the birds singing away, there are blackbirds, robins and blackcaps in there. There's one acre, here, just on the right-hand side, which was actually planted up 25 years ago by a neighbour. So, the very small one acre square now 25 years later is teeming with you know 30-40 foot birch trees, willows, hazels and hawthorns, full of cherry blossom and hawthorn blossom, and birds nesting, tweeting, and insects buzzing all around us! It's quite rare these days! So hopefully we think everything we planted up here, all 5,000 trees would look like that in 25 years. A proper young woodland. Adam: And you've clearly, I mean, they're not uniformly planted so there's a big patch in the middle which you've got nothing and they seem to be done in clumps, so why have you done it like that? Joe: Do you want to know what that patch in the middle is? That's a sledging lane. Right well so we carried out community consultation when we first bought the woodland. We asked all the locals, we said look there's this really lovely kind of big expanse of fields all around the wood, we want to buy it, we want it to, you know, fight climate change, we want to try and do our bit for wildlife. And they said whatever you do leave us a sledging lane because when it snows here this hill is perfect for tobogganing down. Adam: laughs you see I thought it was going to be for some really technical reason! You need to do that for a very specific reason, I didn't realise it was gonna be sledges. Joe: There are also wide rides, you know, big areas that people can walk through. We've created a really good path network in here as well in some areas and natural regeneration so there are areas unplanted and there are areas purely for tobogganing fun in the middle of snowy winters. Adam: And why not? It's very important. Now, the thing that we can see in this immediate field is a lot of tree guards and well I'm also standing by a little sign which says biodegradable tree shelter. I always call them tree guards, but this was called tree shelter. Now that is not by coincidence. The tree guards are a huge issue, aren't they? Joe: Yeah, I mean with governments pledging to plant millions if not globally billions of trees to fight climate, you know hold onto carbon, stop floods, we have to be able to do it without using oil-based plastics. For the last 35 years people have just, every tree that's gone in you know, not every one, but most trees that've gone in have been planted with a giant plastic tree guard which doesn't biodegrade, it litters, it causes microplastics, and people… Adam: And are they reusable those plastic guards? Joe: They are to a certain degree, they're not easy to recycle, there are some better recycling schemes now just starting. But actually, probably one in three are reusable. But a lot of places are too far to go and get them, people don't bother they get left and derelict and are expensive to go and collect every single one, especially when you're planting hundreds of thousands. So the biodegradable alternative is the absolute key. Find something that naturally, you know, biodegrades away back into the soil, doesn't harm anything, it doesn't use oil. Adam: Right, I'm just going to go up to… So, this is a biodegradable one? Joe: Exactly. Adam: It looks sort of yellowish and quite canvas-like but it's very it's very firm, it doesn't feel, I mean that feels a sturdy old thing this. Joe: Yeah so, we've got 5,000 trees we put in. We are using some old recycled plastic ones, so we've been given a few, but actually we've got 16 different types of biodegradable alternatives to plastic here. So, they range from cardboard, you know, made from paper or mulch to biodegradable plastics, which the jury is out on at the moment, to actually resins and oils from things like cashew nut shells and pine resin. We've got a train coming past us! Train noise Two and a half years ago, when we planted the 5,000 trees in all these biodegradable guards, we launched something called Big Climate Fightback, a big Woodland Trust campaign to bring people out to help plant trees and do their bit. And actually, we ended up with over 250 people arriving one Saturday – spades in hand – on the trains in all the train stations. And the people in Bath, and Bristol and Bradford-on-Avon must have thought “what on earth is going on?”, with over 250 people arriving with spades on the platforms. And they came in here, they planted trees en masse – school kids, families, local groups. Everyone came here to try and plant trees and with that we, you know, told people about the problem of plastics and we've basically now got one of the biggest sites in the UK for trialling an alternative to plastic – to try and protect these trees so they get to five, seven years to get to a good height where they're no longer susceptible to browsing by deer, by rabbits, by voles, which is the main reason the shelters and guards are here to protect them. Adam: And correct me if I'm wrong but there is a sort of school of thought saying well don't use any guards. I mean it's now sort of established practice that you've got to use a guard otherwise the tree won't survive, but there is this sort of vague thought we never used to use guards in the distant past, so why have we suddenly got obsessed with them? Joe: I mean deer numbers are higher than they've ever been, it's a huge amount of browsing by deer with no natural predators, so it's complicated, that is the simplest answer, but putting up a giant 6-foot fence is probably you know the other solution which is in a lot of cases, depending on size, it can be much more economic, more practical. Very small areas – probably not massive areas, but medium sized – deer fencing is probably the answer, but then you've still got rabbits and voles you've got to fence out. So, doing nothing, over-planting, natural regeneration – we've got an area if you look up to the edge of the woodland we've left the buffer zone of about 20-30 metres around lots of this woodland, all around it, with nothing, we've just fenced it off and we're just going to allow the woodland to expand – every one of those berries and those nuts and seeds that drops into the ground will hopefully just have a, you know, wild natural generation. Like Knepp with a huge rewilding – that hope of what happens there doesn't happen as easily here but can take a long time. Hopefully that will establish woodland itself, but it may take 50 years. At the moment we've got a climate emergency on us and amongst us, so we have to do something now so planting trees is a very good quick solution. Adam: A huge issue because if we are planting for ecological reasons what we don't want to do is every tree comes with its own polluting plastic. I mean that's not the future. So, the answer to that question may well lie in the thousands of experiments you're carrying out in this field we're standing in. Joe: Absolutely. Adam: Right, well I've stopped us walking. We better… I better get my steps in. So, let's carry on. Where are we heading to now? Joe: So, we're gonna go and find our two volunteer wardens in a minute. Adam: So, we've got two volunteers hard at work. I can see just up the hill a bit. Joe: So, this is James and Kay who are both our two volunteer wardens. They've been working now replacing broken, rotted, fallen biodegradable tree guards, replacing the trees as they die as well, and these two have been working hard to help keep an eye on them for the last few years for us. Adam: It's got them hard at work! Joe: They are incredibly hard at work. Hey guys how you doing? Kay and James: Alright? Hi! Hello. Adam: They do have you hard at work! So Kay and James, so first of all before we get to what you're actually doing, why have you been doing it? What's your interest? Why did you volunteer to do all of this? Kay: Well, you've been a volun… a member of the Woodland Trust for about 25 years. James: Well, it's about 35 years now. Kay: Since this is really on our doorstep, this is a perfect opportunity to get really involved with the Woodland Trust. Adam: James, I mean, you've been a Woodland Trust member for a very long time. And, ah the debate around trees has changed enormously. Hasn't it? James: It has, and I am glad that people have suddenly valued trees. I was in the military but, before that, I was out of Kent, out near Canterbury and my uncle was a farmer with orchards and basically from the earliest days I knew about the trees, the names of trees. The pollards at the end of the field as windbreaks, the various wetland trees down in the floodplains around the Romney Marsh area. But I already had a fascination for the massive oaks, the spectacular deciduous trees on the horizon I think made this this countryside look like it does, so British, and so English, with these gorgeous round shapes, compared to a lot of conifers you see in all the European places I've been to. Adam: Okay, talk me through a bit about what you're actually doing here – I mean, you know, hammer in hand I can see. Kay: Hammer in hand, we're replacing some of the tubes that haven't stood up to the wind and the rain. We found that circular rather than rectangular and… Adam: works, circular works… Kay: circular works, because otherwise if it's square they act as a flag, especially cardboard ones. When they get wet, they just disintegrate – as you can see there's lots of bare sticks around here, so yeah, we're going through and replacing them with circular ones. Adam: Fantastic, now I know that the local community were very involved with the Trust, sort of when the Trust took over and sort of designed this site. Tell me a bit about what the local community feel. Kay: That was a great day. We had two schools frog marched in, and yeah, with their teachers and staff and they planted the whole area, which was lovely – they were naming the trees as they were planting them. I know the whole village got involved with planting 5,000 trees over a progressive few weekends and subsequently James and I have been replanting the failures. Adam: And James I mean very clear how engaged you are with this sort of issue but to tell me about the feelings then of the local community and what they what they felt when Woodland Trust first came here and how involved others are apart from you two. James: So, I'm very pleased that people are actually accepting, on the whole, that their backyard has been filled with trees and shrubs which are growing up for their children's lifetime. Kay: We have had some objections to this, but they haven't given their reason why. I assume it's because it's used when we do get snow, which is very rare, it's the sledging field. The Woodland Trust have kindly left a gap for sledging but then they moan that the grass is too long so you can't please everyone all of the time. Adam: But when it was first thought about, and I think it's really interesting isn't it, that you say the community are largely behind this, but I think if others are listening to you now where they may be talking about a woodland on their doorstep created by the Woodland Trust or their own sort of organisation – I wonder what people's first reaction, what were their concerns and hesitancies that you heard about that may have been overcome? Kay: People don't like change do they? And at the moment it's, yeah, it doesn't look picture perfect with the stakes and the guards on, but you've got to envisage what it will look like in 10-15 years' time. You've only got to look at the hedgerow, which is behind us now, and at this time of year which is beginning of May, it's absolutely gorgeous. The blossom's out, the fresh burst of the leaf is so colourful and vibrant, what's not to like about having a wood on your doorstep? And we were very lucky. Adam: Okay, well brilliant, well thank you very much. Look I don't want to disturb you anymore but that's brilliant. Thank you very much. Kay: Thank you! Adam: So, we're gonna head up now to the ancient woodland. Now this is certainly unique in any of the Woodland Trust sites I've been to, because normally the Trust actively encourages people to come in, but this is the only site I've been to where the ancient woodland bit you stop people from coming. Oh, look this is… Joe: This is our nifty little fenced area which… Adam: We're going through the barbed wire so just be careful going… So, explain to me why you've unusually actually kept the public out of the ancient woodland. Joe: Ash dieback really is becoming a huge problem across a lot of woodlands I manage. I manage about 30 woods across the West Country and every one of them has large amounts of ash that really grows really well on these sort of limestone soils and in these hills around the Mendips, the Cotswolds. Gosh there's a huge Buzzard just soaring over the edge of the woodland there. So, ash dieback is killing off essentially all our ash trees. Estimates vary at the moment. You know recently it was about 95% and then people said it was around 60%. So, the latest estimate is that about 60% of our ash trees will die over the next 50 years. How fast they die is the worrying thing but when we bought the wood in 2019 ash dieback was blowing across the landscape. It is a fungal disease. It naturally spreads. It came over from Asia originally in infected stock of nursery trees being planted out. So, no one's been able to plant any ash for the last three years. It's now being reported all the way from the east of Great Britain, all the way to the west, every year, until it's spread and spread and spread now our mature ash trees – whether they're in a hedgerow, along roadsides and country lanes, whether they're in woodlands – ash trees are essentially dying en masse, and this is killing off everything that lives and breathes on those ash trees. Adam: And the reason you're keeping the public out is because the trees are dangerous, are they? They might fall? Joe: Yeah exactly, so where you have a path or road or property you have to maintain, you know, what's reasonably practical safety for people to be able to walk under it. We realise if we were to create a load of paths, allow a load of people into now what is a fantastic ancient woodland, but it has never really had any paths in, it's been undisturbed for generations – over 100 years now – we don't think anyone set foot in it. So, we didn't want to create any paths because we didn't want to fell any trees, so we've kept it shut and all the locals have seemed to have bought into that and are really pleased this is just a woodland for wildlife. They're happy enough to walk around the fields where we've created woodland. Adam: And is it also something of a laboratory to see what happens to ash dieback? If you really don't step in and try and do anything? Joe: Exactly yeah, so, in so many woodlands across Britain because of the large amount of public footpaths, people are having to fell for health and safety reasons, so there's not very many examples where if no one goes in and nothing happens, what happens to that wildlife? Does it also dramatic- dramatically decline, with the trees losing? Or are there some winners? So, are there some decay species? Some fungi species? Some insects, beetles that love decay rotting wood that increase? So we don't really know. So, this site we've turned into a living laboratory, this is a unique case of where we are monitoring the species within the wood, how they react to ash dieback over time. Adam: We're now going into the bit of ancient woodland which the public are locked out of and so we have got this big “keep out, closed due to ash dieback” (sign). Joe: You have exclusive access! Adam: Brilliant, now I gotta say, I mean I've got to take a photo of this because this is a sea of amazing plants. I'm really, I want to be careful where I tread, I don't want to disturb anything. Because I'm completely ignorant, what are these plants? Joe: Can you smell it? Adam: Yeah sure, it's extraordinary! Joe: This is wild garlic. Adam: Is that what it is? Joe: Ramsons are all in flower at the moment and now we can see for literally, well, hundreds of metres is the white snowy tops of these wild garlic flowers that are just coming up across the thick green leaves and when there's no path in sight you have to be careful where you tread. So, luckily wild garlic's quite prolific, so we'll tread carefully, but an undisturbed wood looks like this. It's like a sea, or a carpet of sort of snow. Adam: That is extraordinary, isn't it? Yes it is a sea of snow and that's the advantage of actually having undisturbed places. Is that it, I mean, yeah sea is exactly what it looks like. These sort of white foaming tops to the rolling green waves of vegetation. Quite amazing. Joe: All you can make out are the occasional tracks of foxes, badgers, stoats, weasels, that have gone through it, maybe the odd deer as well. But insects seem to be declining catastrophically. The ideal analogy is, you know, people used to drive around even in the 80s and you get windscreens splattered with bugs and insects. It just doesn't happen anymore and that massive decline of insects, it's unknown the reason, it probably doesn't help with, you know, when people are using lots of pesticide sprays across the countryside, along with climate change, but as all those insects decline so do our birds that feed on them, so are our bat species – so they're not fat enough to basically get through the hibernation and then when they come out of hibernation and the young are born there are just not enough insects so they don't make it through the summer essentially, and they don't have another generation that makes it. So, yeah, bat species are declining at the moment, so that's one of the first things we've noticed, and well ash are declining en masse. There were a lot of these species of ash that we're monitoring that are all dying en masse. Adam: I mean so that, I mean, …you're telling me all these terrible things Joe: Yes, I know. Adam: But I mean that's important it's still amazing landscape still isn't it? Joe: Absolutely. Adam: And that's always been true with woodlands. That decay brings its own new life and decaying trees are very important parts the of the ecosystem, but even given all of those challenges that you talk about are there any, are there any high points, any reasons for optimism? Joe: Well, wild garlic's obviously doing really well in this particular wood! But there will be some species that do, really, there will be some species of butterfly that you know do really successfully with the increased amount of light. But one of the best success stories, the best things you can do to feel positive about it is to go back out into those fields, plant the trees, the next generation, so that if some of these woodlands do suffer for whatever reason then we've got far more woodland habitat. We need to increase our woodland cover from about 13% to 20% fast and then if we get 20% – we've got the shrubs, we've got the tree species, got the rewilding areas – to be able to provide those homes for the species that aren't doing so well. That's the key I think is to plant the next generation, get there quickly. Our woodlands have a fantastic history and have been managed over time. This is just the next phase in the management to basically keep an eye and ensure our guardianship secures for that next generation in the next 50-100 years. Adam: Well I'm going to leave Joe to smelling his wild garlic, because TV presenter and journalist Alice Beer, who I used to work with, I know lives not that far from this woodland. Now I know she's out and about today so I'm going to call her on her mobile to discuss what the countryside around here means to her and her family. Okay, so just Alice first of all we should explain a bit about our history, so everybody… Alice: Oh must we tell everybody? Do you think we should? Adam: I think we should share a little bit. I used to open letters on Watchdog which was a massive massive programme at the time and I can't, do you remember how many people watched it? I can't Alice: Well I don't know I'd come to watchdog from That's Life and That's Life, which was before you were born Adam I'm sure, had 15 million viewers in its heyday and I think Watchdog was around 7 million viewers, which now is completely unheard of, but then you know it was just 7 million people watching it and more importantly 7 million people putting pen to paper. No emails, pen to paper, and thank God Adam Shaw was in the post room! Adam: Yes I was opening the 7 million letters with one or two other people and Alice was much more senior, so we would come to pass those stories onto Alice and of course, you are now, what's your official title? Alice: I suppose I'm actually probably daytime television presenter but I'm far too much of a snob to say that! I kind of dip in and out of various things trying to still help the little guy or pass on information. Adam: You have a regular spot on a very big programme, This Morning? Alice: Well, This Morning, yes, it's every day, it's now two and a half hours, they keep extending it! I am waiting for it to bump up against the Six O'Clock News soon! But This Morning it was, “can you do a piece on brisk walking and the health benefits”, as a result of some survey that came out, so here I am for the second time today brisk walking and broadcasting at the same time which is fantastic! Adam: Very good! Don't trip over! You've got a couple of dogs with you haven't you as well? Alice: I have, I've got Stanley who's my five-year-old schnoodle and his girlfriend Tilly and there are times when they become quite amorous in the long grass but I'm going to try and keep it clean for your sake! Adam: I knew you when we used to work in Shepherd's Bush in London, but you are now a country girl aren't you? Alice: Yeah, wellies welded to my feet! I grew up in suburbia and in North London suburbia and the countryside wasn't really important to me, but my parents took me out, took me and my sister out walking quite a lot. There was always “shall we do the walk through the woods”, “should we do the walk through the bluebell woods” which is slightly longer or “should we go up and round” which involved the hill. So, there was always a consciousness of walking in the countryside as a pleasant thing to do, but as we've got older, the countryside has become more important to me and we have been doing that thing, my partner and I have been doing that thing where we're trying to move out of London and we've settled on this beautiful village, beautiful functional village not far from Malmesbury in Wiltshire, which is where I am now, walking alongside the River Avon. So not too far from Avoncliff and the same body of water sort of flowing past me which is rather nice. Adam: How lovely. I know, I've seen you on This Morning as you're talking about wellbeing, and in terms of actually, with your consumer journalist hat on talking about the gadgets you could buy to help with wellbeing and having lights I think that show, sort of, natural light. I mean, how important do you feel it's been for you and your family during these rather difficult times to have access to nature and the outside? Alice: It's been everything to me. Everything. I've got teenage girls in fact it's their birthday today, their 19th birthday today, so for them probably it spells isolation for them because they didn't grow up in the countryside, or this this particular part of the countryside, so you know this means being away from their friends, but for myself and my husband it's been, it's been really important. For me to leave the house and walk in space because in London everything has felt very close and very claustrophobic and I'm mentally not good at that at all! So, I'm incredibly lucky to be able to breathe and give myself sort of mental and physical space away from other people. I was able to work from here, so I did sixty live broadcasts from, in effect, my back garden during lockdown. Adam: It's really interesting that you talk about your girls sort of feeling a sense of isolation because they came from the city and now are in a very rural area. I often find that it's a curious thing to get one's head round because really the nature debate about sustainability and trying to be better for the world is often very strongly led by young people. Alice: Oh it's theirs, it's completely their campaign! But I'm not sure that they associate it with, I mean, I feel like I'm treading on dangerous territory speaking, you know, putting words into their mouths because they're both very eloquent, quite passionate girls. I feel that I'm not sure that they would stand out in a field and say “we must protect this”. Probably coming from the city, they feel more that they see stuff, they see things going into bins, they see landfill, smoke, pollution. So, they see the big preservation of our world from a city perspective, probably more than standing in a field and thinking “oh this must never have, you know, thousands of houses built on it”, which is what probably makes me panic as much as anything. Adam: Do you get a sense of a change in people's attitudes in the way they behave, I mean, I think people talk about the need for ecological sustainability. I see amongst my friends and family, I have to also be careful about what I'm saying, I see less actually willingness to change personal behaviour than a willingness to say it's important, but they don't do an awful lot. Do you see that real difference? Alice: I'm a huge hypocrite, but I am now suddenly, it was probably about six months ago I was putting something in the bin, and it sounds like a strange Greta Thunberg epiphany, but it slightly was. I was putting some plastic in the bin, and I was trying to clear out a room and I was thinking this is going nowhere! This can't be recycled. This has to go underneath the ground, and this is not going to break down. I had a sort of panic about the fact that well if I was doing this and everyone was doing this and though I sort of have had that epiphany and I am changing my behaviour, and nothing particular triggered that, apart from me clearing out a bedroom and realising I had too much stuff. You know, which is odd, but you know, in terms of the big picture in the world I think it's very hard to make individuals feel responsible when we see big companies not taking responsibility. It's that sort of, well what difference is little me gonna make? And I've sort of had that, well I'm going to make a difference, so I will. I've had that moment and I think we have to all have that moment and I'm just about to fall into the River Avon, which could be interesting! I'm trying to encourage the dogs to have a drink. There you go guys, come on, look Tilly have a drink! Yeah well they're sort of having a drink, but I'm the one that's most likely to go in here. Adam: Well look, Alice, I feel split because I quite like the sound effect of you going in to end this, it'd be a great end wouldn't it! But on the other hand not a great way of re meeting after all these years. Look I will let you get on with your walk but thank you very much, thanks a lot. Alice: Thank you, thank you. Adam: Well, let's leave Alice Beer there and indeed all our friends at Avoncliff Woods. I do hope you enjoyed that and if you want to find a wood near you, you can go to the Woodland Trust website, woodlandtrust.org.uk/findawood and you can find a wood that's local to you. So that's woodlandtrust.org.uk/findawood. I do recommend you do that. Until next time happy wandering! Voiceover: Thank you for listening to the Woodland Trust Woodland Walks. Join us next month when Adam will be taking another walk in the company of Woodland Trust staff, partners and volunteers. And don't forget to subscribe to the series on iTunes or wherever you're listening to us and do give us a review and a rating. Why not send us a recording of your favourite woodland walk to be included in a future podcast. Keep it to a maximum of 5 minutes and please tell us what makes your woodland walk special, or send us an email with details of your favourite walk and what makes it special to you. Send any audio files to podcast@woodlandtrust.org.uk and we look forward to hearing from you.

Screaming in the Cloud
An Honest Approach to Transformative Shifts with Joe Onisick

Screaming in the Cloud

Play Episode Listen Later Apr 7, 2022 38:49


About JoeJoe Onisick is a polarizing technologist with nearly 25 years' experience architecting, building, operating complex IT systems and advising customers on the same. Onisick's passion is marrying technology to a customer's real-time business challenges and leading them through the entirety of the adoption curve. Onisick is a Principal and co-founder of Transformation Continuum (transformationcontinuum.com), and founder of Define the Cloud (definethecloud.net). Links: transformation CONTINUUM: https://transformationcontinuum.com/ Twitter: https://twitter.com/JoeOnisick 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: This episode is sponsored by our friends at Revelo. Revelo is the Spanish word of the day, and its spelled R E V E L O. It means; I reveal. Now, have you tried to hire an engineer lately? I assure you it is significantly harder than it sounds. One of the things that Revelo has recognized as something I've been talking about for a while, specifically that while talent is evenly distributed opportunity is absolutely not. They're exposing a new talent pool to, basically, those of us without a presence in Latin America via their platform. It's the largest tech talent marketplace in Latin America with over a million engineers in their network, which includes, but isn't limited to, talent in Mexico, Costa Rica, Brazil, and Argentina. Now, not only do they wind up spreading all of their talent on English ability, as well as , you know, their engineering skills, but they go significantly beyond that. Some of the folks on their platform are hands down the most talented engineers that I've ever spoken to. Let's also not forget that Latin America has high time zone overlap with what we have here in the United States. So, you can hire full-time remote engineers who share most of the workday as your team. It's an end-to-end talent service. So, you can find and hire engineers in Central and South America without having to worry about, frankly, the colossal pain of cross border payroll and benefits and compliance because Revelo handles all of it. If you're hiring engineers, check out revelo.io/screaming to get 20% off your first three months. That's R E V E L O.io/screaming.Corey: This episode is sponsored in part by our friends at Vultr. Spelled V-U-L-T-R because they're all about helping save money, including on things like, you know, vowels. So, what they do is they are a cloud provider that provides surprisingly high performance cloud compute at a price that—while sure they claim its better than AWS pricing—and when they say that they mean it is less money. Sure, I don't dispute that but what I find interesting is that it's predictable. They tell you in advance on a monthly basis what it's going to going to cost. They have a bunch of advanced networking features. They have nineteen global locations and scale things elastically. Not to be confused with openly, because apparently elastic and open can mean the same thing sometimes. They have had over a million users. Deployments take less that sixty seconds across twelve pre-selected operating systems. Or, if you're one of those nutters like me, you can bring your own ISO and install basically any operating system you want. Starting with pricing as low as $2.50 a month for Vultr cloud compute they have plans for developers and businesses of all sizes, except maybe Amazon, who stubbornly insists on having something to scale all on their own. Try Vultr today for free by visiting: vultr.com/screaming, and you'll receive a $100 in credit. Thats V-U-L-T-R.com slash screaming.Corey: Welcome to Screaming in the Cloud, I'm Corey Quinn. My guest today is someone I've really admired from afar for a while just because he's a study in contrast. By day, he is a transformation—effectively—expert. He's a principal at his own consultancy that focuses on helping companies achieve their digital transformation. Very forward-looking, very high-level modern technology. But he also wound up effectively leaving Silicon Valley to go live in the middle of the woods. It's not usually a common combination. Joe Onisick is the principal at transformation CONTINUUM. Joe, thank you for joining me and suffering my fairly ignorant questions.Joe: Corey, thanks a lot for having me and the brilliant intro there.Corey: [laugh]. So, I stumbled across you on Twitter of all places, which is where I spend my work time, my free time, my spare time, et cetera. When people say, “Where are you dialing in from?” I say, “Oh, Twitter.” And that usually gets a laugh, but it's also a little unfortunately true.And your pinned tweet thread talks about how you weren't particularly happy with your life, where things weren't serving you and you decided it was time to make a change. It's the kind of thing that I think an awful lot of people flirt with the idea of, but you actually went ahead and did it. What happened.?Joe: So, I did a whole series of things. I think the big thing I tried to do was not bite off everything at once. So, the first thing I did was quit drinking. I was a—you know, which it says in the tweet and I'm pretty public about I was an extremely heavy alcoholic. So, I cut that out because I wasn't happy with it.And you know, the whole idea was I thought it was keeping me happy and it wasn't. So, got rid of that to see how things were and then just started a series of changes, which has, I think, gotten more extreme over time.Corey: Well, one of the early tweets in the thread was one of your coworkers at the time was planning to climb I think it was Kilimanjaro, and your position was, well, that's not something I would normally do. May I join you? If that's how it starts, it seems like well, that seems pretty far on most people's extreme scale.Joe: Yeah, that was an interesting one. The idea of starting in a rainforest and ending on a glacier up 20,000 feet was not of any interest to me at all, but it seemed like a life experience I wanted to put under my belt.Corey: I'm assuming that you're probably glad you did it because you don't meet too many people who are like, “Oh, yeah. I climbed a mountain. It sucked. I never wish I hadn't done it.” It feels almost like it's writing a book, on some level where no one wants to write a book; they want to have written a book. Is climbing a mountain similar to that, or does it go in a bit of a different direction?Joe: I think it was very similar to that. We did a ten-day track, but you can do it much shorter. So, we spent about seven days acclimatizing around the mountain and hiking around the mountain. So, it was more a little up and down, but more level. So, the first 15,000 feet was actually pretty enjoyable. It's the summit day where you go from 15,000 to 20,000, that is—it's just sheer misery, especially if it's not something you do every day.Corey: I thought I had a rough time whenever I visit my in-laws who live in Colorado Springs, and it's great hanging out in their house and whatnot, and I run up the stairs and I get winded and it's “Wow, what a tubby piece of crap I am. How did this happen?” It's like, “Oh right, we're at 9000 feet; the air is a lot thinner here.” So, I basically spend the entire trip out there, trying to move as little as possible as opposed to at home where I sit in front of my computer attempting to move as little as possible. But it hits in a different way.You quit your job in Silicon Valley as a part of this journey of—was it a journey of discovery? Was it just a series of changes? How do you contextualize it? How do you describe it?Joe: I'm trying to learn how to be whoever I am would be the way I'd describe it. I've spent my entire life being someone I thought I was supposed to be, and I never stopped to think who I am. So, a lot of this is just trying everything to see what fits.Corey: And then you make one of the classic blunders as you do this; you decide, “You know, I'm not going to work a traditional job anymore. I'm going to start a consultancy.” That is truly the path of fools, speaking as someone who did exactly that. And looking back at it, it was one of the best things I've ever done for sure, but if I had known how much work it was going to be and all of the ins and outs and ups and downs in the managing of my own psychology, I'm not sure I would have the courage to get started.Joe: Yeah, that's a great way to say it. I look back—my favorite example is one of my mentors started a couple of companies. His wife has had several exits. I mean, he's just a wealth of knowledge of tech: Tech the industry, and starting companies, and when I brought the idea to him, he asked, “So, you're thinking of starting a consultancy?” And I said, “Yes.” He goes, “I have one word of advice.” And I waited for him to reply, “Don't.”Corey: When you said that to people in my experience, they think, “Oh, they're trying to hoard all the wealth and happiness for themselves.” It's yes, that is what I'm trying to do. I view consulting as a zero sum game. There's only enough room for one of us. Yeah, it never works that way.It's just such an up and down thing and when I talk to folks who work at big tech companies and they are asking, “Oh, you know, I want to become an independent consultant because I'm tired of my job and my company and the rest,” don't do that. It's going to be a few lean years and it's going to take an awful lot of trying. And honestly, the hardest part of all of it, at least in tech—this is, to be clear, not a sympathetic problem—is at any point, you can walk away and say, “The hell with this,” and within a week, wind up getting a salaried job somewhere very comfortable, where you don't have to deal with all the hard parts of running a business and it pays three times your first year's revenue. And it's so much easier to go down that path. Fortunately for me, that wasn't really on the table because I'm an insufferable jackass who, my personality shines through and it turns out, this is not a desirable component in most workplaces.Joe: I think we share that. I think I've made myself fully unemployable now, so I don't have that parachute, which makes the consulting a little easier.Corey: You also have an additional challenge that, for better or worse, I don't, which is I fix the horrifying AWS bill, which means that I could demonstrate ROI with, more or less, basic arithmetic when people say, “So, why should I bring you in?” It is one of the easiest enterprise sales—not that there's an easy enterprise sale—that's possible because it's, “What are you selling?” “Money.” The end. You advise on digital transformation, which is inherently a sticky concept itself. What is it that you do for companies?Joe: So, I'd say we started out with probably the stupidest business model you could ever come up with. We decided we were going to address Fortune 100 technology companies at the same time as addressing the largest value-added resellers in the world, and at the same time, driving adoption services on behalf of them for their customers. So, we have three customer bases: The end-user of technology, the reseller of technology, and the vendor of technology, and we're helping them all adapt to the transformations happening in the industry. So, off the bat, we were already crazy because everyone would tell you pick a segment and focus, right? Not just technology vendors, but a specific hardware or software.But to create the value chain we do of getting their products to market and making sure they fit that market, we have to have visibility into all ends of the spectrum. So, we tackled the hard challenge to be able to be successful with what we wanted to do.Corey: It sounds an awful lot like you are taking a more… I'll use the term ‘honest'—I think honesty is the right word here—a more honest approach to getting companies to their desired outcomes. There are a lot of folks who specialize in, “Digital transformation,” quote-unquote, and that's very much a thin veneer over, “So, what do you really do?” It's, “Oh, we do cloud migration, specifically into this one cloud vendor.” And that journey of their digital transformation generally involves writing a very large and very specific check to a third-party company. And that's the end of it, and it's rinse, repeat, go all-in. You have an established track record of very much not doing that. Was that something that you did originally, or was that how the practice wound up evolving?Joe: So, I've kind of worked in all components of it. I've built giant channel practices within some of the world's largest VARs; I've worked on the—or started my career on the end-user side and then I got kind of drafted into the vendor side for a while. So, I've got exposure to all of it. I think the honesty piece has been—to a fault, integrity is a thing that for me, right? It's a trigger. I always tell people, I'm opinionated; you're going to get my opinions, but you'll never get anyone else's opinions. So, they might be subject to change, but they're always mine.Corey: There's an idea of you could buy my attention, but not my opinion, and that has been something of a guiding star for what I do just because people look at it and say, “Oh, that's this bold moral stance, and that's just inspirational,” and no. Absolutely not. It's that I suck at biting my tongue. When I look at something and I find it ridiculous, I can only go so long without, more or less, asking why the emperor is prancing around naked in front of everyone. And contrary to popular opinion, in corporate life, this is not a particularly valuable skill, in fact, just the opposite.But it does lend itself to a certain perspective on the larger industry. When you talk to companies who are looking for digital transformation, how does that conversation go? It seems like, for better or worse, it is a nebulous problem, and companies are generally not the looking for things via Google ads, for example? “Yes, hello. I'd like to buy one digital transformation, please.”Joe: Yeah, so it starts in several different ways. A lot of our business starts with a vendor with a new product that they know fits the market and fits where things are going, but they can't get it to move, right? They can't get it to sell, they can't get customers to adopt it, they can't get sales teams to understand it. And so we come in and try and fit it into the bigger picture while tying it to what people already understand and know.You can call it, like, chunking learning, right? I'm not going to be able to learn astrophysics if I don't have a baseline in math. So, we try and tie the future to today so that people can grasp and understand it. And the same ends up at the opposite end of the spectrum: You can't go in and talk to a laggard customer about how machine learning and AI is going to transform their business operations if they're still wondering how to manage what they've got today.Corey: There's an underappreciated skill in meeting customers where they are, and very often that can express itself as a perception of being condescending in some cases, and I think that's where a lot of people get it wrong. The hallmark of a terrible junior consultant is to walk in and say, “Oh, what moron built this?” Invariably to said, quote-unquote, “Moron.” People don't show up at work hoping to do a crappy job today. There's a reason that things exist the way that they do.Yeah, maybe it's because they just didn't know any better, but maybe there's a constraint or context you don't have. And generally in my experience, failing to respect that context is just the kiss of death because, think, it's the only thing that separates software from being able to do your entire job.Joe: Yeah, and it's a lost art, right? It's one of the things I do and love doing is training engineers how to be consultants, or salespeople how to be consultants, and it tends to be a lost art. We have these products or solutions that we're positioning or that are our favorites and we try to shoehorn them in every hole. One of my favorite examples was, I was asked to go into a California government agency and buy them and sell them SDN, they wanted to know why they needed to adopt SDN. And instead of coming in and preaching SDN, which was what I was theoretically getting paid to do, I started asking some questions and immediately realized these people don't want Software-Defined Networking at all.They want, you know, to be on the command line whenever they can, and not have to touch the gear other than that. So, I started to dig a little more and eventually find out, they hired a new CTO, and that CTO had SDN-ified their last network, and so they thought it was going to get shoved down their throat. And they were trying to figure out how to get around that. And so instead of selling an SDN, I gave them the 15 reasons why their operation wouldn't benefit from it and found another problem to solve for them.Corey: There's really something to be said for having the courage to deviate from the engagement plan. I find that there's a certain type of consultancy that as soon as they realize the facts on the ground are not as described or things have changed, they keep trying to get back on track for the thing that they believe they're there to do. But I've always viewed it as being there to help customers, and sometimes that means that it's a bit different than what you expected. There are times I have actively advised customers to spend more on AWS. It's, yeah, you could not have backups for those incredibly important things over there, but I [wouldn't 00:13:12] generally recommend that. And I always get these strange looks. And it evolved my business practice a bit away from, for example, guaranteeing that I'd achieved a certain level of savings just because that it got people focused on the wrong outcome.Joe: Absolutely. I draw some analogies, I do some woodworking as a hobby, and occasionally I'll go out and buy a tool like a router or a bandsaw because I want that tool, and then I design projects around that tool. That's great for a hobby when you have some spare income to blow. That's a terrible way to run an IT operation.Corey: That's a lot of fun as a hobby, but if you're a professional carpenter, that's probably the wrong [laugh] direction to take things in. It's a different approach to things. Your background is fascinating, and I would argue makes you incredibly well-suited for the role you're in. You've been a principal engineer, you've been a CTO, you've been a VP of Sales and Marketing, you've sort of done, more or less, every major business function out there. The one I don't see on your background listed is accounting and finance, but yeah, turns out you run a business, you learn real quick how at least the important moving parts there are.What was it that made you decide to take that background, that eclectic group of skills and say, yep, consultancy, first off, and then it's going to be aimed at solving these expensive existential questions that companies are wrestling with? Because it turns out the world increasingly runs on computers and that's not something a lot of our customers are great at out of the gate.Joe: So, some of it happened just by opportunity and chance. My first sales engineering role pulled me out of the customer side, and when the hiring manager called me to interview me and explain a sales engineer role, I told him, you know, “This isn't for me. I don't want to sell.” And then he ended up calling back the next day and explaining this training certification knowledge and growth path he put me on, and I changed my mind real quick because he was going to invest in me. So, some of it started by accident, then I realized the value in the diversity of knowledge.I mean the human brain is a pattern-matching machine. The more data sets it has to match patterns on, the more powerful it gets, so the more diverse my job roles and the more diverse my education, my reading, my study become, the more I can help any given job I have by finding parallels to other things I've experienced.Corey: You started your consultancy right around the time of the pandemic if memory serves, and that the running gag has been for a while now—it's one of those haha, only serious type of jokes—is the global pandemic has done more to accelerate your company's digital transformation than your last ten CIOs combined. And there's something to be said for necessity forcing the issue in some cases. How have you seen it evolving?Joe: So yeah, the pandemic definitely accelerated digital transformation and in fact, it was part of our first-year revenue success was that. There were some challenges that came with it. Large companies didn't know what the financial market would look like, so they locked down spending and budgets quite a bit, so you got some good and bad there. But I think it accelerated a lot of things.I think the maybe the disappointing part to me is that a lot of the things that the pandemic accelerated, were things that should have been happening anyway: Expanding remote work, building out better hybrid models to be able to secure SaaS, Infrastructure as a Service, and on-premises properties together, those types of things. They were things that we should have been doing, but nobody was forced to until the ‘oh, crap' happened.Corey: It's one of those areas that is always felt like companies approach strangely. I've worked for a number of large companies over the course of my career who effectively decided to one day wake up, plant a flag in the ground and declare it we're not a finance company—or whatever it is that they did—we're a tech company. And in practice, I find that the execution of that vision doesn't tend to extend much further beyond just putting a sign on the wall. Is that something you've seen and is a common trope, or do I just have really interesting luck in picking employers?Joe: No, I think we see that a lot. I think we see a lot of large, intelligent organizations see a shift happening in the world and they decide they have to address that or do that, right? You saw a lot of this in the early days of cloud. They didn't figure out a business problem or financial problem to move to cloud; they just saw all their peers doing it, so they put a stake in the sand and said, “We're going to cloud.” And I think that's a bad way to design the business operations. If your core isn't a tech company, then, “What do you mean by that?” would be the first question I ask.Corey: One thing I want to talk about because I don't get to see it very often. I am almost always brought in to companies when they're already running in the cloud—specifically, AWS since that is where I start and stop professionally these days—and they're already there, and surprise, it costs money. You're there earlier than I am; you are helping them get there in the first place. I've viewed for a while the idea that moving to cloud to save money is a losing proposition. If you ask me in good faith to say, “All right, in five years, will we make money or lose money on this journey?”It really comes down to what answer do you want because I can make an extremely strong good-faith argument in either direction, but my honest opinion is that it's a capability story, not a cost savings play. That is how I've come to view it, but given that I'm viewing it after the fact, and I'm only seeing a very specific example of it, I'm curious to know how you see it.Joe: I would not recommend to a client to move to the cloud for the purpose of saving cost. If there's something else leading it, scalability, elasticity, operational flexibility, whatever you're looking at, that should be the primary goal. If you can also build it to save some costs, that's fantastic. And there's really two reasons I look at that. One is, IT should be a business enabler if you're doing it right, and if you have something enabling your business driving revenue, why would you want to starve it of funding? Why would cost be your primary goal—cost savings?And the second piece is, in my life, I always find that the success of a decision is 20% making the right decision and 80% making it the right decision after it's made, right? It's the effort afterwards to make it work that's going to show you whether you're getting the cost savings or not. It's not easy to jump to cloud and create the new operational model that's going to be the cheaper operational model, so if you're not willing to do that work, once you're in cloud, you're not going to save money on it.Corey: This episode is sponsored by our friends at Oracle Cloud. Counting the pennies, but still dreaming of deploying apps instead of “Hello, World” demos? Allow me to introduce you to Oracle's Always Free tier. It provides over 20 free services and infrastructure, networking, databases, observability, management, and security. And—let me be clear here—it's actually free. There's no surprise billing until you intentionally and proactively upgrade your account. This means you can provision a virtual machine instance or spin up an autonomous database that manages itself, all while gaining the networking, load balancing, and storage resources that somehow never quite make it into most free tiers needed to support the application that you want to build. With Always Free, you can do things like run small-scale applications or do proof-of-concept testing without spending a dime. You know that I always like to put asterisks next to the word free? This is actually free, no asterisk. Start now. Visit snark.cloud/oci-free that's snark.cloud/oci-free.Corey: You have a, I would say, unpopular opinion on taking multi-cloud as an action item in the direction to go in. The reason I don't call it that unpopular is because it echoes a lot of my own thinking on these things, and Lord knows, I have suffered the slings and arrows over the years for advocating such a thing, but what is your position on adopting multiple clouds?Joe: So, if I was going to put it in the least objective possible terms, it would be, I want to be single architecture—single cloud in this case—unless. Right? I should be architecting for the simplest environment, I can build given my requirements. And so when I see clients try and jump into multi-cloud because it's the buzzword or it's something that a vendor is trying to sell them, multi-cloud is not a solution, it's a necessity, in some cases.Corey: My perspective has been to pick a provider—I don't care which one—go all in until you have a reason to do something different. Multi-cloud is, in my experience, something that happens to you rather than something that is an intentional choice. But where your data winds up living is fundamentally where everything else is going to wind up centering around as well. The old-school procurement story of not wanting to be tied to one particular vendor because they're going to soak you is a good piece of advice and I apply it in almost every IT decision, except when it comes to cloud. Because the pattern is different, the model is different, the way the discounting works is radically different.And maybe that's just because I haven't done a lot of this work in traditional IT, but is this also the wrong approach, going back to the world of data centers and networking vendors and server vendors and the like, or is it really a different world?Joe: No, I think it's very much the same world. I'm religious about standardization wherever possible because it reduces the operational friction across the board that gets ignored in a lot of these costs. And that operational friction can end up in headcount and salary and cost that you see, but it also ends up in frustration for those teams, complexity of what you do, and another form of lock-in that prevents you from modernizing that infrastructure. So, anywhere you can find a standard single vendor that works—and it's going to have some caveats, like everything—I would. And that's not to say you should always standardize on everything; it's standardize in less.Corey: One of the things that I tend to see as far as a multi-cloud pattern that just doesn't work is in no small part, very much an intentional choice—I believe—on the part of the cloud providers, where inbound data transfer is free; outbound costs an awful lot of money. And that, if for nothing other than basic economics has acted as a brake on the adoption of those patterns, in many cases. Is that something that you experience as these companies are moving to cloud is something that they need to become accustomed to? Is that something they know going in and they just intrinsically accept it? How does that awareness play out?Joe: So, I think you're hitting on the biggest problem of multi-cloud is how do I get access to the data sitting in one cloud? Every cloud provider wants to give you cheap storage because once your data is there, you're going to use their compute, their bandwidth, everything else. And so when I am working with a client that is looking at multi-cloud, the first thing we want to solve for is, where's the demilitarized zone we can put your data that can serve it effectively to any cloud you're using? Because most of the time, your apps aren't going to work in isolation. And that tends to be a solvable problem, but one of the harder problems to solve, and one of the things I don't see a lot of people thinking of first when they start to put apps in different clouds.Corey: For me, when I was advising—lightly—on Cloud migrations and digital transformations as such, the problem wasn't the technology or even the budget or the rest, it was the growing awareness that people were going to have to think about things in a different context. Tying it back to economics, for example, when you ask someone who's in a data center and looking to move to cloud, “Okay, great. How much data per month are your app servers sending and receiving to the database servers?” And the answer? “Why on earth would I have to know that? Why would I care?”And it's oh, you're very much about to care. There's a reason I'm asking this. It's a cultural transformation, much more than it is a technical one, in my experience. Do you find that that comes as a surprise to folks or by the time that they get serious enough about digital transformation to bring someone like you in that they've already checked the basic boxes?Joe: I think we've improved a lot over time. I mean, I think there were great horror stories of they're ready to flip the switch on a cloud migration, and then they talked to the CFO who has no desire to deal with an OpEx model, or something to that effect, right? So, I think we've moved a lot past that. But I think people are still very naive about the overall dependencies, the data transfer. I used to say you can ask any given customer how many applications they have, and if they can give you a ballpark, that's amazing. So, to know what the dependencies are, what the data transfer rates [crosstalk 00:24:49]—Corey: [crosstalk 00:24:49] start counting on it, and it's like it's one of those, “Yeah, don't bother giving me specific count; just give me breadbox sizing. Are we talking dozens, hundreds, thousands, millions? At least give me an order of magnitude here.”Joe: Right. And if you don't know how many apps you have, how do you know how they communicate and how much data they transfer, and the rest? And oh, by the way, figuring that all out is an expensive exercise.Corey: Very often, I tend to view hybrid as something that no one intends to do, but they get there almost by accident where they start migrating some workloads, and it goes super well, then they realize, “Huh, I have a mainframe over there and there is no AWS/400 I can migrate it to, so we're going to give up, call it hybrid, plant the flag, declare victory, and the end; we're a hybrid now.” I feel like that is in many cases, what a multi-cloud… pattern might evolve to be. I think we're still early enough in the cycle that moving from all-in on Cloud Provider A to all-in on Cloud Provider B isn't an exercise most companies have undertaken. But it feels like that might be something that gives rise to a multi-cloud world, just because that is the pattern that people fall into turns out to be more of a trap than anything.Joe: Yeah, I think we're always more willing to spend $10 a month for eternity than $100 right now on a problem. So, we get this idea of we're not going to take that legacy, monolithic app and re-architect it for the cloud; we're going to leave it and run in a hybrid model. Over time you're over-engineering; over time, you're spending more money; over time, you're not solving the problem. One of the things that, you know, here on my ranch I try and do is never do band-aid fixes because as soon as I go put a bandaid on something, it's going to stay there until it breaks on me again. If you're not going to fix it right the first time, you're going to have challenges with it all the time.Corey: It's the idea of buying the best tool that you can find on this, when you buy the most expensive–or best tool—which is often the most expensive—it's one of those you cry once, whereas if you've buy the crappy tool, every time you use it, it irritates you, but you can't justify replacing it. It's the same model. One thing that I keep smacking into, it on some level, makes me feel like a bit of a fraud because I'm here talking to companies about their AWS bill, where it starts where it stops, but regardless of how big or how small that bill is, it is always dwarfed by payroll expenses. And the hard part of cloud migrations and modernization is not, “Well, how do we move all the applications from the data center into the cloud?” Compared to, “We have 5000 employees who are working in the on-prem environment and know how that works, and cloud is something they find in the sky when they go outside once in a while. How do we get those people upskilled?” That seems to be the challenge of the age, right now. I am bounded to only the computery bits, as far as what I tend to explore. You're not. How does staff upskilling and staff expertise point of impacting your work?Joe: That's a huge point, right? Your operational costs around your staff, staff tooling, and operations are always far exceeding any of your infrastructure costs, cloud or not. And I think one of the biggest hindrances I see to that is companies have this fear that if they train people and upskill them that they're going to lose them. And, you know, I take a pretty hard stance on that, if you're that worried about losing your people because you're training them a little bit that, maybe you should fix your culture or your paychecks, or both. That's a huge hindrance to it.You have to train your people because they're costing you more not knowing what you need to know. If they do leave, that happens, that's business, that's how things work. It's more expensive to you over time to not be investing in the knowledge they need. And wherever you can carry your existing staff forward, you're going to save a lot money over hiring that new staff, especially in this current market.Corey: There is a reality as well—and I want to challenge you on this one a little bit—that if you have a team of people who are working in your data centers on various things, and let's say their market rate is $60,000 a year—to pick a number arbitrarily—upskilling them to cloud-first is hard. And I want to be clear, not everyone either has the capacity or the desire to, “All right, I'm going to basically become a cloud developer now.” But for the folks who do and are able to make that transition, they're making $60,000 a year but they've just learned a new skill that has a going market rate of perhaps $120,000 in that market. On some level it's a well, I could go work somewhere else and double my pay. It's you'd have to convince me that there was a strong compelling reason for them not to do it. If they were asking me for advice, like, why wouldn't you? That's one of those obvious type of answers in most scenarios. How do you square that circle?Joe: There's going to be some risk involved either way, so I'm not trying to shy away from that. But I think if you have people that generally like their job and what they do, people tend to not want to switch jobs as much. We all experience inertia and complacency, right, at some level. I think the second piece is, using the numbers you're using as an example, if I'm making 60 today, and you train me for a $120,000 job, and somewhere along that line, when I showed the aptitude and have the skillset, you bump me from 60 to 80 or 90 without me asking, you just bought a level of loyalty for $30,000 a year cheaper than you would have bought my replacement. And that doesn't mean I'm going to stay forever, but I'm really going to like where I'm at when I get a giant bump without coming into your office and demanding it.Corey: I think that there's a misunderstanding across a lot of sectors of the economy that employment is not strictly about the numbers. And I know that because in my 20s, I was in crippling credit card debt, and every career decision I made was around what had the biggest number on the paycheck. And there's nothing inherently wrong with that approach, but it also didn't serve me super well, in some scenarios. If I'm chasing—even now—the thing that pays me the absolute most money, yeah, it turns out that running a boutique consultancy is not the answer to that question. I could do a lot of things that are considerable more ethically dubious; I'd be miserable, but it would make more money in some respects.Employees are in a very much a similar boat. It's yeah, I could go make 10% more somewhere else, but I like what I'm working on. I like the people. I like the culture, I like the baseline level of respect the company has for me, and I like the fact that it's not just empty words when they say that they invest in their people. And I think that is one of those things that really hits and convinces people that, yeah, is this place perfect? No, no place is, but that's why I stay. And that counts for an awful lot and I think that gets overlooked.Joe: I agree completely. And I think, you know, I want to be careful because there's a level of money that shifts at, right? At some point, you got to pay the bills, you got to pay off the loans, you got to pay the mortgage. And so the more money to get to that level is extremely important. And probably the most important thing in your career choice. Once you hit comfort and normalcy—Corey: Oh, yeah. Going from between 30,000 and 40,000 is very different than debating between 170 and 180. It's a percentage thing, and there are certain steps at which point it is a dramatic lifestyle improvement. At other points, that same amount of money is more or less, it looks suspiciously like a rounding error. And it also depends on people's individual situations, too. I want to be very clear, this is not in defense of underpaying people in any respect. I'm a huge fan of charge market rate and get more money if you possibly can.Joe: Absolutely. And I think it's a combination of those things. And you have to remember, it's going to be different to different individuals, right? A single person with no intent on a family might be one hundred percent okay, with 80 hour weeks for the right money because they don't have a whole lot of other commitments, right? Whereas it's somebody else in a different set of boats is going to care more about a four-day work week or the rest.So, I think two things would help companies maintain the talent, especially in a market like this, and that's having a rounded out package that includes great salaries along with benefits, and probably providing some choice so that the individual can get what they're really looking for within the big picture of the benefits package.Corey: I really appreciate your spending the time to talk with me about all this today. If people want to learn more about what you're up to and how you think about these and many other things, where's the best place to find you?Joe: I'd say so transformationcontinuum.com is probably the best place. I'm on Twitter, but I'll warn you I'm a bit of a porcupine, so I'm not for everybody's tastes.Corey: A lot of that going around on this [laugh] conversation today. Thank you again for your time. I really do appreciate it.Joe: This was fantastic. Thank you, Corey.Corey: Joe Onisick, principal at transformation CONTINUUM. 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 along with an angry, insulting comment that I will only accept if you send it from 20,000 feet above sea level.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.

Manager Minute-brought to you by the VR Technical Assistance Center for Quality Management
VRTAC-QM Manager Minute: Planning for Success with Succession Planning so the VR Show can go on…

Manager Minute-brought to you by the VR Technical Assistance Center for Quality Management

Play Episode Listen Later Sep 17, 2021 43:55


Full Transcript   In this episode of Manager Minute, Joe Xavier, the Director of the California Department of Rehabilitation Services, and Jane Donnellan, the Administrator of the Idaho Division of Vocational Rehabilitation, join Carol Pankow in the VRTAC-QM studio to discuss the importance of succession planning and knowledge translation for VR agencies.    Joe and Jane highlight how they tackle the challenges of losing quality employees by utilizing strategies such as long-term planning, adjusted hiring practices, cross-training, and promoting from within.    This episode's conversation will encourage agencies to have more discussions about succession planning and to think about the significance and dynamics of knowledge translation -- one manager at a time, one minute at a time. Listen here    You can find out more about VRTAC-QM on the web at: https://www.vrtac-qm.org/                                                                       Stay up to date by following VRTAC-QM on Facebook and follow us on Twitter @VRTAC_QM   About VRTAC-QM Partnering with State Vocational Rehabilitation Agencies (SVRAs) to enhance service delivery and maximize outcomes through quality program and resource management.  The purpose of the VRTAC-QM is to provide training and technical assistance that will enable State VR agency personnel to manage available resources, improve effective service delivery, and increase the number and quality of employment outcomes for individuals with disabilities. The VRTAC-QM provides TA and training in VR program and performance quality management, fiscal and resource quality management of the VR program, and general quality management of organizations. You can request technical assistance from the VRTAC-QM by contacting your TA Liaison directly, contacting any member of the Center you wish, or by filling out the information on our main website and clicking on submit. While on the main website, join our mailing list to receive updates on training and new activities occurring within the center.    Full Transcript   Announcer: Manager Minute brought to you by the VRTAC for quality management conversations powered by VR, one manager at a time, one minute at a time. Here is your host Carol Pankow.   Carol: So welcome to the manager minute. Today I'm joined by Joe Xavier, Director of the California Department of Rehabilitation Services, and Jane Donnellan, Administrator from Idaho General. Thank you both for taking time to join our show today. So, Joe, there's a lot happening in California right now. You had fires, floods, drought, all on top of the continued pandemic. So how goes it in California?   Joe: First of all, hello to everyone. It's great to connect with everyone. And certainly I know that what we're experiencing in California, everybody else is experiencing in some fashion. But Carol, I must say it's not that we had. It's we have all of those disasters are all taking place at the same time. And I think the good news is that we're working through it and we were able to get a state budget this year that really addressed the gaps that were exposed and accelerated through COVID 19. So I think on the grand scale of things, we're moving in the right direction. Many, many challenges, lots of work to do. But these are the times we're in and we're leading and navigating through them, and I'm confident we'll come out on the other side.   Carol: That's good to hear, Joe. So Jane, as Joe would say, you also have your share of things going on besides the pandemic. You had that incredible heat wave out there. How are you doing in Idaho?   Jane: Well, I'd like to say yes to everything, Joe said. He articulated that very well. Yes, we continue to have some challenges that are going on between the pandemic and a lot of smoke from the fires for sure, as well as excessive heat throughout the summer. But as Joe indicated, we're resilient. We're a resilient people here in Idaho and particularly the Idaho Division of Vocational Rehabilitation. I am just so appreciative of the committed staff that I have to the mission and really seeing beyond all those barriers.   Carol: Well, I love to hear it. I was so excited to talk to you both. I know with all the moving pieces and parts in VR, succession planning can often take a backseat or even just finding time to plan and manage the continued churn that VR is experiencing. Sometimes the focus is only on top leadership when I get the statistics from CSAVR. There's been seventy seven director changes in seven years in VR, and it's really easy to focus that succession planning for top leadership. But we also need to think about those individual contributors. And I think it can become easy, you know, to get comfortable with having your subject matter experts there to make sure everything runs smoothly. But what happens when those subject matter experts are no longer there? How can you translate knowledge when the owners of the knowledge aren't around to translate it? So we're going to take a little deeper dive into that conversation today. When I was at Minnesota Blind, I remember H.R. handing me a document my very first week that I was there and it had the names of all the staff and the dates that they were eligible for retirement over the next five years.   Carol: And when I looked at the list, it was over one third of our staff could leave within the next couple of years. And I remember thinking, yikes, like everybody's hopefully not going to retire on that exact day, but quite a number did or really close to those dates. And in addition to the retirees, we had other individuals, you know, moving on for more pay or other opportunities and then a small agency. I had a lot of subject matter experts that were over a single area and we had zero backup. So believe me, when they left, it really left a void. So we started working on developing processes and procedures that would document what they did. And when I talked to folks around the country, you two are both known as being amazing leaders and all around good human beings. And you both have done so much with a lot of thoughtful thinking around managing your organizations. I couldn't think of two better people to chat with, so let's dig in. So, Joe, I'm going to go to you first. I know you had a big retirement with your deputy, Kelly Hargraves, in the last year. How did you handle that move?   Joe: Yeah, thank you for asking. So real story. Kelly started, and I think almost immediately I sat down with her and I said, So Kelly, who's going to replace you when you retire? And she's like, Well, how about if I move into my office before you kick me out? And I said, Well, fair point. But literally the way you handle this is as a leader, you have to do two things simultaneously that are very difficult. You have to put a telescope in one eye and look way down that road and see what's coming and playing for it, like a retirement, like somebody that has opportunities to go somewhere else. And you have to put a microscope on the other eye and put existing leadership, existing development, existing acts under that intense magnification and make sure those two are aligned. I often find that people will focus on one, but not the other. Rarely are they focusing on both simultaneously. So I think you start planning for the way, way ahead of time. And I would just add one piece here is a teaser. It's not just a knowledge transfer. That's not what scares me the most. It's the relationship and the experiences that you need to draw on so you can appropriately act on the knowledge that scares me when that is lost.   Carol: I love that, Joe. That is a really you are always profound. But I like that that thinking about the telescope, the microscope and the relationships, you're dead right on that. So can you paint us a little picture of what's happening in your agency regarding both retirements and general turnover? Like what does it look like, your numbers? What have you been experiencing?   Joe: I've been the director since February of two thousand eight, so every single person on our 14 member executive team is new to the position, meaning lots of turnover right now in this current year. We expect three and as many as six executive turnover senior leadership team. We expect to see anywhere from five to 10 members of our senior leaders turning over. And that is exemplified throughout the ranks for us. One of the things that we know is that that retirement wave that was coming got a bit delayed and frankly pushed back a little bit for a couple of different reasons, but certainly the pandemic included in some of that. But we're feeling it and we're going to start feeling it very quickly. We see that in our rank and file ranks, we see that in our counselor ranks. So this is it's a real deal. It's a real issue. That's a scope of what we're dealing with. And the benches are never as deep as we'd like them to be.   Carol: Yeah, I'm here in that. I mean, it is a real deal. It's all across the country. So how about you, Jane? Can you paint us a picture of what's going on in your agency with retirements and also just general turnover here?   Jane: And I think, as Joe stated, I we have a mixture of retirement as well as some significant just general turnover, specifically in our counseling staff in our FY 20 or counselor turnover was about twenty three percent and I anticipate that it's probably higher at this point. We haven't analyzed it quite this year, but we do have regions that I'm seeing are aging out in both management and in counselor senior counseling staff. And so recruiting new individuals to really fill those slots has been quite a challenge. Currently, we have a region that doesn't have an assistant regional manager and we've tried to recruit for that position three different times and have had a failed search on that. So it certainly is something that is continuously on our mind. And therefore, what are those strategies that we can identify to either help recruit or help retain qualified staff that we can grow from within for that point? As for my executive leadership team, we're a little bit small, but we're a little bit smaller of a state in terms of population than California. So I have five on my executive leadership team and I anticipate in the next two to three years losing about half of them to retirement. So we really are looking at that lens of where we need to go for the future to make sure that we have a strong and vibrant agency.   Carol: That's amazing what's happening with both of you and it's indicative of everything going on across the country. We're just seeing such a shift. So how's that pandemic played into staff decisions to move on and what have you done in response to that? I'm going to ship that to you, Joe, first.   Joe: Yeah, I think initially the pandemic there, those people that were thinking of retiring and moving on, and they kind of held back a little bit because of a lot of uncertainty. And thank goodness they did. We really needed that solid, steady leadership over the last year and a half plus. But now they're leaving, as I described earlier that leaving at all levels of the organization, and it's great that they can. So a number of years ago, one of the things that we had done is create some positions in our service delivery that allowed people to come in from different pathways. So not necessarily through the master's credentialing and vocational rehabilitation business engagement specialists working central planners as an example. So that helps because it broaden the candidate pool that we can bring in. Of course, we then have to sort of tailor the functions and activities to better align with each of those individuals. So we have our master staff credentialed staff on VR focusing on more of the complex aspects of VR, we have the other folks focusing on the other aspects of delivery, that's sort of one of the strategies that we've used over time. I think remote work is going to be a nice piece on the recruitment side. It'll offer the challenges, but I think it'll do some of that. And frankly, at the end of the day, just the shortage in the workforce in the vocational rehabilitation field as a whole is going to cause us to continue to have to be creative on how we staff up. And I think it'll change a lot in the coming one, three, five years or so.   Carol: Yeah, I agree. I agree completely. I keep thinking, what's VR going to look like, you know, just five years down the road? So Jane, how about you? How's the pandemic played into staff decisions to move on and what have you been doing in response?   Jane: You know, as I looked at this area? I thought the pandemic really has had less of an impact to our staff, I believe, than some other factors that are going on specifically in Idaho. We have really strong economy in Idaho. Our unemployment rate is about two point six percent and we have a shortage of a workforce which plays into that competition. We have a difficult time recruiting and retaining qualified staff because they can go and get a job in another business, utilizing some of their skills and talents than to stay and work for the wages that we can pay in our restrained from with what the Legislature has appropriated for us. For example, I had an administrative assistant come on board in March. Fabulous, fabulous, fabulous. Skilled individual. And she left in July because she was offered a position with one of our hospital systems earning five dollars and fifty cents more an hour. I could not compete with that. So that has probably been our largest challenges the competing with private industry, as well as some other state agencies that have less educational requirements and have higher entry level wages. The last thing that I've really noticed, particularly in what we call the Treasure Valley area and that's where Boise is, is our cost of living is significantly higher. And so our wages don't always afford individuals to live in a manner in which they can afford to live, either through a rental or purchasing of home. It's just exploded in terms of the cost of living. So although I think the pandemic had maybe a slight impact, I'm not sure it's really been our greatest challenge.   Carol: Yeah, you're leading us into my next area I was thinking about because I know some directors have talked about having hiring freezes that have been imposed, limitations on the public merit system or union contracts, or some other state edict that might be going on. And so, Jane, you obviously had been talking about what you're experiencing from that vantage point. Joe, have you experienced anything like that in California as well? And what are you maybe doing to address that?   Joe: So yes, we have this last budget cycle. So about a year ago now we had what's called a soft hiring freeze that really fully new positions was pretty challenging. So we did two things to immediately respond to that one was we used our delegated discretion to limit the freeze on the non-direct services position. So in other words, get a direct services position vacancy. You were able to fill it. If the position vacant was not direct services, then that was less so the case. The second thing that we did was really get more nimble at redirecting staffing resources to where we needed them within the organization. So if there was a function that needed to be performed and staff that could deliver on that function, we're in another section slash division. Then we just redirected them for that period of time because just the need is you have to be nimble, you have to be flexible in these challenging times. Thank goodness we're out of that short term hiring freeze right now. But here in California, we deal with that fairly routinely, fairly frequently. You know, we do the best that we can with it. We adjust the volume between what we can provide directly and what we might be buying from our partners and services that we procure across the state. So it's juggling of a lot of different methodologies to ultimately today make sure people are getting the service they need.   Carol: Absolutely. Juggling is good. That's a good word for it. I know folks have talked about, you know, counselors starting at thirty thousand with their master's degree in some of the state agencies and having to take a second job just so they can afford housing in the area they're in. You know, it's kind of like what you're talking about, Jane. It is. It's been pretty wild. So I know the pandemic had certainly brought out some different things to light in the way we think about the world of work. I know in just even five years ago when we were talking to our HR about. Allowing for remote work, everybody is like, Oh my gosh, you can't do that, there's going to be workers comp issues and all of this. Wow. You all did it overnight, you know, people went to working differently. And there are still some really good old fashioned attention that can be given to staff development, you know, and looking at how to grow your own, so to speak in the organization. So, Jane, I'm going to kick this one to you. What practices or processes do you use to help grow your own talent in the organization?   Jane: Sure. And I think that's always evolving because we're always looking at various ideas and practices so we can grow our own and retain our own. Piggybacking on a little bit of what Joe said about being nimble with our staff. We really looked at throughout the state when we have positions come open, how we can repurpose that for another purpose. Another thing that we actually I spent two and a half days last week with all our managers and our assistant regional managers throughout the state having discussions really about the future of our agency and what we want to do and how we need to do that. And one of the things because staff are so there's so many detailed parts of the counselor job that we're really looking at. Are there areas that people have greater expertise in? Am I a better pre-employment transition counselor and specialize in that versus a general counselor? So we're really trying to be again, to Joe's point, nimble in that regard. One of the things we did several years ago, we created permanent assistant regional position manager positions in all our eight regions. Prior to that point, we did not have permanent assistant regional managers. We at first thought it was a great way to get people interested in management if we had rotating assistant regional managers, but then realized there were some complexities with that by making them a permanent position, it really gave them a track to upper management if that was something of interest. We've also been engaged in certain leadership training that we find really beneficial, specifically the Emerging Leader series, which is run out of the Center for Continuing Education and Rehabilitation, or Caesar, as we call it, out of the University of Washington.   Jane: And that's really directed by Paul Jay Jack. And we love him, and he's really created opportunities for staff that may not even be in management yet, but have expressed some leadership how we can raise them up in those areas. We provide other tools for our managers to include supervisory kind of academy training so that they really are equipped with tools and resources on how to best support the staff that they're managing. One other area that we've been really committed on is cross training. So within different areas, for example, our fiscal department, they all have a primary job, but they also understand the jobs of their peers that they're working side by side with. So that's been a great opportunity for us as well. So we're always looking at where we can provide growth with our current staff and opportunities to strengthen our program. We created some area transition counselor positions. We have a Social Security cost reimbursement position that actually was an admin staff who just said, I really am so committed to helping the agency with cost reimbursement. Allow me to take this on. We created a position she brings in over a million dollars a year to our agency, so all those that helps the agency helps that staff to be really committed in their positions.   Carol: I love that that is super creative. I could see it firsthand to when you were going through that monitoring, talking about people were cross training and all those really cool ways to understand. In that fiscal year, I was super impressed. Super impressed. So Joe, what about you? What practices or processes do you have to help kind of grow your own talent in the organization?   Joe: Yeah. So a lot of what Jane mentioned, I think, applies to us as well. One of the things that we've been we're piloting right now that we're working on is instead of aligning our caseloads based on population based on disability as it were, we're really looking at aligning our caseload based on sectors, employment sectors. So you have a team that focuses on individuals that want to go into the health care profession or sector as an example. And we're really looking to see how we can use that to really get a better connection between the individual work, preparing for employment and the available jobs, and they're being skilled up into that. So that helps staff to focus their development on a specific sector as an example. Lots of internal trainings, lots of webinars and those kinds of things to keep people skills up to date, as well as introduce other elements that they can be including in the work that they're doing. And then. More broadly in terms of upward mobility and leadership, when we talk about the positions that I mentioned earlier, creating them, some individuals have used that to then catapult themselves into the counseling profession. So that's a win win. We hope that would happen more. But salary is always, of course, an issue. As Jane mentioned earlier, lots of semi-formal, informal, formal leadership development. I think that is one of the big things. And earlier I mentioned the experience.   Joe: A lot of times we focus on the transfer of knowledge, and I think it's important. I think it's essential to what we do, but it's really when you miss someone, if the experience they have in applying that knowledge, it's the relationships they have to draw on to really know when to make what judgment call. So for us, exposing individuals that have an interest in leadership to the why behind what we do to understanding the benefit of that relationship, not only getting the experience but learning how to draw that experience through others where they don't have a direction. We're finding that to have as much or more value than just the basic knowledge of delivering the services, because where things fall apart is not always where the knowledge is, not it's where you don't have that judgment call taking place, that experience being applied, those relationships to draw on. And then, of course, leverage like the National Rehabilitation Leadership Institute, every chance that we get and similar trainings that expose folks to that. We send a number of staff to participate in the forums, especially now that they're virtual. That helps a lot with gaining perspective and gaining awareness, especially the leadership issues around VR. So those are just a couple of the things that we do. I'm sure if I think about it, there's probably another half dozen, but we'll save that for another time.   Carol: Well, I know you're always cooking up ideas. I think I borrowed your team model concept back several years ago to help us through some sticky times, and it really did work well because we wrapped around that whole team around an individual. But I liked your sector approach. That's very unique. I think that's interesting. I've not heard of anybody doing that before.   Joe: Yeah, it's one of our deputies for our field services is really been focusing on sort of changing the mindset from geographical boundaries to this whole sector approach. And we'll focus on the sector that is really aligned with where the district is. So for example, we have part of our state that really focuses on agriculture. And, you know, those are folks that can lead that and anybody else in the state that is interested in that arena. We can move the caseload into that direction. And you know, the beauty of the virtual services now is those boundaries become much less needed to be physical than they can be virtually engaged.   Carol: So cool. That's cool. So Jane, I know you did some really good work because the monitoring team kept raving about how you were documenting processes to help in transitions and staff, and they just gave such glowing praise in that whole area. Can you tell us about your approach and how that's working here?   Jane: And is it work in progress. But we specifically are fiscal, and our planning and evaluation team really started this practice several years ago in which they developed desktop manuals that specifically outlined a positions job and what they did in a very detailed format to include screenshots and descriptions links. So if it was something that needed to go to the state controller office or if it was an RSA report, all the details that position needed to perform in order to get their job done. So if somebody won the lottery and didn't show up the next day at work, somebody could go in and actually have some step by step guide on how that job was performed, and that has been really helpful for internal control purposes. That's been really important and we recognize that, but it also helps in that keeping that continuity of the job if something were to happen. As I said, it's a work in progress, our fiscal and our planning and evaluation team, they really have perfected it. We do have assistance that also have desktop manuals. They can get more complex with some of the other positions, but we're looking at developing one for our regional manager positions and our assistant regional manager positions. So it is a work in progress, but certainly it's been a fabulous tool for us to use internally and as well as to highlight the work that we're doing from an internal controls perspective to RSA.   Carol: Well, I know Jane too. I really appreciate that you all had shared some of those examples with us at the VRTAC for Quality Management. And so we could share with other states as an approach on how to do it because it really is very well done, very well done. So I know both of you are super creative like you guys are talked about so many cool things that you're coming up with. But I'm sure you have some frustrations or challenges in planning for change, whether it's that longer term succession planning or navigating just that fast pace of employee movements. So what kind of what are your biggest frustrations or challenges and how are you addressing that? And Joe, I'm going to go to you first on that.   Joe: Yeah. So it's a really good question because it is not always peaches and cream by no stretch. So I'll use a real life example. You guys have heard me talk about this at conferences in the past expedited enrollment. The concept is really the consumer shows they're maximally interested in going to work. And that says the determining eligibility and beginning services now not waiting 60 days and 90 days to develop a plan then and do all that kind of stuff. And branches are in teams around the state. They've embraced that. They've jumped all over it and it just took off without a whole lot of push in other places. It's just really slow to get traction. And what we find is that groups of folks develop their own norms in their own culture, and a lot of these processes that you would think would be easy to change, even though somebody may not have embraced it when they showed up pretty soon. That's what they know. So getting folks to let go of something they've been doing for years to grab on to something different is not always as easy as we would like. The other one, of course, is that we layer on layer after layer after layer of do's and don'ts in the work as we approach it.   Joe: And over time, you look up and you're buried under all that. So peeling that back just takes way too long and way too much energy. And I think one of the things for us. One of my frustrations is identifying those things that we can do and then realizing they've always been there, and we just had not thought of a way to do it. So. Another example we are now instituting a debit card or credit card approach for consumers to procure certain goods and services they need. We've been wanting to do that in this organization for decades. Can't go. It can't do it, can't do it. Pandemic shows up new faces and one of our executives said, Well, we can do it tomorrow morning if we approach this as a service and not an IT modernization approach. And it's like, Oh my God, and that's been in front of us for decades. So it's knowing that there's things that can be done unearthing them and finding the people to champion them. And then when you do getting people to let go of the old and grab a hold of it, that's brilliant.   Carol: I love that. You know, it's so funny how people want to hang on to something, even though it's like awful and they've been doing it forever. But we've been doing it that way. Yeah, they don't want to give it up. No.   Joe: Don't they complain about it to you routinely and you say change? No, it's like, Wait a minute.   Carol: I know, I know. So Jane, how about you? What have been some of your kind of bigger frustrations or challenges as well?   Jane: And kind of piggybacking on that because people don't want to change in, there's constant change and then they're saying there's too much change and holding on to the old and just feeling completely overwhelmed. But I think probably one of my biggest struggles is just not having enough time to really thoughtfully carry through some of those initiatives. I mean, almost like Jo's story, you know, decades ago, you talk about a concept and finally something happens and you're able to do it overnight. So but just having that time to thoughtfully think about what we need to do to strengthen the agency and move forward, at least. And I'm sure Joe, this never happens to you, but I feel like I am constantly being hijacked with my time about something that totally takes me off the track. And so I just, you know, I'm like, I had the whole afternoon for this and something else happens, whether it's the Legislature or we have other programs under the division that sometimes do seem to get more attention than the VR program, even though the VR programs are largest program. Those are things that are really frustrating for me, but I instituted an annual planning with the LTE. Every first of every year we get together just as our core group. We go off site so that we can't be distracted by too much, and we really talk about things that are outside of the state plan goals. They're just really internal things that we really want to focus on and try to accomplish. Sometimes we're really excited and we celebrate those accomplishments, but we have an initiative right now that. We actually have talked about for a couple of years now, and that is for a CRP manager, and we have not been able to accomplish that in the two years' time because something has taken our time where we haven't been able to really put the time in to really find the right person for that position. So if anything, my biggest frustration is not having enough time to do all the things and then getting kind of sideswiped by other people's agendas. It can be frustrating.   Carol: Absolutely, Jane. I know you were exploring some different initiatives when I was talking to you that you were exploring with your H.R. So can you tell us about some of your thinking around that on offer? Or maybe it's all secret, but I don't know if there's anything you can share.   Jane: I don't know if it's legal. No, I'm kidding.. We certainly are always trying to find ways in which we can maximize our employees in terms of again, going back to maximizing on their expertise. We did create area transition counselors about a year ago. That really works. We work more closely with school districts and parents to help have them understand the importance of pre-employment transition services. So again, looking at the expertise of staff that we have and how we can maximize those. One of the things that we've done for our counseling stuff because based on our CCPD, we do require that our counselors achieve a master's degree in rehabilitation counseling or related field within five years of being hired if they come in as an under fill. One of the things we instituted about a year or so, maybe going on two years now is tuition reimbursement for those staff that are seeking their master's degree. So we do ask them to look and determine whether there's RSA scholarships and how they can utilize those funds prior to our own. But for those who may only get a partial RSA scholarship or can't find one, we will do tuition reimbursements and there's some caveats to it. We're just not giving away free money for them to get their education and then leave us because we don't want that either. But that's been an initiative. I think we started that at about January of 2020.   Jane: We also have been utilizing some of our retired counselors when we have open positions and we're having a tough time recruiting. So if we've had a recent retired counselor and they've been separated from the state with the defined time the state makes them be separated before they come back, we have re-engaged with them and some of them are thrilled to come back on a temporary basis to fill in while we're recruiting and training some staff. The last thing that we really worked on in the past year was informing our division of human resources about how underpaid our counseling staff was and to try to help increase the entry level wage for our under fill and then our counselor and our counselor senior position. It was certainly a challenge. A lot of documentation was required to demonstrate that we are well below the market and what we're paying our professional staff. And again, going back to some of the initial conversation, when you have turnover that impacts the bottom line, our customers, they're not going to get if there's gaps in counselors and we have other senior counselors trying to fill in caseloads that does ultimately impact the effectiveness of the service delivery. So we were able to impact our entry level wage. We'd like to see it impacted more because we're not sure that that really is recruiting people still at that, but we're always looking for different ways of impacting our staff.   Carol: Well, good for you and good for trying. I might have to send a couple other state directors your way that are newer in and they're trying to figure out how to do that. They've been looking at trying to get that entry level wage up, and they're having some trouble.   Jane: One of the things, Carol to that and I wanted to mention, I sit on our Workforce Development Council as representing the VR program, and we talk a lot about how we develop a strong workforce in Idaho and out of our Workforce Development Council. There's a majority of our business representatives in the private sector. I have talked with our executive director of the Workforce Development Council about state employees, the state employees of Idaho. We're the largest group of employees were twenty five thousand employees. And I said if we can't impact how we retain our own staff, but yet we're always talking about the private sector needs somewhere we're failing. So I'm trying to get her and. She and I are good friends, so that's a real benefit for me about how we can really impact that at a higher level through legislators and through our governors was to say, Look, we are the workforce of Idaho,   Carol: Bravo, Joe and I are not in our heads. Yes. That is awesome. Yeah, definitely. So, Joe, you know, I always think of you as the idea guy, and I know you like to plan that just for now, but for later in your whole microscope telescope example was the right spot on him. Like, that is awesome. I remember when the pandemic started, and I remember you planning for the end like everybody else was talking about the right now, and you're like, Hey, we're doing some planning for when we come out of this. And I thought, Wow, OK. But you're smart to do that. So how are your wheels turning right now? And can you give us a glimpse into your thoughts about the future of VR and how we're going to ever ensure the continuity of services going forward in the next three to five years? I wonder what's your magic telescope, saying Joe?   Joe: Yeah, there you go. So there's a couple of things, I think with an eye towards that future. It's leveraging the flexibility that the pandemic showed us could be done right. And I truly mean that. So earlier, I mentioned as an example the consumer payment card initiative that we have because of the pandemic, we were able to go to the Legislature and the administration and get 20 million dollars to engage business to think about hiring people with disabilities in a very, very different way. So how do you leverage the opportunity to COVID presented and run hard with it, not just tinker around hard with it? So a couple of other things are hybrid workforce, right? We first see in this department 50 to 70 percent of our staff being in virtual remote work at any one time. There's a lot to that, but that's the way the world is going. So if we try to anchor ourselves in brick and mortar, we're going to be left behind. And more importantly, think about the people that we're preparing for tomorrow's jobs. If the world is shifting to a hybrid workforce, work from home, work from anywhere and we're preparing people for the brick and mortar, what kind of jobs are they going to have? So we need to really just stop thinking about where VR wants and start looking at where business going. Where are the people who are making the hires going? There's so much to that. Let me think about the fact that we're all sitting here doing this podcast remotely, watching them remotely, right? This was always possible.   Joe: We in VR has never done it in the way that we have in the last year, year and a half right as an example. And then the other one that I think is huge is what I call a systems alignment and that is really looking at an individual from where they are very person centered and VR is excellent at individualizing to the individual, but we got to take it further. It's a whole person. Somebody comes to us needing a job, but they may need housing, they may need transportation, they may need food, they may need a number of other things. When we have true systems alignment, we're able to look at that person as a whole and bring all of the systems in a seamless way to bear around that individual, which I think only ensures their success and employment and gets them the hell out of poverty that much faster. So really, really leaning into engaging with other systems, and I'm going to borrow a term from our dear friend Robert Doyle. It's specialization without isolation and this coordination and collaboration without fear of consolidation. I'll go to anybody's table any time, any place, as long as we're talking about employment for people with disabilities as part of that mix exception. So that's a couple of things that are going through my head on where we're going and what I see VR needing to do and moving forward.   Carol: So you're always super profound. You are. I love that. I think I took a bunch of notes. I'm like, I love all of that. I was excellent. And Robert Doyle, yes, I've heard him say that. That was really that's really cool. Absolutely. So, you know, you've got colleagues across the country struggling and people are feeling even though we're virtual, but people still feel isolate like we're all having a wild Monday and lot going on. So are there any words of wisdom or advice you have for other leaders that are wrestling with the same topics you two are wrestling with? And Jane, I'm going to go to you for some last parting words of wisdom to the field?   Jane: Well, I love so much of what Joe just said in terms of being flexible, being nimble, thinking outside the box. But I do think it's leaning on your peers outside of your own organization, whether those be the other systems in your own state or your peers. We have a very strong what we call Region 10. We're connected with Alaska, Oregon and Washington and Idaho. We have our coalition. They're my peeps. I can turn to them, I can talk to them. I reach out with them if, hey, what do you think about this? Or what are you doing over there? We meet monthly, and of course, that's been great with a virtual platform to be able to do so. Our chief of field services with their chief of field services, our fiscal meets with their fiscal. And so that connectedness with your peers there, it's so invaluable. And then when I got this position, somebody said, You know, Jane, it's lonely at the top, so find the people that really can help support you. She wasn't kidding. I didn't realize that I came from the field. I was a counselor, trained and had those connections. But when I changed to the administrator, something happened. I don't know, but I really turned to my peers in the industry and those who are actually part of those systems within the state of Idaho to gain that kind of support.   Carol: And Joe and I were vigorously nodding our heads. It's absolutely I always tell people like, you've got to find a buddy, you know, you need that buddy. And Joe was always my buddy. So was Allison Flannagan. I got lots of ideas from Joe over the years, and Allison had helped me when we were facing some pretty tough stuff because it's like you have to get out of your own head. Yes, you know, you kind of think your way and then somebody gives you these other ideas and you're like, Oh my gosh, that's like brilliant, you know, to take that collection of good thinking from around the country. I love that. How about you, Joe? Do you have any words of wisdom or advice for other folks?   Joe: Yeah, I I'm just did ditto ditto ditto to what you and Jane just have said. I promise you, if you're going through it, somebody else has gone through it and somebody else can share a lot of experience with you about that. That will be invaluable. Sometimes you don't even know who that person is, right? And it's like, you know, I'd call somebody if I knew who it was. Well, if you don't know who it is, pick up the phone and call one of the three of us and say, Hey, who could I talk to about this? You have your CSAVR team, you have your TAC teams, you have folks you may not know, but they will know. And I promise you, those conversations are going to be well worth the time that you make for that. That's one thing. But the other thing that I think is really important and that is tomorrow time, tomorrow time, you have to make the time to sit back and think about tomorrow because today's problems will bury you, right? But if all you're doing, you're shoveling out from under today's problems. That's a microscope telescope. You got to make the time to put that telescope in focus because a lot of times when I do that, it takes that problem of the day and it just changes that whole focus and it changes that whole mindset of how we're going to approach it. We're not going to solve it for today. We're going to solve it for tomorrow and the day after that. And there's a very big difference between solving for today and solving for tomorrow. So building those triggers that help you be the one that looks up and out because you're the lead in your agency, you're amongst the leaders across this country, in our respective profession. And if you're not the one looking up and out and down across that horizon, nobody else is going to do it for us, folks.   Carol: Well, said Joe. Well said, I really appreciate you both being on the show today. Thank you so much and I wish you both continued success in your states. You're great human beings, and I'm really pleased that you took the time to be with us today. Thanks again.   Joe: Thank you,Carol.   Jane: And fun. Thank you.   Announcer: Conversations powered by VR one manager at a time, one minute at a time brought to you by the VRTAC for Quality Management. Catch all of our podcast episodes by subscribing on Apple Podcasts, Google Podcasts or wherever you listen to podcasts. Thanks for listening!  

In The Garden
Diagnosing issues with your plants

In The Garden

Play Episode Listen Later Sep 6, 2021 8:14


[00:00:20] Keith: And I brought in Steven Petrilliac who manages our nursery and we were talking about all the number of things that people are bringing in this summer leaves and brown spots on them and insect problems and plants that have been overwatered and underwatered. So we thought we would talk about that today and give people options as far as what they can do. [00:00:55] One of the things that we always recommend doing is taking pictures, bringing in samples. We can usually diagnose a problem. And then make recommendations as far as how to rectify that. What kind of things have you been seeing in the nursery, Steven? [00:01:07] This time of year, we're seeing a lot of fungus and disease bacteria. Viruses can be another issue. There's a lot of stressors right now, we go through one of the driest Springs on record to now, I think 10 or 11 inches above what the average is, which can really get plants stressed out and confused. [00:01:24] So a lot of the pictures people are bringing in yellowing leaves, spots on leaves dropping off trees. And I think a lot of the causes are. Related to the weather conditions under fertilizing or over-fertilizing is another issue that can lead to those problems. [00:01:39] We always recommend either bringing in cuttings or sending us pictures or bringing in pictures. We can properly diagnose the issue give them the right treatment and go from there.  [00:01:49] Keith: One of the things that, we've talked about a number of times is watering issues over-watering, and under watering and how, it sounds like we're clueless when people ask, if, we think it was overwatered or underwater, and it's the same kind of. Look over water, the plant doesn't have oxygen and takes up water. [00:02:04] So it does have a drought. You're sitting there looking at a plant and it's sometimes it's, it's just it questions and just be able to figure out. Exactly the issue is, but right now over-watering is always one of those things. It's a little harder to rectify because it's more of a planning issue, a height that the plant, elevating the plant in the ground. [00:02:22] Sometimes it's raising that plant up or diverting water from around that plant. With heavy clay, it's almost like having a bowl and you get that plan in there and it's hard to have that water to drain off.  [00:02:33] Steven: And I think a big factor too, is, a lot of times customers can come in with issues and they feel like they might need to be defensive. [00:02:41] The biggest thing for me is for them to be completely honest about whatever the issue is. So if we ask, how often you're watering, tell us the truth right off the bat. We want the customer to be successful with everything. Whether it's a plant that they got from us or they didn't get from us. [00:02:56] So a lot of times they'll try to find a way to tell you that they're watering it the way that they think you want them to water it. So they'll tell you they've watered it, two or three times a week. And then, the next thing is well, how long are you watering it for, do you go out there and spray it with a sprinkler for a few minutes, or especially newly planted plants need to be deeply watered less often as opposed to constantly watering for short amounts of time, I feel like that's  [00:03:21] Joe: when I go to the dentist and he's have you been flossing? [00:03:23] I'm like, you see my mouth? Why do we gotta play this game, man?  [00:03:29] Keith: And you're like, yeah, I floss every day, twice a day. I floss in the morning. I philosophy lunch. We do get a lot of that. And it's, I think people want to do the right thing and they want to feel like they did the right thing, they don't want to be part of the failure in the process, but, educating people to water correctly or to plant correctly is what we're there for. And then when something's not working out, if they can bring in pictures and bring in cuttings, we've got like a huge staff of people. And if you're not in our neighborhood or right in our area, go into I think sometimes go into a Home Depot or Lowe's, those guys don't necessarily know horticulture. [00:04:06] They don't understand the science behind the plants and so going to a local garden center. In our area, a garden hut, a Logan's a Homewood for the garden state, one of the local garden centers, that's got people that are really knowledgeable about plants and, it takes quite a few years to be able to look at a plant in the landscape Or look at a picture or look at a leaf and really be able to diagnose, and typically, a lot of times it's not definitively, it's 90%. [00:04:33] This is, it's an over-watering scenario. [00:04:35] Joe: So you mentioned earlier, you get a lot of fungi because there's been so much rain lately. How do you treat that? What's the treatment look like?  [00:04:41] Keith: for So there's, it's given the plan a little bit more light sometimes it's true. [00:04:46] It's treating it preventatively with a fungicide. That's another thing that I see people come in and they'll say and this kind of bridges to the whole pollinator scenario. A lot of the pollinator problems are chemicals and pollutants and things that are going on in the environment. [00:05:00] But people will come in and they'll show you a picture of a bottle. And they're like this work and, homeowners don't understand the difference between an insecticide and fungicide. It's something to spray on a plant and, and, or a, an insecticide that's made for something that you're gonna use in your home or an insecticide that you're going to use on your plant. [00:05:17] Can I spray this on the plant? No, absolutely not. It's for spiders, in your house. And then, just understanding the difference between a fungicide and insecticide in or a systemic. There's foliar systemic, so you can spray on the plant and it goes into the leaves and then there's systemics [00:05:30] You can put on the ground that the plant takes up and protects the plant from the inside out. But fungicides is what you would put on this time of year for fungal related issues on the leaves or in the  [00:05:40] Steven: roots. It's funny you say that thing about showing us a picture of a bottle. So if it's not an existing customer that we've already had in the store they're used to going to ACE hardware or Lowe's or Home Depot. [00:05:51] So many of the new customers that we have that come in and they're like I bought this and then I went back and I bought this and they got these two or three different products that they've gotten from Lowe's that they did or did not have any guidance on. And that's where I'm like, okay, going forward, just come here first. [00:06:06] Being in ahead of the game, not everybody walks around their yard every day, checking out every plant. But the worst thing you can do is just wait till the last minute and then try to play catch up.. Especially things that you've planted recently, keep an eye on, if it starts to turn color or you start to notice anything about it catching it before it's too far gone is the best thing you can do. [00:06:25] Keith: . And on that note there's a lot of insect and disease problems that a lot of times somebody will come in with a powdery mildew issue and there is that we're getting towards summertime, most powdery mildew functions really well between 60 and 70 degrees. So that's when you're going to see the problems really show up on, on foliage. [00:06:42] If it gets hot and dry. That problem will go away on its own. So sometimes you're recommending to the customer, go ahead and fertilize the plant and give it a boost of energy, but don't apply the fungicide yet. Or somebody will bring you an Azalea leaf. And if you go out and if you've got azaleas and you go out and you flip the leaf over this time of year, you'll see brown specks all over the back. [00:07:04] And it's residue from insect problems that were there a month ago. But if you go out there. And spray the whole Bush. You're just spraying the whole Bush. You're polluting your environment. It's not benefiting pollinators. It's not benefiting your dog or your kids, and it's not benefiting the plant, so you've missed that window to spray it and, so getting good information about when. Rectify that situation. And it's going to be next spring when the plant's in bloom. So Azalea's you spray as they're going out and bloom, you spray them preventatively, or you fertilize them with a systemic insecticide. [00:07:37] So that protects them moving into the season when you would have lacewing. But, knowing the lifecycle of the insect and when to spray and what to spray is just. It's going to be beneficial to the environment. It's going to be beneficial to the plant

The Joe Costello Show
Females In Business with Rachel Edlich

The Joe Costello Show

Play Episode Listen Later Aug 26, 2021 58:58


Females In Business with Rachel Edlich In this episode, Rachel Edlich shares how she started as an entrepreneur, the influence her father had on her success today, her partnership with her sister, how she learned to be a successful product creator and marketer and so much more. Radical Skincare, the business she co-founded with her sister Liz Edlich, is a powerhouse skincare line that can be found in over 900 retail stores and in more than 17 countries. They also have a Brand Partner program that is empowering mostly women and some men, to be successful entrepreneurs in their own right. This was an enjoyable conversation with Rachel and I look forward to interviewing her again down the road at their next successful milestone. Also, check out their book "Get Radical: Secrets to Living a Life You Love": https://amzn.to/3jkyoFD As always, thanks so much for listening! Joe Rachel Edlich Co-founder - Radical Skincare Website: https://radicalskincare.com Discount Code: Costello10 Their Book "Get Radical: Secrets to Living a Life You Love" Our affiliate link: https://amzn.to/3jkyoFD Instagram: @radicalskincare Facebook: @RadicalSkincare YouTube: https://www.youtube.com/user/radicalskincare Twitter:@radicalskincare LinkedIn: https://www.linkedin.com/company/radical-skincare Email: customercare@radicalskincare.com Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.libsyn.com Subscribe, Rate & Review: I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to: https://joecostelloglobal.lybsyn.com Follow Joe: https://linktr.ee/joecostello Transcript Joe: Rachel, welcome to the show. I'm excited to have you. I thought I might also see this, but I guess Liz is not going to be here with us. So you're going to have to answer all the questions that I have. Rachel: That's great. I'm ready. I'm Joe: Ok, Rachel: Ready. Joe: Ok, OK. First off, the company's name is Radical Skincare. Is that correct? Rachel: That's right. Joe: Ok, this is really cool because I don't have a lot of women on the show as much as I would like to have more women, because I think there's a big separation in the amount of exposure to women that are running, businesses that are successful. So, first of all, thank you so much for coming on the show. Rachel: It's my pleasure, thank you so much for having me here. Joe: Yeah. Awesome. OK, so I always like to get a back story from my guests because I think it's really important that a lot of times podcast will just kick off and people either know the guest that they don't and they'll do a little reading on them and not saying me as the host, but people that might listen to it don't know who someone is. But more importantly, I think how you got to where you are today stems from all that happened before at this point. And I think so much of that is missed on a lot of podcasts. People all of a sudden they just start talking about what they're doing today. And the newest book that they have out and all this other stuff. So if you don't mind, I would love for you to give a little bit of history and you can go back as far as you want. I've had people go back to kindergarten, so I don't care. And and since Liz isn't here, you can also, if you want, put in a little bit about that whole, you know, how it happened with her and you and the connection of all of it. So now I will be quiet and let you click. Rachel: Ok, no problem, while I was going to say how much time do we have? Joe: Yes. Rachel: It's like if I go back to kindergarten. Yeah. So, you know, so for for us, we were raised in Virginia on an 18 acre farm, and our father was a very well known worldwide reconstructive surgeon who specialized in wound healing and skin rejuvenation. And he started the burn unit at University of Virginia. He invented stere strips. He invented dissolvable sutures. So, you know, his commitment was really to science and changing the world like that was my dad and my mom was a bit different. She was an actress on Broadway. She was in West Side Story. But, you know, she basically was just God kissed her and said, you will sing. And so she was in West Side Story, but then decided, hey, I'm going to I'm going to have kids. And then she met my dad. So we were really bookended by two very interesting people. And it was my sister, my brother and I. And growing up on a farm surrounded by my father's brilliance. And we were pretty much we'd go to the hospital with him, work in the lab. We did research with him if there was ever a problem. My dad was like, we'll invent it. See, my brother, my brother broke his clavicle and he's like, we're inventing the shoulder of the perfect shoulder pads. We did. Rachel: I've done I don't know how many research papers on lacrosse injuries because I was a lacrosse player or whatever. So it was like, you know, we we really were raised in that environment all the time. And we got a very, very strong work ethic, because imagine we were basically the ones running a farm as well. So from that, you know, I ended up wanting to really follow being able to help other people. I thought, gosh, I think I might become a therapist, that, you know, that's what I'm going to go and I'm going to I'm good at communicating with other people. I think I read situations really well. So I went to college. My sister went to we all went to actually we all went to the same college. And I got a counseling degree. And then I was like, OK, well, you know, if I really want to sit in a room all day and go through that process. So I ended up running a Boys and girls club for like 800 children. And I love working with kids and developing programs and drug prevention programs and all the different things that the Boys and Girls Club provided. But at the same time, I love to be able to give back that way. I also wanted to make money. Joe: This is. Rachel: I'm like, OK, you know, I love working with children and, you know, especially where a lot of them were in really tough situations. But I said I could do that as my volunteer time. So my sister was living in L.A. and we were always super close. And she's like, well, just come move out here. And it's like, I can't move without a job. You know, it's like having all these reasons why I can't. And I was like, you know what? I'm doing it. I was like, Liz, I can't come without a job. And she's like, well, you know, I just raised money for a company. She was in money management and venture capital, and she was like, and they actually need someone and to run their customer service department. And I was like, I can do that. So, you know, you're young. You Joe: Right. Rachel: Can make me make these big moves. So I packed up my dog in my house and I moved out to L.A. and Liz and I started working together and deciding we were going to start a company. Really wanted to always at the core of us is like it has to be driven with purpose. We have to have like we always need that passion. We're very entrepreneurial because we just can't help ourselves. It's like that's just our nature. So we got into the skincare business and in 1999 and doing, you know, product development, a lot of research, science, of course, you know, coming from a science background with my father, that was that like completely made sense to us. So we started creating products for celebrities, for retailers or QVC, Aitchison, a lot of brand development. So that was kind of our entree into working together. And I know everyone's like the big question is, how do you work with your sister? Joe: It's right, it's tough. Rachel: Everyone's like, how do you guys do it? And we're super blessed. I know we're rare. We're like or like a rare breed, but we're both different in our strengths. So we are able to really complement. Each other and I think there's the bond of our family and that we look after each other. And I mean, that's been probably one of the most special things about our relationship and being in business together, kind of coming into how Radical happened was we were doing our business. We were like at one hundred and fifty million dollars and sales. I mean, we were doing amazing, loving what we were doing. And then I had my second child and I developed rosacea. So, you know, life throws in like little things to move things around, make you start thinking. And I was like, wow, you know, I've always had good skin and my skin was red, splotchy, irritated. I tried putting makeup on. It made it worse. It was the first time where I had actually had this level of insecurity. Like I'd walk into a room and it's like my face walked in first and people I'm like, are they looking at me? Oh, my gosh. They can tell. And, you know, it's like this weird thing that you go through when you're when you're experiencing how you look on the outside matter so much. So you have to like say, OK, it's how you feel on the inside. It's a this is an inside job. You know, work life is not perfect. We don't we're not going to always look perfect. Right. Joe: Mm hmm. Rachel: So, you know, how we feel on the inside is felt by the world. And I went to the dermatologist. They basically said, you'll be on medication for the rest of your life. I'm like, are you joking about it? This is like a little quick fix. You know, you're going to Joe: Right. Rachel: Give me some cream and it's going to be gone and then I'm done. Poof, right. And they're like, no. I was like, oh, great. So I ended up trying on everything they gave me. And my skin was always more inflamed, burning. It was on fire. My face was on fire. And my sister, she's six years older. And since she's not with us, I can always like make her the older sister. Joe: Yes. Rachel: But she Joe: Yeah. Rachel: Is. Joe: There we go, I knew this was going to start sooner Rachel: Yeah, Joe: Or later. Rachel: Exactly. That's what happens when we're not together Joe: That's right. Rachel: On the Joe: That's Rachel: Podcast. Joe: What she gets for not being here. Rachel: Right. Joe: Right. Rachel: Right. So I'll make sure she listens to this. So she's like, Rachel, I'm older than you. It's going to be happening to you, too, but I'm looking in the mirror and gravity is really, truly real. Like this stuff is happening. My skin is just now bouncing back the way I used to, that I wanted it to. And I said, OK, Liz. Well, I guess this is the perfect storm. This is like between the two of us. And I said we have to create the strongest skin care for antiaging, but design for sensitive skin. So thank goodness we had the brilliance of my father and his ability for science and research. And then we got together with a team of chemists and we basically said we are going to put the best of the best in the bottle. We had no intentions of selling it. It wasn't like, oh, we need to be in another skin care business. Not at all. We were like, put the best of the best in the bottle. We didn't care about the cost. We weren't worried about the margins. We weren't worried. We're just like, let's just fix our face. So we got with the scientist, we really started to look at some of the leading reasons for aging skin coming up with solutions for that and coming up with a technology which was our TRALA cell technology, where we're able to deliver all the powerful ingredients to the skin without irritation. Rachel: And after my skin, after just three weeks, my skin completely transformed. I was able to get off all my medication. I'm telling you, it was like adversity brought complete opportunity for us in that moment. And my sister, people were noticing her skin changing. We gave it to friends and family and like little bottles that were like serum moisturizer, you know, it's like in the back of the lab, we're like, okay, here you go. You got a tray. And and people were like calling us like, what is this stuff? So listen, I looked at each other and we said, you know, that's pretty radical. And that's kind of where Radical was born. And we said, you know, our dad always said, if you have an asset sitting on the shelf that no one else knows about, it's not OK. You have to share with the world because there's other people going through what you're going through. You're not in this little world of just Rachel and rosacea. There's millions of people out there that are struggling with rosacea or problematic skin or sensitive skin. And the more research we did, it was like 80 percent of women believe they have sensitive skin. And so they're very particular about what they're putting on their skin and the irritation. So we really took a lot of time and developing our products to make sure they were consciously clean, that we were delivering radical results. Rachel: So we had science behind it. You know, we did clinical on our products because we like to prove out whatever we're going to say. We want to be there with confidence. So we launched in 17 different countries, in over 900 stores and just two years. And Liz and I hit the road and started to work with all the prestige retailers and training. And the interesting thing that we found is this yearning and hunger from all the associates and customers that we talked to about that feeling of were inner self meets. Outer beauty, which is so important to us, is, you know, how we feel on the inside is felt by the world. And we've been really blessed with working with Bob Proctor, who was very close to us and a lot of personal development work where we knew that there was a method to really getting amazing skincare science, to getting radical results. But also there is a technology for creating a life you love. And so we ended up really looking at that closely and listening to people really wanting more there or there are hungry for more purpose and passion in their lives. So that was like our aha moment. And we said when we came back to the states, we're a global so we have a global footprint where in Australia, Switzerland, the UK, all over the place. But in the US, we decided that we were going to buy our products back off of the shelf. Rachel: We we wrote our book, which is "Get Radical: Create Secrets to Creating a Life You Love." And then we said, we're going to buy all of our products back off the retail shelves, take the profit that we normally give to the retailers. Take our science. Take all of our from clinical to all the press that we've gotten over the 11 years and the investment of 20 million dollars into our brand and give that as a turnkey opportunity for others to be able to create passion, purpose, health and wealth. And that's when our brand partner program was born. And we did that. That was kind of like born out of. Covid and a lot of it and and that's just caught on fire because we have the selfcare element, that purpose element. We're a movement that matters. And we always know that if we stay close to our purpose and our passion, Liz and I, we've had moments, we've gotten off track where you're not waking up feeling passionate or purpose driven. Then it's like, OK, OK, I'm going to go do that today. And that was important to us. We wanted to we want to touch millions of people's lives. And we know through our brand partner program, we can touch more people than through any retail store ever. So that's kind of our journey to where we are today. Joe: Well, there's a lot to unpack here, Rachel: I know. Joe: Because any time you can correct me, but I would I would say that this is going to be a unique episode, because for the listeners are out there that are women. This will speak to them more than it will. Guys, I don't even know if you have any men in the brand partner program. Rachel: We do, actually, Joe: Ok, Rachel: We Joe: So Rachel: Do. Joe: See, that's why I wanted to ask you. Rachel: But Joe: Ok. Rachel: It's the majority, a majority of them are women. Yeah. Joe: Ok. And then the products that you have, are they mostly all women? Are there some men? And that's why you have a couple of men and the brand ambassador Rachel: Our Joe: For that. Rachel: Our brand is very unisex Joe: Ok. Rachel: From our packaging all the way through, it delivers amazing results. We do a lot of coaching, even with a lot of the women that are like, oh, what do we offer to the man? And it's like these core products that men just absolutely love. Like we were in Barneys, we were in the men's department there when we launched, and because we did so well and with the men as well. Joe: Ok, so here's the part where we're going to rewind, because Rachel: Ak. Joe: This is this is how I think your story and there's this story and this product and how you did all of this will really help the listeners and especially the women listeners. So you came from a background that was science based because of your father. It sounds like a brilliant man. Is he still with us or is Rachel: No. Joe: Not OK? Rachel: Yeah, my father had multiple sclerosis on top of everything else Joe: Yeah, Rachel: And Joe: I saw that, and Rachel: Yeah. Joe: So I was I was so I didn't know if he was still around, but Rachel: Would Joe: When Rachel: You Joe: You Rachel: Have. Joe: Started this process of wanting to do this with your sister, was he around to help with the initial part of it? Rachel: Yes, Joe: Ok. Rachel: My my dad basically, when I moved to or before I moved to L.A., was saying to my sister, you two need to work together. Like he he's like family. You need to work together. Joe: Right. Well, that's awesome. Okay, cool. So I'm going to put a pin in that one piece of it because I have to come back to that again, because there's more questions than if I Rachel: Sure. Joe: Was listening. I would be like, OK, there's one thing that was a plus for the both of you. Rachel: For sure. Joe: So I'll get to it. I'll explain where I'm going. And I'm sure you Rachel: Ok. Joe: Already understand. Your sister was a stockbroker, an investment banker, a stockbroker, whatever. She she took that route. And then I noticed that there was a company called One World Live. Is that Rachel: Mm Joe: Correct? Rachel: Hmm. That's Joe: Ok, Rachel: Right. Joe: So this is the company that she ended up creating, purchasing, investing, one of those. Right. Rachel: Well, it was actually a company prior to that that she invested money in, and I came out and I worked for that particular company. Joe: Ok. Rachel: But One World Life we created together, and that was really driven from product to we had a lot of celebrities with where we would do merchandising for them with their product. Yeah. So that was where we really got into product development, like the the whole process of making products, whether it was weight loss, whether it was jewelry, whether it was skincare. And that's where we actually had our first experience with skincare at that time. Joe: Ok, so if I was sitting and listening to this, I'd be like, OK, how do two women that are not in this world make this jump into this competitive marketing product delivery business? People usually have some sort of experience that they initially get in that and then they go, hey, I can do this, and then they go out on their own and start it. So explain to me how your system leaves doing the investment banking piece of this. You leave what you're doing and you move out and all of a sudden you're this powerhouse marketing team Rachel: Right. Joe: That has this company. And there's a there's a gap there that I want you to Rachel: Got Joe: Fill Rachel: It. Joe: Forms. Rachel: Ok, so my sister raised money for a company that had a weight loss product. That was the company that I started working for. And I started to learn about infomercials, commercials, direct mail catalog. That was kind of where I first learned like, oh, who was right when infomercials hit in 94, it was like all of a sudden it's like, what's this infomercial thing? And so we. Joe: But wait, there's more. Rachel: Yes, exactly. Hey, you know exactly what I'm talking about, Joe: Yeah. Rachel: And I'm so yeah, so we. I worked for that company and unfortunately the people that were running the company were not doing the right things with the finances. So I told my sister, hey, heads up, my check is bouncing. She's she has investors in the company. So she ended up having to go in and basically take over the company. And that's called like you're just thrown into the waters. You have no idea what you're doing. And it was crazy. She had to sue the company, a lot of the players, and she won, which was unbelievable and won the company. So then we all of a sudden inherited a weight loss company that was doing really, really well. But, you know, we didn't have a lot of experience at the time. So it was something that I do primarily and anything like all my businesses. If I don't know something, I get really smart really quick. And I talk to a lot of people that know a lot more than me. And so like no one Joe: Right. Rachel: Will find someone that knows more than you. Joe: Yeah. Rachel: And so that's what we did. And we worked with different individuals and started to understand the business more and how media spin worked. And I had to manage the media spend and I had to managed print campaigns and I had to buy inventory for all these products. I was like, buy what I like. All right, let's let's break open a spreadsheet and start getting organized. That was point one. But I actually realize I have a I'm super strong at doing those type of like I can operationally managing and dealing with a lot of moving parts and seeing how all the pieces fit together. So, listen, I basically kind of divided and conquered with that particular product. And then we did another weight loss product where we had investors involved in that. And then that launched. And then Liz decided that she was going to go back more into the investment banking. So I took the weight loss product and I went to another company and brought our product with us and had their infrastructure supports our product. But also, it was a great opportunity for me to learn side by side with other people that have been doing it for a long time. So it was for me like that part where we I worked with another company necessarily wasn't necessarily like my happiest time, to be really honest, because a little more entrepreneurial and. But I did that for two years and I was like, I'm going to get so good at all of this. I'm going to be so good. Like I'm going to just be a sponge. Rachel: I'm going to learn. I'm going to learn. I'm going to learn until I feel like I got my arms around this, all these tentacles that were flying around me and feeling proficient in that. And that was a really graceful time of firsts. Sometimes you're feeling and that feeling of uncertainty. And I'm sure everyone up there is gone through that feeling like lack of confidence, whatever it might be in that certain area. But again, I felt like one of the things that Liz and I had done is we surround ourselves with people that are mentors that can help teach and guide and trust me, you're going to pay it forward because there will be a time when someone's going to work for you that you can teach and you can guide. And so from that, I was Liz was doing her thing. So she started is a big thinker, a lot of creative ideas. And she she she and this other person decided we're going to start this company. And she called me up and she's like, rich, like, I can't do it without you. Like I need you. You know how to get it all done. You know, I had to make it all. I'll put all the wheels on the bus and make it go forward. And, you know, you've been in the business. And I actually haven't been in that part of the business. But we're going to kind of do that business again in a different way. And I was like, let's do it in our. So that's how one world was actually created. And. Joe: And what year was that? Rachel: That was in 19, I think it was 1999 is when one world was was created. I Joe: And Rachel: Actually. Joe: When did you when did you move out to L.A. from Virginia? Rachel: 94. Joe: Ok, so five years later is when Rachel: Yes. Joe: This happened, OK, Rachel: Yep. Joe: So you've had all that time. Rachel: Exactly. To Joe: It. OK. Rachel: Learn fast. Joe: Yeah. Have. Rachel: It was like a fire hose experience, like, OK, open Rachel, Joe: Yeah. Rachel: Insert all information. Yeah. So from there, that's when one world leader was born. And we did that for we still have that company. We still have a product line that we have on QVC. And so we had a. And we really had it was the that company was going to we were looking at it as a public, the public traded opportunity to do an IPO. And it was when the technology just fell, fell apart. And we ended up having to really pivot fast because a lot of money was raised for the company. And at that point, we had we had probably almost a hundred employees. We had a lot of VC and investors. And Liz, that was primarily her responsibility to deal with them. But at that point, they just weren't investing. And unless you were a true technology, you know, like you're an app or you're, you know, so we ended up really bringing back through our direct marketing, our direct response. We had we did infomercials the whole time. So we had a lot of things going on. And that's really when we got into the skincare business, it was an infomercial of skincare. And then I developed the whole line, which had about say about 30 skews. So I did all the product development, all the research, creative and just learned, learned a lot about science, working with manufacturers, working with the chemists. Of course, we were fortunate enough with our dad for hours. But the chemists, we started to really learn about product development ingredients, raw materials, clean, clean beauty. And that kind of took us on our journey to Radical. Joe: Ok, so here we go Rachel: Ok. Joe: Is I have to ask because it's I know that even if I was listening to this and I just reframed it to be something that a guy would do, I have ideas all the time. But we stop ourselves because of things that we think are going to be roadblocks. So my first question is, let's talk about your father and the science and all of that without that piece. Some of the audience listeners might be saying to themselves, well, that's that's a huge chunk like that help having that experience, having your father to lean on, having that around you, to be able to start the process of creating products. Because if you start thinking about it, it's like, OK, I'm not going to go in my kitchen and start putting all sorts of things in a little bowl and seeing it smells nice and it works nice and right. So Rachel: Right. Joe: What would you say to any of the women listening? They don't have that science background. They don't have that father with that Rachel: Mm Joe: Brain Rachel: Hmm. Joe: And that intelligence Rachel: Right. Joe: And background. BILLINA. Can they still accomplish this? Rachel: Absolutely. So, yes, we were very blessed, and we we understand that so much. But we also know, like when we were developing products for One World Lives, I was in product development all the time. But I lean on my manufacturers. I wasn't calling my dad saying, hey, dad, like what do you think about this? Because it wasn't personal then. It was just like, oh, I'm creating products for a client and this is what they want. Some of the benefits to be or I look at like what the story is like, what is it that they're trying to say about, you know, themselves and their skincare brand. So it makes like it's makes sense. And then I talk to my manufacturer, who has chemists on staff, and I go and I sit with them and I talk to raw material houses. There's shows that you can go to that have all the raw material houses that go there that are talking about a unique ingredients that they're using. But I find a lot I get a lot from the chemists that are from the manufacturers about what's new, what's hot, what's working, what's an alternative to like we have right now that we just launched are an alternative to a retinol cream, which outperforms retinol without all the side effects. I went I researched, I talked to my chemist. What's what is out there right now? It took us it's not an overnight experience, like, oh, poof, we we just developed a product because then you want to prove the results, right? So you want to have some science. So you have confidence that if you're saying any kind of a claim, that you can substantiate that. So the process for Radical, it was with our dad, but that was like the beginning of the ideas and the science footprint. But I leaned heavily on all of the chemists to really help direct and come up with formulations that we know were going to give radical results. Joe: Ok, great, so I appreciate that answer. Rachel: Yeah. Joe: The next thing that I put a pin in my own mental brain was the money portion of this. Right. None of this has to be divulged. I just but let's say your father was a successful reconstructive surgeon, potentially. He made a good living doing that. At the same time, I know when I read doing my own research that when M.S. came around, that was also a financial burden. Right. So. Rachel: Big Joe: So. Rachel: Time. Joe: Right. So we can just let's say we eliminate that fact that he could have helped you at all. But then you have you have Liz being this smart financial person. So potentially she made a decent amount of money in what she was doing to then be able to back this whole thing. So my second question. Oh, yeah. Well, it's easy when you have a lot of money. You have someone who's able to bring in voices and start out with a chunk of capital and all of that. So can you address that both in either how it helped you and how you still think people can do it without having all of that? Rachel: So a couple of things, I think absolutely you can do it without having all of all of that and the that that we had pretty much for one world. I went to a lot of overhead because we had so many people, because it was such it was the One World Live Web site was really like the hub of what that company was. And so there was a lot of big talent being thrown at that because the VCs wanted to see a certain thing. Right. So in product development, if you want to launch a product, I mean, it can be in skin care, whatever it may be. I know that I can go and create a product with a chemist. I can call packaging companies and get samples of what the packaging might be. And I can come up with a marketing plan. And you you can get small business loans to support you on your initial growth. And I am really believe in a grassroots approach. So Radical has like our new business, which is that our Brand Partners program where we're treating that as a brand new business. So just because our our retail business we have from a global that took us a lot of years to put together and create success that doesn't come into my brand partner like I really keep those separated because I want to have this sitting and standing on its own. We could have gone to raise money. We could have, you know, tried to find people that would invest in it. But for us, we actually didn't want to have to deal with investors. We've done that. There's there is a side to having investors in your company that is a lot of work. So there is something really cool about owning your own company and you owning your own company and not having to answer to five other people and tell them what you're doing and why you know that it's on you. So. Joe: I second that, amen, I Rachel: Yeah, Joe: Say that. Rachel: Trust me, we've we've done it, we've had it where it's been investors and we now we have it where it's our own and we much prefer it as our own. Joe: Mm hmm. Rachel: And we're not willing to bring in money to fund our brand partners program because we want that to be it can be done organically. It might not be as fast as the guy that has five million sitting next to me, but does it have the heart and soul that I have? Does it does it have the you know, the credibility that my brand has? Like there's so many different things and who my audience is. So there's always ways of getting into a business without needing lots and lots of money to do it. You just have to take it slow and bit by bit and grow, you know, have a plan in place that you're you're following into doing your own projections, giving yourself like, OK, you can you can go and get private label products, which sometimes is an interesting way of testing a concept where you don't you can buy 100. You can test it on a Web site. I mean, Joe: Mm Rachel: There's Joe: Hmm. Rachel: So many different ways that you can go through your social media, Bienen, you know, you can be your own influencer and whatever it is that your passion and dream might be. So there's definitely ways of starting your business and not being like, oh, gosh, you need millions and millions of dollars to do it. Joe: Ok, great. I love all these answers, because to me, it's encouraging to the audience. And I was hoping that I even though I backed you into a corner on these questions, I know that reading part of your story and empowering women, this is important. And so that's why I want to talk about it as much as I want to make sure that we talk about your business. And trust me, we'll get the word out about Radical. But I think it's important that what this business means to you. I can tell is coming through this interview. And that's what I think is even more important, because that is really what people are attracted to, people who care about people. Right. And there's something that you keep saying that's a great saying that I'm going to steal from you at some point, but I forget what it is. But you'll say it again, I'm sure. And Rachel: Ranchero. Joe: I'll be like, OK, I got to remember that. So quickly, explain to me then the the science part of it, where if you end up working with the chemist, let's say someone out there has an idea and they want to do something. How painful and how long is that process of tweaking and creating the product? And then do products that you sell have to get FDA approval? Rachel: Ok, so no so in skin care, you have ones that are considered like over the counter, which would be an SPF. So those have to go through certain testing in the United States for skin care in the U.S.. It's actually it's pretty loose. It's actually not very rigorous at all. So we are global, so we're EU compliant. So we have a compliance person in the EU that goes through all of our formulations. I make sure they're checking it against the list of all the ingredients that are not allowed on the market or about to not be allowed on the market. It goes down to the like the raw materials, make sure they're paraben free, that they're not using any preservative systems that to be able to make certain claims. Like I can say, I'm paraben free in the U.S. It's not as rigorous. It has some things. And you can literally like look them up online, but they're not regulated. Like people are not regulating your formulas to say what's in it is OK. And think about how many you have a lot of people that make up their own skincare and will sell it even locally that don't have, you know, strong preservative systems in it where, you know, you don't know really how long they can last and that they're good for. But I always encourage that when you're doing development and you're talking to your chemists to make sure that you're being as clean as possible, there's a list on like even on our website that shows all the ingredients that we do not have in under our consciously clean tab. So, Joe: I saw that, which I Rachel: Yeah. Joe: Thought was brilliant, that there's Rachel: Yeah. Joe: No you're not hiding anything, it's all right. There it was. Rachel: Exactly. Joe: It Rachel: So Joe: Was Rachel: It's Joe: Very Rachel: Actually Joe: Impressive. Rachel: It's a resource for other people, honestly, Joe: Yep, Rachel: So, Joe: Yep. Rachel: Which is great. You know, just knowing what you don't want to have going into your product, and the chemist usually have a pretty good handle on that if you're working with a good, good manufacturer. What is regulated is the FTC regulates claims. So you can't make a product and go on Instagram and say, my product reduces fine lines and wrinkles, 400 percent and then show before and after. That's not necessarily the right one or whatever. Like that's where you get in trouble in the U.S. So they regulate that really, really closely. So you do have to be with your marketing. You have to be accurate in your claims and making sure that you're not misleading a customer. Joe: Ok, let's talk about. So now I understand that you still have the global retail business that's still happening in over 900 stores, and I had a note down here in 17 countries, probably Berklee. Now it's 20. So this is amazing. What is the team that you have? So you said you kept you keep the two businesses separate. So what is the team that's running Radical as opposed to the team that's running the ambassador brand program? Rachel: Right. OK, so we used to have a team in London, an office in London, office in Paris, one in Hong Kong, and Liz and I, we're looking at each other saying this does not make sense. And this was when we started Radical. We had definitely some big players involved, which were more on the state lotor level. And so us being entrepreneurial or we're not like corporate girls at all. So put us into a corporate environment or like what do we do here? We're like, we have to clock in and clock out. We're like Joe: Yeah. Rachel: We work. We work 24/7 anyway. Joe: Right. Right. Rachel: That's being an owner of your own company. They wanted to have this really broad footprint. And Liz and I, they were the experts and prestige and we really weren't. So we really follow their lead. And we noticed that like we we built it. We had all the locations. But you really have to have boots on the ground everywhere. So, listen, I ended up saying, you know what, we're going to buy our company back and we're going to do this in a smart way where we have distributors internationally. So like, for instance, in Australia, we work with Mekka, who's the largest skincare or any cosmetics retailer there. It's like the Safar of the U.S. and but they handle everything. I don't have to put freelancer's in the store. I don't have to do anything. They own it and they do an amazing job. And then in the U.K., I have a distributor there, and in Switzerland I have a distributor there. So my international business is very much distributor driven. So they manage their own markets, they invest in their own markets. They have certain things that they're supposed to do in order to maintain their exclusivity there. But that operates pretty much separately. The U.S. it's I have a core team that works just on the brand partners program. And it's a small team because like I said, we're doing this in a very organic way and obviously bringing people that have the experience and building a peer to peer business. So that's been super exciting. And that's that's what's worked by just having a core team that works for only on brand partner business. Joe: Ok, can you talk more about the the brand the ambassador program, just so that we can get an understanding if someone is listening to this and saying, I love this, I love the idea. They go to your website and they look at all of this. They get hit up all the time with all these other programs to sell cosmetics and skin care. It's sometimes it's a hard sell for them. They end up dropping off or they just they can't figure out how to get into something like this. And I'd like to know what your program is about so they know and then why it's different. And obviously that the ingredients that you use that's really coming to the forefront these days is that you're not putting ingredients in that can harm someone. So that's another really important thing. So can you talk a little bit about that program? Rachel: Yes, absolutely. So we kind of what I talked about earlier is that we just started to recognize that our brand is so much more than skin deep, and it always has been. It's just been listen, I speak from the place of possibility all the time. And we with all of our brand partners were like invested in their future. That's like we are invested in their future. That's why we call them brand partners, like you are our partner in this. And that's a big shift in how you are within a company, because we've created such a turnkey solution and support to help you get to wherever it is that you want to go. And we are building a very, very strong core community. We have a our comp plan is very, very simple. We noticed and the different types of ambassador brand partner type programs where there's this exclusion element, if you don't do certain things and you are not a part and our part is you are included. We're like, you can participate with us, however it works for you. So we have people that just are more like influencers are on there. You know, they're selling through their social channels and they're making great money. Then we have people that are like, oh, my gosh, I've got like I want to build a business. Like I want to invest Radical like my new baby. And you guys have handed over the keys with science, clinical backing, credibility. You've been in prestige. You have press for over the past ten years, you know, steeped in science about a movement that matters. And our company is always listen, I only see things like it has to be larger than us. Like everything we do has to be larger than us. Rachel: It's not money. It's not it's like it has to be bigger than us. And so like our vision is and goal will be we're going to be a billion dollar company. And that means that we are we are making millions of dreams come true. Millions. And that is our number one goal is to do that. So and within our community, we have like our deep dive, which we just did on Monday, where we open that up to customers or brand partners, where we do a chapter in our book and we like unpack it and we talk about it. And it's always amazing because it speaks to people wherever they are, whatever they're going through. We have the opportunity to interact and communicate and share ideas. It's great. And then we have a lot of other activities where, you know, we'll be traveling some to meet different people. And we have a shared pool for company sales where you can earn into the share pool. That's three percent of our company. So we're taking profit for all of our brand partners to be able to participate and based on whatever their performance is. So it's like they are profiting. And we have a founder's club, which is a group of individuals that are just working super hard and achieving different levels. So it's it's really a straightforward program. And we have one of the best ladies on our team that really focuses on helping individuals figure out how to incorporate that into their life, understanding comp plans. And she's like the best cheerleader in town, like you want her behind you. You know what I'm saying? She's like, come on, you got Joe: Right. Rachel: This. You know, I call her like Joe: That's awesome. Rachel: So. Yeah, Joe: Ok, cool. Rachel: And it's super easy. You can go on to our website and it says, just become a brand partner. You just click on it and has a lot of information there. Joe: Great. OK. I don't. We're getting close to the end, and I want to keep you longer than I promise. So talk to me about the book, "Get Radical: Secrets to Living a Life You Love." Rachel: Yeah, yes. So that was a labor of love. It was definitely time consuming for the both of us. Like what? What an experience writing a book. Never did we think I mean, my father is like such a. He's like published like 3000 peer review articles. Written books. I mean, it's like that's like no, no problem for him. And Liz and I like we really want to put this to paper, like we want to share through the mentors that we have met. And just the stories, because we really know that there is a technology to getting a life that you love, whether, you know, really getting those fundamentals of goal setting visualization and then what gets in your way. So the fear of failing, you know, people get stuck in making decisions like paralysis. So we talk about a lot of that throughout the story. And we bring in different mentors that share stories that are super relatable, that you can be like, oh, my gosh, that's happened to me. Oh, yeah, I've been through that. Oh, I love that. And at the end of every chapter is really a Radical recap where it gives you back the ideas of like, OK, these are the things that you may want to focus on, the questions you may want to ask yourself some you know, some guided ideas of how to get where you want to go to creating that passion, purpose, health and wealth, you know, whatever that is for you. Joe: Yep. OK. That's awesome. A question I wanted to ask earlier that I forgot, which I think is important in any partnership, because I grew up observing my father in a family business. And it's really tough when you have your own family in the business. It's tough when you are in a partner relationship because a lot of them don't work out as we know, as entrepreneurs. We've heard the horror stories. So with you and Liz, you talked about it earlier, how you both have your strengths and weaknesses. Right. And you use those to conduct this business. Do you recommend or do you have a line in the sand that says, OK, Liz, you are handling all of the financial part of this and anything that comes out of this financial related, that's your baby. I'm doing all the product stuff or whatever. So I'm not putting words in your mouth, Rachel: Right, Joe: But I'm just Rachel: Right, Joe: Trying Rachel: Right. Joe: To give you an example of can you explain how that division works? Rachel: Gosh, I wish it was that clear cut. Joe: Yes. Rachel: Like I'm like, here, take that hat. Oh, wait, wait, I'll Joe: Right. Rachel: Wear Joe: Right. Rachel: This one today. Joe: Exactly. Rachel: That's Joe: Well, Rachel: Kind of. Joe: I think the fear is, is that with businesses and partnerships, it's stuff sometimes somebody say, wait, I thought you were handling that. It's one of those things or you did it, but you didn't do it as well as I would have done. You know, so I'm trying to make sure we get this out to explain that you really have to be honest with yourself and say, I'm really not any good at marketing, so I'm not doing it. And if you don't want to do it as my partner, then we need to get somebody who does. Rachel: Exactly. Joe: So. Rachel: Well, first off, I would always say really, you know, know your family dynamics like how you operate with whether it's a brother or a sister or a family business. And we been fortunate because we we both see things. We both have the same goals, right, so I always say like, know that first, do you do you are you in alignment on what your goals are for your company and what purpose you both have in that? Like make sure you're on the same page? Because if one person sees the company for something else and you see it, then it's always going to be like this. Right? So you have to be on the same page, an alignment on your goals and your vision for what it is that you want. So that's like the biggest thing I can say. Everything else for us. We both have a lot of creative ideas. So I would say that we take our creative ideas and then I do more a lot more on that implement and manage. She does a lot more in the network. And, you know, big picture of whatever it is that we might be be doing. So it's very we complement one another. So I think you do. I think if you can make some more clear boundaries, I wouldn't say we were maybe the perfect example. We're kind of a weird group because we can just kind of work together. Well, I don't know. Maybe since we've been doing it since 1994, I think my sister and I have had maybe two arguments in business, and they went for a good quality like ten minutes and it was over. But yeah, I think having a making sure your visions are in alignment really takes away a lot of the issues. Joe: Ok, so the website is radicalskincare.com. Rachel: Yes. Joe: There is the whole retail side of the business that if any of those people are listening, they can contact you for distributorship wholesale or whatever that might be. And then there's the whole brand ambassador side, Rachel: Yes. Joe: Which is really to empower mostly I think it leans towards women, and I think that's great. But obviously, we talked about earlier that men can get involved because you said that the products are Rachel: Unisex, Joe: What was the word, unisex, Rachel: Unisex. Joe: Right. Is there anything else that I missed that you wanted to talk about before I let you go? Rachel: No, I mean, I guess back to I always just feel like you want to be part of a movement that matters, like really having a movement that matters. And Joe: That's it, I think that's the saying, Rachel: That was Joe: You Rachel: That. Joe: Keep saying, that's Rachel: See, Joe: It. Rachel: I told you it was going to happen. Joe: I love it. Rachel: I Joe: I'm Rachel: Was going Joe: Still Rachel: To get it in right at the end for you. Joe: I'm stealing it. I'm stealing. Rachel: Yeah. So that's like really what we we stand for and being a part of something that's bigger than yourself. And that's what really Radical is all about. It is we're in herself meets outer beauty. And, you know, your purpose is our promise. And that's that's what we want, you know, surrounding yourself in life around like minded people. That's just a beautiful thing. And I think that's what we we want to be able to help others with, to really get to, you know, living a life that they love and dream and going above and beyond. And so we really appreciate you having me on today. And Joe: Yeah, Rachel: I was Joe: Absolutely. Rachel: Really I was happy to be able to distinguish that I'm the younger sister, Joe: Well, Rachel: Older Joe: That's how she Rachel: Man. Joe: Gets that, too. That's what Liz gets. And you can tell her that even though we've never talked, I'm no longer talking to her. Rachel: Right. Yes, OK, we're on the same page. Joe: And I want the I want the audience, the listeners, and then eventually the viewers. But right now, the listeners that listen to the podcast, your message, what you are accomplishing with this is very sincere. And the integrity is there. I hear it in your voice. I see it in your face. So when the viewers go to watch this episode on YouTube, they, too, will understand that this means a lot to you. This is not about making money. This is about empowering people to live the life that they love and to just do great things and feel good about themselves. And it's both with having potentially a small business of their own or a large business through this. It's about making some extra money on the side. It's it's about feeling good, both financially, physically, inside and outside. And I think it's awesome what you're doing. And I just I could tell. Like, I interview a lot of people and the comment maybe it's an L.A. thing, but the calmness in you is not this sales motivated conversation that we're having. It's a conversation from the heart that you love what you do. This is something you wanted to do to help us. And it comes across. So I wanted you to know that that I was hoping so much that it would be this and not be this powerful woman who is just like sell, sell, sell, sell. And if you get this and you come into our program and you can drive a Mercedes in a year Rachel: No, Joe: And Rachel: No, no, Joe: All Rachel: No. Joe: Of that stuff. So this was wonderful. I loved Rachel: Yeah. Joe: It. Rachel: Yeah, well, we're not those girls, Joe: Yeah, Rachel: We're we're definitely heart centered, so. Joe: Perfect. I will put in the show notes all the ways to get in contact with you, the website and all of that, if there unless there's any special spot that you like to communicate. If there's I don't know if your Instagram fan and that's where you like to do it, or just like people to contact through the company email. But now's your chance to tell me Rachel: Yeah, Joe: Or the audience. Rachel: Either way and I was also Joe: Ok. Rachel: Going to do a code, so people Joe: Beautiful. Rachel: That are listening that Joe: Yeah, that'd Rachel: They Joe: Be great. Rachel: Can they can get a 10 percent discount on our products, but also we can send them an eBook. Joe: Beautiful. Rachel: So, yeah, we'd love Joe: Ok. Rachel: To do that so we can do Castelo 10. Joe: Beautiful, I'm going to write it down because I'm old and I'll forget Rachel: There's the old. Joe: It. All right, Castelo, 10 is the code to get 10 percent off. I love Rachel: That's Joe: It. Rachel: Right. Joe: Ok. Beautiful. Rachel, thank you so much. I appreciate your time. This was really cool. It was an honor to speak with you. I love what you're doing. And again, please tell Liz to that. I don't know. I don't ever want to talk to her. Rachel: Ok, Joe: No, it can't. Rachel: I'll call her right now. Joe: Yeah. They say you had one chance to come on Rachel: You Joe: Joe Rachel: Know, Joe: Show Rachel: You had Joe: And you Rachel: It, Joe: And you blew it. Rachel: She Joe: And Rachel: Missed Joe: We. Rachel: You missed the best podcast ever. Joe: Well, we had so much fun and Rachel: We did Joe: Ok, Rachel: The clip. Joe: Thank you so much, and I wish you all the best and I look forward to seeing your progress with everything. And it was really an honor to talk with you. Rachel: Thank you. Thank you so much.

The Joe Costello Show
Jordan Montgomery Interview

The Joe Costello Show

Play Episode Listen Later Aug 18, 2021 45:42


How To Find A Business Coach Or Mentor with Jordan Montgomery. My discussion with Jordan involved learning about the various types of performance coaches, the styles, how can someone benefit from a coach and why you would need/want one. I enjoyed this honest conversation with Jordan, his ideas and how well he spoke and conveyed his ideas and message. There's a good chance a performance coach could really improve so many things in your life, that it's worth looking into for sure. Thanks for listening! Joe #thejoecostelloshow #montgomerycompanies #performancecoach Jordan Montgomery Owner - Montgomery Companies Website: https://www.montgomerycompanies.com/ Instagram: @jordanmmontgomery Facebook: @montgomerycompanies LinkedIn: @jordanmmontgomery Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.libsyn.com Subscribe, Rate & Review: I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to: https://joecostelloglobal.lybsyn.com Follow Joe: https://linktr.ee/joecostello Transcript Jordan: Hey, Joe, thanks for having me, man. I've been following your work, and I want to say congratulations on all that you've built and continue to build. And it's an honor to have this conversation with you. Thanks. Joe: Hey, Jordan, welcome to the podcast. Man, I'm glad you're here. I'm excited to talk with you. Jordan: Well, Joe: Thanks Jordan: I appreciate Joe: For coming. Jordan: That question and I'll try to be succinct with my answer, but I grew up in southeast Iowa and a little town called Colonia in Kelowna is the smallest Joe: Thank you, man, I appreciate Jordan: One of the smallest Joe: It. Jordan: Towns Joe: So Jordan: In Washington Joe: I Jordan: County, Joe: Got fired Jordan: But it's Joe: Up Jordan: The Joe: When Jordan: Largest Joe: When they sent me your bio Jordan: Amish community Joe: And then I got to watch Jordan: West Joe: Your Jordan: Of the Mississippi. Joe: Inspirational videos. Jordan: So Joe: I Jordan: I grew Joe: Love Jordan: Up in Joe: That Jordan: Sort Joe: Stuff. Jordan: Of Amish Joe: I love Jordan: Country, Joe: The stuff that Jordan: A Joe: You're Jordan: One Joe: Doing Jordan: Stoplight Joe: With Jordan: Don't Joe: Iowa Jordan: Blink kind of Joe: Hawkeyes. Jordan: Town, Joe: So Jordan: Simple Joe: I saw Jordan: Life. Joe: That and Jordan: You Joe: I Jordan: Know, Joe: Was like, Jordan: My Joe: Oh, Jordan: Mom Joe: Man, Jordan: Was a teacher. Joe: I got Jordan: Dad Joe: To have Jordan: Was Joe: This Jordan: A blue Joe: Guy Jordan: Collar Joe: On. Jordan: Worker. Joe: This Jordan: But Joe: Is Jordan: My Joe: Awesome. Jordan: Dad taught Joe: But Jordan: Me the value Joe: So Jordan: Of hard Joe: Before Jordan: Work. Joe: We get into Jordan: And Joe: Any Jordan: I Joe: Of Jordan: Really Joe: That, Jordan: Learned Joe: You Jordan: Work Joe: Said you listen Jordan: Ethic Joe: To some Jordan: From Joe: Of my Jordan: My Joe: I guess Jordan: Father. Joe: You probably Jordan: He was an entrepreneur, Joe: Already know what Jordan: So Joe: I'm Jordan: He Joe: About Jordan: Owned Joe: To say, but Jordan: A small Joe: I Jordan: Painting Joe: Really Jordan: Business. Joe: Want to know about Jordan: And I always really Joe: You Jordan: Appreciated Joe: And how Jordan: The Joe: You Jordan: Fact Joe: Got Jordan: That my Joe: Started. Jordan: Dad Joe: And Jordan: Was at every Joe: This Jordan: One of my Joe: Is Jordan: Sporting Joe: The part Jordan: Events. Joe: Of the podcast where Jordan: He never Joe: It's Jordan: Missed Joe: Completely Jordan: An Joe: Up Jordan: Event Joe: To you, Jordan: In music. Joe: How far Jordan: He never Joe: Back Jordan: Missed Joe: You Jordan: A sporting Joe: Want to go. Jordan: Event. Joe: But for Jordan: You Joe: Me, Jordan: Just there Joe: When Jordan: For me. Joe: I Jordan: He Joe: Meet Jordan: Was ultra Joe: Someone like Jordan: Present Joe: You, even Jordan: As a Joe: If Jordan: Father. Joe: It's through the Internet Jordan: And Joe: Like Jordan: So Joe: This, Jordan: When I got out of college, Joe: I want to Jordan: I Joe: Know Jordan: Knew Joe: What you did to become Jordan: For sure, Joe: The person Jordan: Joe, Joe: You are Jordan: That Joe: Today. Jordan: I wanted to control Joe: What Jordan: My Joe: Was Jordan: Own Joe: The Jordan: Time. Joe: Path that steered Jordan: I just remember Joe: You in this Jordan: That Joe: Direction? Jordan: With my father's Joe: What Jordan: Example, Joe: Were the things Jordan: I thought, you Joe: That Jordan: Know, Joe: Happened Jordan: I just Joe: To Jordan: Want to Joe: You? Jordan: Make sure I can control Joe: Sometimes Jordan: My own time, Joe: It's as young Jordan: That Joe: As Jordan: Nobody Joe: You're in Jordan: Ever Joe: Elementary Jordan: Tells me where Joe: School. Jordan: I have Joe: And Jordan: To be Joe: Your Jordan: And Joe: Father Jordan: What I have to Joe: Was Jordan: Be there. Joe: The coach Jordan: And Joe: For Jordan: It's Joe: Certain Jordan: Not that I Joe: Sports Jordan: Had a problem Joe: Teams. Jordan: With following Joe: He got you Jordan: Instruction. Joe: Fired up or Jordan: I just Joe: And Jordan: Wanted to build Joe: You translated Jordan: My life by Joe: That into being Jordan: Design Joe: Also a business Jordan: And Joe: Coach. So Jordan: Really take control Joe: I'll stop Jordan: Of Joe: Talking. Jordan: My time Joe: And Jordan: And Joe: I want Jordan: Lead Joe: You to Jordan: My Joe: Just Jordan: Family Joe: Kind Jordan: Well Joe: Of give Jordan: In Joe: Us Jordan: The Joe: The Jordan: Same Joe: Back Jordan: Way that Joe: Story. Jordan: My dad Joe: So Jordan: Led me. Joe: When Jordan: So Joe: People listen Jordan: I Joe: To Jordan: Grew Joe: This Jordan: Up in Joe: And Jordan: Rural Joe: Then they Jordan: Iowa. Joe: Later watch Jordan: I went Joe: The YouTube Jordan: To the University Joe: Video, Jordan: Of Iowa. Joe: They could say, Jordan: I'm Joe: Oh, Jordan: Still a Joe: I Jordan: Very avid Joe: Get this, Jordan: Hockey Joe: This Jordan: Fan and Joe: This Jordan: We've had Joe: Was me. Jordan: The Joe: Or Jordan: Fortunate opportunity Joe: Now Jordan: To Joe: I Jordan: Work Joe: See Jordan: With some Joe: How Jordan: Of the sports Joe: He Jordan: Programs. Joe: Landed, where he did. Jordan: So Joe: So Jordan: I live in Iowa Joe: The stage Jordan: City, Joe: Is Jordan: Iowa, Joe: Yours. Jordan: Actually just outside of Iowa City and a little small town called Tiffin with my wife Ashley and our three daughters. My wife today runs the business. I run my mouth. We have a full scale coaching and consulting firm, Montgomery Companies. We have several coaching partners, and today we serve several thousand coaching clients. Those clients range from professional athletes to entrepreneurs and salespeople. We do work with some executive leaders at some larger firms. And I just have a blast getting to do what I do. And I meet some really interesting people. We get to help people think more deeply about who they are and where they're headed. And ultimately you get to help people live into who they were created to be. And it's a tremendous blessing. So I had a career in the financial services business, allowed me to pivot into this world pretty open about my professional journey. But at the end of the day, I graduated college 2010 and University of Iowa spent the last 11 years really building a skill set that's allowed us to build a business around coaching, consulting and leading people. So that's kind of the short version of my story. Obviously, there's a lot of twists and turns and gods provide a lot of grace. Jordan: Certainly I've been thankful to be around a lot of the right people. But if you're asking me the short version on how I got to where I'm at today, that's the the short version on Jordan Montgomery. Yeah, I think my dad, at the end of the day, my dad was a family man with a business, not a business man with a family. And I wanted to model that. I wanted to be a family man with a business, not a business man with a family. And I think as a driven type, a young man living in America, I kind of fight that every day. I mean, at the other day, like my wife and my kids are my top priority. But if I say they're my top priority, then that needs to show up in my calendar and that needs to be reflected in how I spend my time. And I want to be respected the most by people who know me the best. And that means that I'm a father first. I'm a husband first. I'm leading my family well. And if I lead inside the walls of my home, then I think I can lead in other areas of my life Joe: Cool. Jordan: As well. But Joe: So Jordan: I just didn't want to be Joe: First Jordan: The guy Joe: Of Jordan: That Joe: All, I love the part Jordan: Built Joe: Where you Jordan: Something Joe: Said Jordan: Professionally Joe: That because your father Jordan: But Joe: Was Jordan: Then Joe: Able Jordan: Sacrificed Joe: To make it, Jordan: Or Joe: You Jordan: Compromised Joe: Gravitated Jordan: In really other Joe: Towards Jordan: Important Joe: That Jordan: Areas Joe: Feeling Jordan: Of life. So Joe: And knowing Jordan: I appreciate Joe: That Jordan: Your pointing Joe: He was Jordan: Back Joe: Able Jordan: To Joe: To Jordan: My Joe: Do Jordan: Father's Joe: It because Jordan: Example. Joe: He owned Jordan: I Joe: His own Jordan: Probably Joe: Business Jordan: Still Joe: So Jordan: Underestimate Joe: Early on Jordan: The impact Joe: For Jordan: That that Joe: You Jordan: Had Joe: And Jordan: On Joe: For Jordan: Me Joe: The listeners, Jordan: As Joe: That Jordan: A young Joe: Triggered Jordan: Kid, but Joe: Something Jordan: He Joe: For you Jordan: Really Joe: That Jordan: Taught Joe: You Jordan: Me Joe: Were able Jordan: What Joe: To say. Jordan: Entrepreneurship Joe: I Jordan: Was Joe: Want Jordan: All about Joe: That for Jordan: In so many Joe: My Jordan: Ways. Joe: Own family and my own kids at some point when I have kids that I have that flexibility to do this. So that was really cool. Not a lot of people have said that in the past on the show when they when they said, oh, I became an entrepreneur because and it was all of these other reasons. But to actually associate it with your father sitting on the sidelines, watching you play sports and concert or whatever it might be, that was really cool. Jordan: Well, and I'll say this to Joe, because there are some entrepreneurs listening that maybe don't have that flexibility, like maybe you're truly in a situation where you've got a team or your businesses in an industry that requires you to work certain hours or whatever. So that's not a shame or guilt. Anyone who's working really hard to provide, because at the end of the day, entrepreneurs are called to work longer hours is just part of the deal. So if you're in that grind right now, here's what I'd encourage you with, is somebody that's going to change and the reason that you're doing what you're doing right now, the reason that you're working as hard as you're working right now is to have the flexibility and the autonomy. And, you know, I also wasn't there for my dad's early years. Like, I missed you know, I was born when my dad was eight to 10 years into being an entrepreneur. So he earned that flexibility. So let's just not forget that that flexibility is earned. And that looks different for every entrepreneur based on the industry Joe: Yeah, that Jordan: That Joe: Was Jordan: You're Joe: Really Jordan: In Joe: Cool, and I Jordan: And Joe: Came Jordan: This Joe: From Jordan: Stage Joe: An entrepreneurial Jordan: Of Joe: Family as well. Jordan: The business Joe: The Jordan: That Joe: Unfortunate Jordan: You're in. Joe: Thing for Jordan: So Joe: Me is that Jordan: I think Joe: My Jordan: That's Joe: Father Jordan: Important to Joe: Could Jordan: Underscore. Joe: Not attend most of my stuff. So when you said it, it kind of hit home and I hold nothing. He's passed on at this point. But I never held a grudge because he just he worked his butt off and and just to provide and create something great. So it never struck me the other way. It wasn't Jordan: Yeah. Joe: Like I was resentful over it. But I just love the way you framed that whole thing. That was really cool. Jordan: Well, yeah, you know, I just I fell in love with sports at a really early age. I just love competition. I loved competing. I love watching other people compete. I love the atmosphere. I love the energy that goes into a sports competition. I'm still the guy, Joe. Like, I will watch one shining moment at the end of the final four for those who are familiar with that show. I cry every year when I watch that one shining, but that little three minute clip. And I think part of the reason I get emotional about that as you watch young people get emotional over competition. And I just loved the rush of competition. I loved watching people give their all to a very specific activity, blood, sweat and tears. And Joe: Yeah, absolutely, Jordan: So Joe: I totally Jordan: I just fell Joe: Agree Jordan: In love with sports Joe: And Jordan: At a young Joe: I'm Jordan: Age. Joe: Still Jordan: I played Joe: Working Jordan: Sports Joe: Like Jordan: All the way Joe: Crazy, Jordan: Through high school. Joe: But Jordan: I did Joe: It's Jordan: Not compete Joe: Just Jordan: In college. Joe: Because Jordan: And Joe: I Jordan: It's something Joe: Don't Jordan: That's Joe: Say no Jordan: Kind Joe: And Jordan: Of Joe: I Jordan: Interesting Joe: Just keep Jordan: About Joe: Adding Jordan: My story Joe: More and more Jordan: And background. Joe: To my plate. Jordan: A lot of people Joe: So it's Jordan: Ask Joe: My Jordan: Me, well, Joe: Own fault. And Jordan: You must Joe: And, Jordan: Have played professional Joe: You Jordan: Sports Joe: Know, we're empty Jordan: Or at least Joe: Nesters. Jordan: Collegiate sports. Joe: I have no Jordan: You're going Joe: One Jordan: To Joe: To Jordan: Work Joe: Provide Jordan: With these professional Joe: For myself, but Jordan: Athletes Joe: I Jordan: And college Joe: Just can't Jordan: Athletes. Joe: Stop Jordan: And I'm just Joe: The Jordan: Very Joe: Train. Jordan: Open about that. Joe: So Jordan: A lot of what I learned Joe: It is what Jordan: As Joe: It is. Jordan: Applied Joe: So let's Jordan: And most Joe: Before Jordan: Of the athletes Joe: We get Jordan: We're working with, Joe: Into Jordan: We're working with in the areas Joe: All of what Jordan: Of Joe: You offer Jordan: Mindset and Joe: In Jordan: Leadership development. Joe: Montgomery Jordan: So Joe: Companies Jordan: I'm not teaching Joe: And Jordan: A basketball player how to shoot. Joe: Your team Jordan: You Joe: And Jordan: Know, Joe: The Jordan: I'm Joe: Different Jordan: Not helping Joe: Levels Jordan: The Joe: Of coaching Jordan: Football Joe: That you do, Jordan: Player with his footwork, Joe: Talk to me about Jordan: But Joe: You Jordan: We are helping Joe: And Jordan: Him with Joe: Sports. Jordan: Our mental game and Joe: Just Jordan: We're Joe: Because Jordan: Helping Joe: I Jordan: Them Joe: Want Jordan: With the Joe: To Jordan: Six Joe: Know, Jordan: Inches in between Joe: Was Jordan: Their ears Joe: There a correlation Jordan: And we're helping them with how Joe: Of Jordan: They see the world and their self Joe: You Jordan: Awareness Joe: Doing sports Jordan: And Joe: Young Jordan: Their externalisation Joe: Or sports in college Jordan: And optimization. Joe: Or to Jordan: You Joe: Me, Jordan: Know, Joe: You looked Jordan: At the Joe: Like Jordan: End of the Joe: You Jordan: Day, Joe: Were a football Jordan: I think Joe: Player. Jordan: It athletes Joe: I was like, maybe Jordan: In a really Joe: He played Jordan: Unique Joe: For Jordan: World Joe: The Hawkeyes. Jordan: Where they Joe: I Jordan: Give Joe: Don't Jordan: So Joe: Know. Jordan: Much of their time for such a really, really small window of competition. You know, you think a lot like the average NFL athlete will compete for less than two hours, whistle to whistle over the course of a season. But they can be literally all year round and they'll get paid, graded and evaluated for what they do inside of two hours. All year long, but it's kind of a metaphor for it for all of us, right, because the reality is each one of us is practicing for little moments, for small moments. Some of them we can predict, some of them we can't. But you get paid and your best to show you get paid really, really, really well to be prepared Joe: Hmm. Jordan: In small little windows of time. And so I developed the sort of fascination or obsession with helping athletes prepare and be at their best when that small window of opportunity presents itself and, you know, your clutch, your clutch when you can show up and do normal things. In an abnormal times, so like Derek Jeter, Kobe Bryant, you know, they're considered clutch because at the end of the day, they could show up normal. They could just be who they were because they had practiced so much in the most important windows of time. And it's a really interesting metaphor that we can apply to all of life. Yeah. Yeah, well, it's it's a pursuit of excellence, right, and you know, I'm reading a book right now by Tim Grover, The Unforgiving Race to Greatness, and it's called Winning. And, Joe: Yeah, it's Jordan: You know, there's Joe: And Jordan: So much of what Tim Joe: Again, Jordan: Grover preaches Joe: People Jordan: That I Joe: That Jordan: Really love. Joe: Maybe Jordan: I'm Joe: Just Jordan: Not Joe: Watch sports casually Jordan: Maybe not aligned Joe: Don't Jordan: With one Joe: Understand Jordan: Hundred percent of it, Joe: The Jordan: But Joe: Grueling Jordan: Winning has a price, Joe: Effort Jordan: You know, in Joe: In the lifelong Jordan: Pursuing your Joe: Commitment Jordan: Calling has a price Joe: To potentially Jordan: Regardless Joe: Never, Jordan: Of what you do, Joe: Ever Jordan: You know, sports or otherwise. Joe: Getting Jordan: If you're an Joe: That Jordan: Athlete, Joe: Chance Jordan: Great. But Joe: In Jordan: If Joe: The sports Jordan: You're an entrepreneur, Joe: World and Jordan: There's going to Joe: Used Jordan: Be a cost Joe: To have some really good friends Jordan: Associated Joe: On the Buffalo Jordan: With Joe: Bills Jordan: Your calling. Joe: Football team because Jordan: And Joe: I went to college Jordan: I Joe: Out Jordan: Think Joe: There Jordan: Sports is the epitome Joe: And Jordan: Of that. Joe: I was Jordan: But certainly Joe: A musician. Jordan: Entrepreneurship Joe: I was Jordan: Is Joe: In a band. Jordan: Is Joe: They Jordan: Right Joe: Loved Jordan: There Joe: Our band and they used Jordan: With being Joe: To come Jordan: With being Joe: And Jordan: An athlete Joe: Hang Jordan: In Joe: Out. Jordan: Terms Joe: We've got Jordan: Of Joe: The dinner with Jordan: Making Joe: Them and Jordan: Sacrifice. Joe: You would hear the stories. And it's just to live on the edge of not knowing if you're playing or you're sitting each day and who's who's looking for your spot and the work so hard and give up so much from a really young age all the way through. It's unbelievable. You know, and I watch certain friends here in Arizona, believe it or not, Arizona has got a very big hockey base. You know, like fans love hockey. And there's a lot of kids that come here, play hockey, play on the farm team of the coyotes or and we've had friends that had their kids just go through all in hockey. Moms and dads have the worst it's the worst schedule I've ever seen. And to go all the way to the very end and be on the farm team and never get called up. And I can't even imagine that it's just grueling. Jordan: Yeah, well, you know, there's there's a lot that goes into speaking, right, speaking as an art form, and in today's world, attention is currency. So something we think about a lot and the keynote speaking world is you've got Joe: Mm Jordan: To Joe: Hmm. Jordan: Keep people's attention. And if you can't, you're out, you're done. You'll never be the really high demand keynote speaker if you don't know how to keep somebody's attention. So there's multiple ways that we do that. One of the ways that we keep people's attention is through story. It's a story sell facts, tell. When you get really good Joe: Yeah, Jordan: At telling stories, Joe: Yeah, I Jordan: You keep Joe: Agree. Jordan: People's attention. Joe: Ok, Jordan: In Joe: So Jordan: Fact, Joe: Enough about sports. Jordan: If I Joe: I Jordan: Were to Joe: Watched Jordan: Tell you about Joe: The video Jordan: My business, Joe: Of Jordan: If Joe: You Jordan: I were Joe: Working Jordan: To say, well, Joe: With Jordan: You know, Joe, Joe: The Hawkeyes Jordan: These are the five Joe: And Jordan: Things that I do my Joe: I Jordan: Business, or Joe: Was watching as Jordan: If Joe: The Jordan: I said, hey, Joe: Camera Jordan: Joe, Joe: Went around the room, I Jordan: Let Joe: Was Jordan: Me tell Joe: Watching Jordan: You a story. Joe: To see how intently Jordan: The minute I said, I'll Joe: The Jordan: Tell Joe: Players Jordan: You a story, Joe: Were listening Jordan: I would actually Joe: To you. Jordan: Activate Joe: And Jordan: Your brain Joe: Like I was Jordan: At 12 Joe: Watching Jordan: Times Joe: Their eyes Jordan: The Joe: And Jordan: Capacity. Joe: Their expressions Jordan: So Joe: And they Jordan: There's Joe: Were Jordan: A Joe: All Jordan: Lot of neuroscience Joe: Incredibly Jordan: That supports Joe: Focused. Jordan: The fact that Joe: And Jordan: I've got Joe's Joe: I can Jordan: Attention Joe: Only imagine the coach going, hey, Jordan: At 12 Joe: Today we're Jordan: Times Joe: Having Jordan Jordan: The rate. Joe: Mcqueary come in today. He's Jordan: If Joe: Going Jordan: I Joe: To talk Jordan: Decide Joe: To Jordan: To Joe: Us Jordan: Allow Joe: About Jordan: My words Joe: The Jordan: To Joe: Six Jordan: Paint a picture, Joe: Inches Jordan: Draw Joe: Between Jordan: You Joe: Our Jordan: Into Joe: Ears. Jordan: A story Joe: I want you guys Jordan: That Joe: To pay Jordan: Actually Joe: Attention. Jordan: Activates Joe: I want you to Jordan: Your Joe: Be open to Jordan: Senses. Joe: What he says Jordan: So Joe: And whatever. Jordan: The first Joe: And Jordan: Thing is we try to Joe: It Jordan: Tell Joe: Feels Jordan: A lot Joe: Like when Jordan: Of stories Joe: Somebody Jordan: To drive Joe: Comes Jordan: A plan. Joe: Into the Jordan: We Joe: Classroom, Jordan: Don't use PowerPoint Joe: When you're in elementary Jordan: Slides Joe: School, Jordan: Or use Joe: You Jordan: Pictures Joe: Start Jordan: Or graphs. Joe: Throwing papers Jordan: I'm not Joe: At each other. And Jordan: I'm Joe: So Jordan: Not minimizing Joe: How do you deal with that Jordan: Anybody Joe: When you Jordan: Who does Joe: Speak? Jordan: Those Joe: Because Jordan: Things. Joe: You do all sorts Jordan: I just Joe: Of speaking Jordan: Think if you're going Joe: Engagements. Jordan: To be someone who keeps Joe: So Jordan: People's Joe: This was Jordan: Attention, Joe: Just one Jordan: You got Joe: Small Jordan: To be great Joe: Piece of it. Jordan: At Joe: But you Jordan: Stories. Joe: Do something to capture Jordan: I Joe: People. Jordan: Think eye Joe: When I Jordan: Contact Joe: Watched Jordan: And tonality Joe: Even Jordan: Is Joe: The speaking Jordan: Is another Joe: Engagements Jordan: Big one, right? There's Joe: At Jordan: A difference Joe: The corporations Jordan: Between communicating Joe: That you've Jordan: And Joe: Done, Jordan: Connecting. People Joe: You Jordan: Want to feel Joe: Have a really Jordan: Like you're Joe: Good flow. Jordan: Speaking to them Joe: You don't Jordan: Like, Joe: Use Jordan: Wow, Joe: All Jordan: This guy's Joe: Of the Jordan: Speaking directly Joe: Weird words Jordan: To me. Joe: That people use Jordan: And Joe: All the time. Jordan: It sounds Joe: Tell Jordan: So Joe: Me Jordan: Simple, Joe: How you do Jordan: But what's Joe: It. Jordan: Common sense is not always kind of practice. If you watch your average keynote speaker, their eyes will kind of drift all throughout the room to look down, look sideways. I think at the speaker, you want to keep constant eye contact. And then the other thing I think about is being really you centered in the message being you centered. So I'm going to use two people's names. I'm going to pick people out in the crowd. I'm going to touch people, maybe even on the shoulder or the arm as I'm speaking. And I'm going to move through the crowd. And so much of communication is nonverbal, right? 90 percent is nonverbal. It's not what you say, it's how you say it. And it's also not what you say. It's what people hear and it's what they remember. Maya Angelou famously said it's not what you say that people remember. It's how you make them feel. And so I try to stay really in tune with how I make people feel. A lot of that is my energy, my body language. It's you focus communication, it's telling stories, and it's the difference between connecting and communicating. So if you're listening and you're thinking about your communication style or maybe you want to develop your craft as a keynote speaker, those are a few things that you could consider. Jordan: And I'll say this to Joe. I'm a long way away from where I want to be. I got a long way to go. So those are things that I think about repetitiously. And I get obsessed with the practice of my craft. And I'm evaluating and observing high level keynote speakers. You know, how do they move? What do they say? What do they not say? You know, their pace, their tonality, the way that they tell stories, their presence. Yeah, those are all things that I'm paying attention to. So I appreciate your kind words. I think communication as an art form is no different than playing an instrument or doing a dance. And for anybody that's in sales, for any entrepreneur, if you're not taking that seriously as you develop and grow your business, that's something to really consider and think about. Because whether you're speaking to an audience of one hundred or a thousand or an audience of five or ten, you're in the human connection business before you're in the construction business or before you're in the marketing business or financial planning business or real estate business. We've got to remember that the human connection is at the center of everything that we do. Well, thank you. It's kind of you to say. I did and I went to school for interdepartmental studies, which is a fancy way to cover recreational management, so I literally wanted to go to school, have a great social experience, and then start a business and the fitness world. Jordan: That was kind of my dream. And so I took some entrepreneurial courses, got a degree in recreation management, fell into finance and in two things were true. I didn't want to have a boss, so I went to work for myself and I wanted to create my own schedule that that was it. I want to call my shots, create my own schedule. But I didn't have any money and I didn't have any experience. And so I fell into financial services because it allowed me to be in business for myself, but not by myself. So I had a great support system. It was kind of like a franchise model, had a lot of success in that world at an early stage, had a big event in my life in twenty fifteen that really have me thinking about my future in a deeper way. And then I decided to pivot into sort of the consulting and coaching world making financial planning, kind of our kind of our core client. And so in a very early stage in a coaching business, financial advisers were some of our first clients by way of my background in the financial planning world. Joe: Yeah, and you do it incredibly well, my friend. So thank you. So let's just backtrack really quickly so that I can get the progression from college into starting this company. So did you go to school for finance? Jordan: I think it's so true Joe: Ok. Jordan: In life and in business, definitely in entrepreneurship, where we're leading people, that more is caught than taught. Joe: Ok. Jordan: And so nobody really taught me how to coach. But I watched other people coach and I watched other people in my industry that do what I'm doing now, do it at a really high level. And again, I paid attention to quality of life. I paid attention to the relationships. I paid attention to the way that they manage their decisions and manage their time. And I thought, you know, I want to do that. I think I can do that. And I actually did it in tandem with my own financial planning. And so I started sort of coaching on the side and I had really been coaching all the while I was in financial planning and some aspect working with clients. But I also started getting asked to speak and do workshops. And so I sort of fell in love with that work, Joe. But the reality is I had a couple of mentors. I had some key people in my life that had done that work in a really high level. One of those people is a guy by the name of Ben Newman. Another guy is John Wright Senior. And they both had Joe: How did Jordan: Big Joe: Coaching Jordan: Coaching Joe: Catch your Jordan: Practices Joe: Eye, or Jordan: Working with Joe: Was it because Jordan: Professional Joe: You were Jordan: Athletes Joe: Just taking Jordan: And Fortune Joe: From Jordan: 500 Joe: Your Jordan: Executive Joe: Love of Jordan: Leaders. Joe: Sports Jordan: And Joe: Being a coach? Right. Jordan: I just Joe: I Jordan: Admired Joe: Mean, just Jordan: The work. Joe: Taking Jordan: I thought, Joe: That, Jordan: You know, Joe: But Jordan: I think Joe: Now Jordan: I Joe: Saying, Jordan: Can Joe: Ok, Jordan: Do that. Joe: Wait, Jordan: I got a lot to learn, Joe: I want Jordan: But Joe: To do a little Jordan: I'll Joe: Bit Jordan: Learn Joe: Of that Jordan: As I Joe: With Jordan: Go. Joe: Sports Jordan: And Joe: People. I want to do that with Jordan: Just Joe: Entrepreneurs. Jordan: Like you or any Joe: I want Jordan: Other Joe: To do Jordan: Entrepreneur, Joe: It with Jordan: You Joe: With Jordan: Kind Joe: Business Jordan: Of dive headfirst Joe: People. Jordan: And just Joe: I mean, Jordan: Hope Joe: What Jordan: It works Joe: Made Jordan: Out. Joe: You Jordan: So Joe: Wake up one day and Jordan: Our Joe: Say, Jordan: Business Joe: Yeah, Jordan: Grew Joe: I Jordan: Rapidly, Joe: Want to do coaching and Jordan: By Joe: I Jordan: God's Joe: Want to Jordan: Grace, Joe: Do it Jordan: Into Joe: In Jordan: The help Joe: This Jordan: Of a lot Joe: Form? Jordan: Of good people. And I woke up one day and I thought, you know what? I could leave my financial planning business based on what we built in the coaching business. And then we started to add more partners and multiply our efforts through other people. And that's when it really starts to get financed, when you can impact the world or you can impact the world around you through the people that work with you. So virtually everybody on our team right now, with the exception of maybe two to three people there in the coaching business, so their coaching partners, so they're leading, they're doing coaching and consulting work, either individual coaching group, coaching, keynote speaking, they're all contracted out. So some of them have five clients, some of them have 30 clients. We have a couple that have just a couple of clients and they're all sort of specialized. So we have some former professional athletes. We have some people that came from the ministry world. So they're actually pastors or they have been pastors. And then we have some people in the world of sales. We have some real estate agents and financial advisers. Some of them are very technical. Somebody might say a more motivational, but all of them are for hire as coaching partners. It's my job to lead them and make sure that they're getting what they need from a content standpoint and also just keeping them connected to to a vision and and keeping them connected to our company. But we're having a ton of fun. I mean, it's it's awesome to be on a team. It's fun to be a part of something that's bigger than just me. And, you know, each one of them is unique in terms of what they bring to the table. Joe: So that's a great segue because you do have a fairly Jordan: You Joe: Sizable Jordan: Know, what's Joe: Team. Jordan: Most important Joe: So Jordan: To us, Joe, Joe: What Jordan: Is that Joe: Do those Jordan: We all Joe: Team Jordan: Have Joe: Members Jordan: Similar Joe: Do Jordan: Values, Joe: For you? Jordan: So I want to give people the freedom and flexibility to be autonomous and how they work with clients. And so I've never told somebody, hey, here's the five step plan. Here's exactly what you have to do. Now, I'll make some general suggestions about the way that we lead people and care for people. But at the end of the day, most of the people that are on our coaching platform have been wildly successful in other arenas. And so they've been leading. They've been coaching. They've been training and developing people. So I think we're aligned in terms of our values. But beyond that, I want them to really operate in their true giftedness. And for some of them, that giftedness is in listening. You know, for some of them, it's in the world of neuroscience. You know, they just really understand how the brain works for others. They're just big on accountability, the kind like the bulldog that's in your face. It's really intense and motivational. So we want people to be who they are. We want them to have strong values, which for us means their faith filled and family oriented. And if they're faith filled, family oriented, others focus. They're usually a good fit for our coaching Joe: Did Jordan: Practice. Joe: They follow Jordan: And then, of course, Joe: A Jordan: There Joe: Certain Jordan: Are some other criteria Joe: Structure Jordan: That we want to Joe: That Jordan: Vet Joe: You Jordan: Out. Joe: Have Jordan: But Joe: Set up Jordan: That's Joe: So Jordan: A that's Joe: That Jordan: A good question. Joe: When someone hires one of those people, they know that if they're getting the quality of the Montgomery companies coach and there's a certain structure formula, something like that? The. Jordan: Yeah. Yeah, I would say that's that's very true of of our team, I think we're well positioned to help just about anybody in any industry with any problem. You know, there's a few that we would say, hey, we're not not licensed to do that. We're not going to dive into that space. But for the most part, if it is in the world of performance sales and driving results, there's somebody on our team that can handle the issue of the opportunity. Yes, so there's really two components to coaching for us and our business model, one is group coaching and one individual coaching, and those are obviously very separate. If I'm working with an individual client and we're talking about the phases of coaching or how I work with a client, first is discovery. So the answers you get are only as good as the questions that you ask. And people don't care how Joe: Cool. Jordan: Much you know Joe: Well, Jordan: Until Joe: I Jordan: They Joe: Just Jordan: Know that you care. Joe: It's important Jordan: And Joe: Because Jordan: To Joe: I Jordan: Us, Joe: When Jordan: It's Joe: I Jordan: A Joe: Went Jordan: Relationship. Joe: And looked at the website, I was like, Jordan: And Joe: This Jordan: So Joe: Is this Jordan: I Joe: Is Jordan: Always Joe: Cool. Jordan: Tell Joe: You Jordan: People, Joe: Have a Jordan: Hey, Joe: Really Jordan: I'm Joe: Cool team Jordan: A coach, Joe: Around Jordan: Which means Joe: You. And Jordan: I'm Joe: I Jordan: Going Joe: Wanted Jordan: To hold Joe: To Jordan: You Joe: Find Jordan: Accountable. Joe: Out if there Jordan: I'm Joe: Was Jordan: Going Joe: A variety Jordan: To share ideas Joe: In Jordan: Where to talk about Joe: What Jordan: Concepts Joe: They Jordan: And strategy, Joe: Coach on Jordan: Just Joe: Which Jordan: Like Joe: You Jordan: Any Joe: Answered Jordan: Coach Joe: That question. They Jordan: Would. Joe: Do. You have people that Jordan: The Joe: Specialize Jordan: Difference Joe: In Jordan: In Joe: All Jordan: Our Joe: Sorts Jordan: Approach, Joe: Of things. Jordan: I Joe: So Jordan: Think, is Joe: It's Jordan: That Joe: Great Jordan: I'm also Joe: That Jordan: A Joe: If Jordan: Strategic Joe: Someone Jordan: Partner. Joe: Loves working with you for all Jordan: And so Joe: The reasons Jordan: If I sign Joe: That Jordan: Up Joe: They Jordan: To work Joe: Love Jordan: With a client, Joe: To work with you, they Jordan: What Joe: Can Jordan: That means Joe: Get Jordan: Is Joe: Basically whatever Jordan: I'm going Joe: They Jordan: To advocate, Joe: Need under one roof, Jordan: I'm going Joe: Which Jordan: To support, Joe: Is cool. It's Jordan: I'm Joe: Not Jordan: Going Joe: Like Jordan: To connect Joe: You do. It's not one Jordan: And Joe: Dimensional Jordan: I'm going to highlight Joe: In any Jordan: And spotlight Joe: Any way, Jordan: Who Joe: Shape Jordan: You Joe: Or form. Jordan: Are and what you do. That means that my network is your network. It means if you want to speak engaged, we're going to help you with that. If you need marketing help or we're going to help you with that. If I need to get you connected to another leader, I'm going to help you with that. If we need help, you track down a client or prospect, I'm going to help you with that. So it's our approach is a little bit different that way. It's it's heavily based around relationship. The relationship has to start with Joe: All right, Jordan: Discovery. Joe: Cool. So let's talk about Jordan: One of my Joe: The Jordan: Other Joe: Coaching Jordan: Beliefs, Joe, is Joe: Part Jordan: That if Joe: Of it, Jordan: I'm working Joe: And Jordan: With a client, Joe: If Jordan: It's always Joe: You can go through Jordan: 100 percent Joe: And tell Jordan: Of the time, Joe: Me the Jordan: Their time, not Joe: Different Jordan: Mine. Joe: Types Jordan: Which Joe: Of Jordan: Means Joe: Services Jordan: I've got to Joe: That Jordan: Deal Joe: You Jordan: With Joe: Have Jordan: The issues, Joe: For the coaching Jordan: The Joe: Piece Jordan: Opportunities Joe: Of. Jordan: And the challenges that are most present for them right away before I try to drive my agenda. So if I show up to the call and I say, hey, Joe, here's three things I want to talk about today. Here's the here's the new approach to closing a sale or here's the new approach to the discovery process or whatever. And I find out that your dog just died or that you just lost the key employee or that your house just burned down. But I'm using really dramatic examples. But anyway, the point, is there something else on your mind? I'm missing it. I'm not know I've failed to connect with you, and candidly, I failed to lead you. So the first question I asked to all of our coaching clients and a coaching meeting, and they would tell you, this is not to say, hey, Joe, how do we create space to discuss and talk about the things that are most pressing, interesting and relevant for you today? I want to start there and then we'll recap and we'll talk about some of the stuff that we've talked about the past. I'm always, you know, forcing accountability. So we're we're bringing things to the forefront. Did you do X, Y and Z to do that or Yapp with that? But we addressed the issues that are most present. And then I'm always trying to share ideas and concepts that I feel like are relevant to them based on the seasonal life there in industry they're in or what they've said that they needed help with. Conversations tend to be fairly organic because, again, it's it's a relationship. And, you know, people open up to us about all kinds of stuff, their marriage, their finances, their friendships, their their problems that go way beyond their professional life. Jordan: So I appreciate the question. I don't know if I if I answered it exactly. But to give you a window into our world and how we work with people, that that's sort of our our process and style. You know, right now we work with such a wide range of people, Joe, so I'm not as concerned about like industry or niche. Here's what I what I'm really concerned with this character traits. So they've got to be values oriented, right? They got to care. They're going to be a decent person. In other words, if they just want to go make all the money in the world, they don't want to leave their family. I'm probably not a good fit. I'm going to challenge them on their values and lead in their family and growing in their faith. And that's part of who I am. But that's not for everybody. But so we're probably not a good fit if that's not part of who they are. And then the second thing that I would tell you is they got to be open minded. They have to be willing to learn. They have to be somebody that enjoys new information and new ways of thinking. A new perspective, fresh perspective. Right. Doesn't mean that I'm always right or my perspective is the right perspective. It just means that they're willing to listen right there. They're willing to hear and then they're willing to be challenged. So they want somebody to ask them the tough questions and share the truth and mix even said it best. You said average players want to be left alone. Good players want to be coached, great players want the truth. I want people that want the truth. I want people that really want to be challenged. Joe: Great. Jordan: They've Joe: So Jordan: Got Joe: Before Jordan: An open Joe: We Jordan: Mind Joe: Move to Jordan: And they have strong Joe: A Jordan: Values. Joe: Group coaching piece Jordan: And Joe: Of it, Jordan: If they've Joe: Because Jordan: Got those Joe: We just Jordan: Three Joe: Talked Jordan: Things, Joe: About the one on Jordan: They're Joe: One. Jordan: Usually a good fit for Joe: What's Jordan: Our coaching Joe: Your sweet Jordan: Practice. Joe: Spot? Who who are the people that you feel you work best with or can can help the best. Jordan: So the group coaches typically kind of a one hour session, we try to kind of meet people where they're at. So I work with organizations, as do our partners, to figure out, hey, what really do you need? What's the right time frame? What's the right size? I'd love to tell you that we've got, like, this specific program. It's cookie cutter. It's not. But that's by design. We really want to be a partner and meet people where they're at. So sometimes it's a small as is five people. I've got one group right now, 60, which I think is a little too big. What's important to us is that that's it's intimate or as intimate as it can be where people really feel like, you know, them. And and so we call on people. I try to get to know everybody by name and remember little facts about who they are and what's important to them. It's highly interactive. So I'm calling on people throughout the session. Usually I'm delivering 30 minutes of content or 30 minutes of discussion. We challenge challenge on the spot. I have other people challenge each other. I always say this in our group coaching program that where you sit determines what you see and you see something different than everybody else's and different is valuable. And so what that means is your voice matters because whether you're the most experienced person on the call are the least experienced person on the call, you see something that nobody else in the organization sees. And so we need your voice. We need your perspective, because you've got a different perspective than everybody else. So, Johnny, that sits at the front desk, that's the director of First Impressions, has some really valuable Joe: Awesome, Jordan: Perspective Joe: I Jordan: Because Joe: Love Jordan: Johnny Joe: That. OK, cool. Jordan: Sees Joe: So Jordan: Something Joe: The group Jordan: That Sarah, Joe: Coaching, Jordan: The CEO, Joe: What does that entail? Jordan: Doesn't see. And so we really just try to foster conversation, encourage people and empower people to share and speak up and then deliver content that's inclusive and relevant to the group. Yes, so much of our business is virtual, it just kind of always has been and most a lot of our clients aren't local. So they're you know, they're kind of spread out. We have people all over the US. I'm pretty used to Zoom calls and phone calls, and I speak a lot. Right. So keynote speaking is live often, but we still do virtual keynotes as well. So it's a good mixture, I would say, in so many ways covid changed our business. I was always willing to do things virtually, but I think a lot of companies weren't until they realized like, hey, we can do it this way. And so for me, as a person with a young family, it allowed me to stay at home and I didn't have to. I wasn't on a plane twice a week sleeping in a hotel. So so covid in some ways I'd be careful how I say this, because it was a really difficult time for a lot of people for our business. It actually affected my day to day rhythm or quality of life and I think a positive way and allowed me to be more present with my family. So it's a good mix of both. But I would say the pandemic certainly forced it to be more virtual. Joe: The coaching business, covid or not covid, were you doing live coaching up until that point and now a lot of Jordan: Yeah, Joe: It has shifted Jordan: I would say Joe: Onto Jordan: A good Joe: Like Zoom Jordan: Portion Joe: Calls and things Jordan: Of Joe: Like Jordan: Our Joe: That, Jordan: Clients Joe: Or Jordan: Are either Joe: How your Jordan: In Joe: Business Jordan: Sales or entrepreneurs, Joe: Today and what's Jordan: You know, Joe: The Jordan: So Joe: Mixture Jordan: There Joe: Of live Jordan: In fact, Joe: Versus Jordan: I would say it's Joe: Online? Jordan: Probably 80 percent of our business, either business owners or they're in sales and then there's maybe 20 percent that are in the world of executive leadership or sports. So that's kind of a mix of our business. When I say executive leadership, they're a leader in some sort of a corporate setting, but it's starting to change more every day. Like we work. I work right now with a group of physicians. We've got a gal that owns a very successful cosmetology clinic. So her whole thing is cosmetology Joe: Yep. Jordan: And she's been wildly successful and real estate agents and financial advisors and and college athletes and pro athletes. And so it's a it's a it's a wide range of people. Joe: Perfect out of the clients that you have, what is the percentage of general corporations, then entrepreneurs and then sports related? OK. Awesome. OK, we're closing in on the amount of time that I have you for, which is unfortunate because I love talking with you and I love your approach. I'm getting hit up left Jordan: Yeah, Joe: And right Jordan: Yeah, Joe: With Jordan: Yeah, so Joe: People that Jordan: Got Joe: Have coaching Jordan: Multiple Joe: Businesses Jordan: Answers to the question Joe: Are their personal Jordan: That you just ask, and Joe: Coaches Jordan: It's a great question, Joe: Or their life Jordan: By the Joe: Coaches Jordan: Way, Joe: Or whatever. Jordan: Tom Joe: And Jordan: Landry Joe: There's something Jordan: Probably Joe: About Jordan: Said Joe: Your approach Jordan: It best. Joe: That's Jordan: He said Joe: Just different that Jordan: Koshin Joe: Really I gravitated Jordan: Is Joe: Towards. Jordan: Allowing Joe: And I'm going Jordan: People Joe: To put Jordan: To Joe: You Jordan: Hear Joe: On the spot Jordan: What they Joe: Just Jordan: Don't Joe: Because Jordan: Want to hear, Joe: This is something that I Jordan: Helping Joe: Think people Jordan: People see what Joe: Will Jordan: They don't Joe: Ask Jordan: Want Joe: Themselves Jordan: To see Joe: In Jordan: So Joe: And Jordan: They can become Joe: They don't Jordan: The person Joe: Know the answer to. Jordan: They Joe: But Jordan: Always wanted to become. Joe: People would say, well, why do I need Jordan: That's Joe: A personal Jordan: That's what Joe: Coach? Jordan: Koshien Joe: Why Jordan: Is, Joe: Would that person Jordan: Right, Joe: Across Jordan: And Joe: From me, Jordan: The reality is we Joe: Whether it's Jordan: All Joe: In Jordan: Have Joe: Person Jordan: Blindspots, Joe: Or via Zoom Jordan: Myself Joe: Call, Jordan: Included. Joe: Know anything Jordan: So I've always Joe: More Jordan: Had Joe: About Jordan: A coach, Joe: Me Jordan: I got three Joe: Or my Jordan: Now. Joe: Business Jordan: I've always Joe: Or Jordan: Had Joe: Be Jordan: One. Joe: Able to help? Jordan: I had Joe: And Jordan: 10. Joe: I think Jordan: Over Joe: There's Jordan: The last Joe: There's Jordan: Five Joe: Definitely Jordan: Years, Joe: People that decided Jordan: The Joe: One Jordan: Average Joe: Day they will Jordan: Olympic Joe: Come, said, I'm going Jordan: Athlete Joe: To be a life coach. So Jordan: Has Joe: They Jordan: Seven Joe: Sort of Jordan: Different Joe: Created Jordan: Coaches. Joe: A Jordan: And Joe: Bad name Jordan: I Joe: For Jordan: Think as Joe: The people Jordan: You grow, Joe: That really Jordan: There's Joe: Do it Jordan: What Joe: Well. Jordan: Happens Joe: Right. Jordan: Is there's this paradox Joe: So Jordan: Of education. Joe: You're Jordan: The Joe: One Jordan: More Joe: Of the Jordan: You Joe: Few Jordan: Learn, Joe: People that I've had on where I could Jordan: The Joe: Ask Jordan: More you Joe: This Jordan: Realize Joe: Question, Jordan: You Joe: Too, Jordan: Don't Joe: And Jordan: Know. Joe: Say, OK, I know I'm going Jordan: It's Joe: To really Jordan: Always Joe: Get Jordan: Sort Joe: A Jordan: Of evolving Joe: Good, honest answer. Jordan: In our our Joe: And Jordan: Self Joe: So I'm Jordan: Awareness. Joe: Putting you on the spot for Jordan: But Joe: The Jordan: We Joe: Coaching Jordan: Don't have blind Joe: Community Jordan: Spots Joe: Because I Jordan: And Joe: It's something Jordan: We don't know Joe: That Jordan: What we don't know. Joe: I've never Jordan: And Joe: Had Jordan: So Joe: A Jordan: You Joe: Coach Jordan: Need Joe: And I probably Jordan: Somebody Joe: Could have Jordan: Else Joe: Used Jordan: To Joe: A coach. Jordan: Speak Joe: I probably Jordan: Truth Joe: Can use Jordan: And life Joe: A coach. Jordan: And Joe: That would Jordan: Give Joe: Be Jordan: You Joe: My Jordan: Feedback Joe: Question is like, well, Jordan, Jordan: And Joe: Why Jordan: Be real Joe: Do you know anything Jordan: And candid Joe: More about Jordan: And Joe: It? Jordan: Give Joe: Obviously, Jordan: It to Joe: You're Jordan: You Joe: Going Jordan: With Joe: To do Jordan: Love. Joe: A discovery, Jordan: Right. Joe: Right? Jordan: And Joe: We're going to Jordan: And Joe: Learn Jordan: With Joe: About Jordan: Care. Joe: Each other and you're going to learn Jordan: But Joe: What what I Jordan: What Joe: Do Jordan: I found Joe: On a daily basis Jordan: Is most Joe: And and Jordan: People Joe: Things. Jordan: Aren't Joe: And then Jordan: Receiving Joe: Looking Jordan: Enough Joe: At it from another Jordan: Feedback. Joe: Point of view, you can help. But Jordan: Even those Joe: I want Jordan: Who were Joe: You Jordan: At the Joe: To Jordan: Top Joe: Answer that Jordan: Of their Joe: Question Jordan: Game, I'll Joe: For Jordan: Give Joe: Me, Jordan: You an example Joe: Especially Jordan: Where this shows Joe: For the Jordan: Up, Joe: Listeners Jordan: Joe Joe: And entrepreneurs Jordan: Shows Joe: Out Jordan: Up Joe: There Jordan: In communication Joe: Going, Jordan: All Joe: Man, Jordan: The time. Joe: I'm alone every day Jordan: So Joe: In this business. I Jordan: None Joe: Don't Jordan: Of Joe: Have Jordan: Us are Joe: Anybody Jordan: Perfect. We Joe: Else Jordan: All have Joe: Helping Jordan: A lot to Joe: Me. Jordan: Learn when it Joe: Do Jordan: Comes Joe: I Jordan: To Joe: Need Jordan: Our communication Joe: A coach Jordan: Style, Joe: Or Dulli? Jordan: What we say, how our body moves, our tonality, our pace. So we test out salespeople all the time. So I'll get hired by a bigwig financial adviser. First of all, have 20 years of experience, a team of 20 people there doing tens of millions of dollars revenue, that they're very successful. And so they hire us. They hire me to come in and do coaching work with them. And every one of them has sort of a different set of needs. But one of the things that we always talk about, at least on some level, is our communication style. Right, because they're in sales and they're communicating all day, every day for a living. So I challenge this financial advisor. Usually within the first few meetings, I'll say, hey, I want you to send me your approach language, which is really their what they say to engage a client and conversation. So it's a first time meeting and this is the first five minutes of sort of the introductory meeting. And I can I can feel their energy when I when I challenge them and I say, I want you to send me that communication. Their energy is like at a negative to. Right, they're thinking you're going to bill me X for coaching, I've been doing this for 20 years, like what I don't need is help on the basics of what I say. And, you know, I can just feel that just not really excited about that. Jordan: But I challenge him. I say I think this is a really important part of our work together. It helps me understand who you are and how you're showing up for people. So send that over when you get some time. So they send it over and it's not going to have all the answers. But I'm willing to listen to it repeatedly. Our team listens to it repeatedly. And then we give them an analysis. We give them feedback. The energy level, when we give them feedback, goes from a negative two to a 10. Every single time. Because they do not know what they do not know. And I just had a guy the other day, I said, OK, so when the first two minutes of your communication, you said the word thirty seven times. Did you know that? You know, hey, the way that you show up, did you know that you use me focused conversation? Over and over, you are literally saying I my, me repeatedly. And you were doing it for 20 years and nobody has ever told you that you're doing it, and that's a shame because you would connect with people and a deeper and more meaningful way because you would be able to drive better results. You would have more purposeful conversation if you could just make that one small tweak. Jordan: You know, we could end the conversation at the cozy relationship right there, and the time that we had spent together would have been massively impactful. Again, not because I have all the answers, but because I'm willing to listen, give real feedback and press in on blind spots that we all have. And the last thing I'll say is people need to be encouraged. You know, people will go farther than they think they can when someone else thinks they can, period. And I don't care for the most successful person, the least successful person, the most experienced, the least experienced. I'm working with a guy the other day, Fortune 500, executive leader, big time leader of people. They had a record breaking year at the firm. Unbelievable year. This guy is in charge of literally hundreds of direct reports. And I asked him in a conversation, I just said, hey, how many people told you over this past fiscal year? So you just wrapped up the year. How many people told you? Good job. And he says, well, like, what do you mean? I said, you know what I mean? Like e-mails, texts, phone calls. Like how many people reached out to you said, hey, good job, great you. And he said, Zira. Zero people had picked up the phone and sent a text instead of an email, so the point is this job that I've worked with, this guy named John. Jordan: So the point is this, John, that you need to be encouraged. You need somebody to point out what you're doing. Well. You need somebody to touch your heart and remind you of who God made you to be and all of the natural God given giftedness that's inside of you. And I just want to share with you it's an honor to be able to do that for you and with you. But let me let me help you see what I see. Let's look back at the last 12 months. Here's what you've achieved. In that moment, I think I think when you step into somebody's life in that way, you're a lid lifter and you do it authentically and you help them see more and you help them see before. Man, I think you're in a position of strength relationally. And I think that person at that moment realizes that that relationship means more than they ever realized. So there's a lot that we can say about coaching. But I think, Joe, when you touch somebody's heart, when you appreciate people for who they are, when you point out their God given gift A. and when you deliver the truth and love and you point out the blindspots, you can be a world class coach and it has nothing to do with what you know, it's all about. Jordan: You show up and serve people. Well, that's just my answer. I don't know if it's the right answer by anybody else's standard, but in my world, it's the way that I try to live each and every day with the people that we serve. I love it. Yeah, so here's what I'd say, we do a lot of work through social media, so Instagram is probably where I'm most active. I'm Jordan and Montgomery on Instagram, so I would love it. If you want to get in touch to send a direct message, I'll communicate back with you. I would love to connect Montgomery Companies dot com is on our website. I'm also active on Facebook, LinkedIn, Twitter, and if anybody reaches out, I will gladly respond. If you got a question, if you're wrestling with an issue, an opportunity I'd love to talk to it with and be of service to anybody listening. And Joe, I want to say thank you for having me on your show. It's an honor. It's always an honor to share your great with the questions that, yes, it's very clear that you showed up prepared and you also had great energy. And so I just want to say thank you for your time and attention. Thanks for who you are and for what you're putting out into the world. It's making a difference. I. Right back at you, brother.

The Joe Costello Show
Results Coaching Model with Brian Lovegrove

The Joe Costello Show

Play Episode Listen Later Aug 12, 2021 75:03


Results Coaching Model with Brian Lovegrove Brian Lovegrove has been on his journey of personal growth and professional development since the age of 17. Inspired by Tony Robbins, he has created not only a catalyst but a unique approach and process to helping others, like you, achieve their goals. He believes in providing & building upon the knowledge most coaches provide by practicing these lessons and building a HABIT! Using his "5 Keys of Success" in his coaching, he is a firm believer that if these keys are used, failure is all but eliminated. In this episode, we learn about all the tactics Brian uses and has honed over the years of being a coach and we did into a few of these methods during our conversation. As always, thanks so much for listening! Joe Brian Lovegrove Leadership Developer and Results Coach Website: https://brianlovegrovecoaching.com Facebook: https://www.facebook.com/brianslovegrove LinkedIn: https://www.linkedin.com/in/brianlovegrove/ Live Masterclass: https://www.becomeunstoppable.info 5 Keys to Success Podcast: https://5-keys-of-success.simplecast.com/ Unleash Your Fear eBook: https://www.unleashyourfear.com/freebook Email: lovegrove@lovegroveltd.com Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.libsyn.com Subscribe, Rate & Review: I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to: https://joecostelloglobal.lybsyn.com Follow Joe: https://linktr.ee/joecostello Transcript Joe: Hi Brian, welcome to the podcast. I'm looking forward to having you on so many things I have to ask you, because you hit a core thing here with training, personal development courses, all of these things that I read about. And it's going to be interesting to find out your answers to these burning questions I asked. Brian: All right, Joe, I'm looking forward to it. Let's get rocking and rolling here. Joe: Awesome. OK, so you have to bear with me, because I literally do this with every single person on my podcast, is that I think it's important for my audience, who I believe is mostly entrepreneurs, whether they're currently doing their thing or they want to do their thing or they're struggling, doing their thing or whatever it might be. I think it's important for them to know the back story of the person that is on, because it's important to understand the development of where you came from and how you got to where you are today. And I think a lot of those things that you talk about actually people listening, going, oh, yeah, I've been there. I did that. I remember that. So I always leave this open to saying you can go back as far as you want, because if something in elementary school created who you are today, I want the audience to know about it so you can start wherever you want. Brian: Well, people ask me how I got introduced to personal development in the first place, and I actually go back to junior high. My dad was a commercial real estate broker and I grew up in Montana. And any time we would leave town, we would go on a long trip. And so he would pull out these tapes from work. And this was, of course, back before the iPods. The noise canceling headphones in that great, wonderful device that many of us grew up with, the Sony Walkman, Joe: Near Brian: Whatever Joe: And dear to my Brian: He Joe: Heart. Brian: Put into that. Yes. Yes. And so I got stuck listening to whatever was in the tape deck. And so I got introduced to guys like Earl Nightingale, Jim Roan and my favorite Zig Ziglar. And listening to those guys, Dennis Wailea, on and on and on and on, they taught me what it was to be an entrepreneur. And I remember Ziggs saying, treat every job as if you were the owner of the business and those HAQQ series that I listened to through junior high and high school shaped me in my choices in college. I actually got a degree in professional sales because of a I was originally going for a management degree my first year. My sister was two years ahead of me and she told me after my freshman year and says, you know what, Brian, you might want to consider changing majors because the people that I know that are graduating with management degrees are struggling to find jobs. And I went back and that that prompted me to ask a really good deep question at all. I don't know, 18. I asked myself, what career, what major, what level of information do I need to get while you're at college that would regardless of what happens to the industry, because I knew, you know, it's going to be out here in the marketplace for over 50 years. What degree do I need to go get that will? Regardless of what's going to happen, the ups and downs of the industry, whether we end up in another recession, we end up in another depression, that I would always have an opportunity to have a job if I wanted one. Brian: And that always brought me back to the sales aspect that Zig always mentioned, because, again, he did a lot of his sales around the Depression area and that that aspect of life where it's like how do you survive? How do you keep going in those areas? And it's really the salespeople that make the world go round. And so that's what led me to a sales degree. The other decision that I made when I was 17 was I got introduced to a guy named Tony Robbins and I bought his first tape series. Imagine a freshman in college spending probably a month of his earnings on a tape series. And I bought Tony's unlimited power. I still have the tapes are used today, actually gone and bought a second set because I wore out one of those tapes so that because I listened to it so much and I followed Tony ever since, I actually helped promote and put on his seminars for one of his franchises. And along the way, I've always been doing personal development, personal growth, and, you know, a lot I loved it. I just ate it up. But one of the big challenges that I ran into, I turned 40. Brian: It was like, why am I not far enough along? I've been doing this for 20 years. Why am I just here? Because at the time I was struggling to pay the bills. I was struggling to get by. My wife was working. We had two small kids. And I thought by the time I turned 40, I would have been much farther along by now. And so in this process, I realized it wasn't until much later that learning is not enough to make lasting change. I was actively learning. I was seeking the puzzle pieces, the pieces of information that was missing in my life. And I figured once I learned that then life would be easy and I'd be making all this money. But that never happened because I never did. The one thing that I learned all the way back in the beginning from XG is you have to do it until you get good enough at it, till it becomes your new normal. And only then, once you've applied and implement those strategies in your life, will they actually work for you. And you've got to do it long enough to get good enough at it and then continue to stick with it to where you can actually allow the compounding effect to, you know, you slowly creep and then you kind of turn that corner and it goes straight up. And it took me 50 years to hit that. Joe: So I'm going to go back real quick because I want to know what triggered you to buy that Tony Robbins course. You know, I know you were listening to this stuff in the car with your father on the Walkman or whatever else you were doing it. I mean, a kid at 17 doesn't do that. So what triggered it? Brian: Well, I had read the book, his book had come out and I had read the book and I really loved he had such a different style and he was talking about different things and he was talking about the things in the mind and he was talking about he and the different aspects there. And a lot of that was like, oh, my gosh, this stuff makes so much sense. And I was applying some of those strategies and I was seeing specific results. And I was like, and that's really what made me buy in. In fact, that's probably one of the few programs that I really started implementing strategy on. One of the big strategies you talked about was marketing Meeri, and it was one that I specifically used as I got into my initial first jobs and sales career. But I used on a consistent basis to help me actually get as far as long as I did. Joe: Ok, I'm still going to ask the question, because I'm not sure if you answered it yet. Why would a 17 year old buy the book like 17 year olds don't don't get into this stuff. So and I think it's important to figure out what triggered it for you. Brian: Well, again, I think it has to do with that was the next step, I the company that was putting those out was Nightingale Conant Joe: Yeah. Brian: And my dad would get those and I probably was home. I don't remember where I was when I got it. I might have gone home for Thanksgiving or Christmas. And I grabbed the magazine I love looking at because again, I've been doing this for a number of years now. And I was like, what? What's the new stuff they got? You know, Wayne Dyer was there and you know, you know who who are who's the new people? And there was this new one from this guy named Tony Robbins. And I don't know, I guess it just resonated with me. And I think it was seventy five bucks. And it was like and to be honest with you, I really can't say what prompted me to go. I want that. Joe: Mm hmm. Brian: But I think it was more of the sales pitch in the description of what it promised me. Joe: Got it. Brian: More than anything, that's what I would say it was based upon the results that were promised, based upon the description of the tape series. Joe: Ok, so you've been around that sort of thing for a long time, right? And if correct me if I'm wrong at any point, because I want to make sure this is super clear to the listeners, is that from what I get of what we're going to go still back, I still have other stuff to do, but I want to kind of set the stage of your expertise or what you believe is, is how you can help people. As you said, you can buy all the courses and attend all the conferences and do all of this stuff. You've said it here. You set it on your website. The enthusiasm kind of goes away when life gets in the way. Right. It's basically that simple. You come back from the high of of being at a conference or are listening to something and then life literally just gets in the way and you don't get the things done that you promised yourself that you would. So my understanding is that you are basically this coach that is going to keep you on track. Whether life gets in the way or not, you're basically going to be this person that is going to bring people along through all of this and keep them accountable to what they promise themselves that they would do and make sure that they do all of the things that are needed without shelving anything because life got in the way. Is that fair? Brian: Right, it is because, again, you know, Tony is great if you've ever been to one of his big events, you P.W. he he can talk nine thousand people into walking across twelve hundred degree recalls in a day. Joe: Yeah. Brian: By the end of day one, he's got you walking across Coles. But again, how do you can't maintain that energy and that excitement and the momentum of that event for weeks, months, years to get to where you want to go? And Tony has admitted that this is an area that he struggles with, is how do I get people to keep going? Joe: Mm hmm. Brian: Which is one of the reasons why he has his coaching program that you can go and pay tens of thousands of dollars to get a coach for a year, and it's one of the reasons why he actually created the pyramids, Madonna's training group, to train people like me to be coaches that help people implement his strategies. And that's really what it comes down to, is how do you take the strategies that, you know, you need to be doing and implement them? One of the biggest challenges in society today is we don't teach people discipline for the most part. There's a few places that that happens. But outside of that, it's not encouraged. In fact, it's almost especially in today's society, you're not responsible, you know, being responsible for yourself, being accountable. That goes out the window. And yet that's how you are going to be successful. That's how you're going to get to where you want to go. Unfortunately, society is teaching people to be cheap and to live in mediocrity. That is not how you're going to get to where you want to go, because I'm assuming that most people here are entrepreneurs. Joe: Mm Brian: They're Joe: Hmm. Brian: Entrepreneurs for a reason because they are sick and tired of working for somebody else's dreams. And so they want to pursue their own dreams or they think they can do it better. And so they're out there trying to do it on their own. But there's a myth that goes with that is the fact that they have to do it on their own, they have to try to figure it out all by themselves. And some of my best clients are the people that have gone to school to learn how to do what they want to do, a chiropractor or a massage therapist, the tradesperson, they know how to either pound nails Turner Ranch, adjust somebody's back, but they don't necessarily know how to do this thing called run a business. And so there's certain aspects that come into play because my my ideal market is that small business owner, entrepreneur and professional who's out there wanting to make a difference in their world, in their communities and their lives to make a bigger impact. But they're struggling to do that because they're trying to deal with all of the distractions and all the stuff that's coming at us. And it's like, how do I get a hold of that? How do I how do I focus on those things that truly matter that are going to move the needle for me and my business? And that's really where I come alongside them. Brian: And I say that specifically because I can't take the journey for you, but I'm happy to take the journey with you. And see, that's where the big challenge is, is a lot of people feel like they go to the seminar, which is, OK, here's how you go climb a mountain. Here's the equipment you're going to need and what happens to the trainer. They get all loaded up. They load them up and they say, go have fun. And they go walking down the path. And the river that they were told was a small creek is now this raging river, the bridge that they were supposed to be able to go across was washed out. And it's not like, what the heck am I supposed to do now? They weren't prepared for what they're going to experience or they didn't get enough information. That's one of the things that I always felt in the training classes and seminars I went to. I always felt like there was a piece of information missing. And there's only so much that somebody can teach you. You actually have to go experience it for yourself in order to develop those nuances that are really going to make a difference for you. Joe: Yeah, and I think that there are very, very, very few people in the world that can and you hit it on the head, the discipline that they will actually take, what they've learned, whether it's in a chorus, it's at a seminar or whatever, and actually implement it and be accountable to themselves. I think that's a really, really small pool of people. And so Brian: It is. Joe: Because the Olympics just happened, if we even made an analogy of like you went to class to become a gymnast and you said in a week long seminar to learn all of the different moves and tricks and flips and things, and then you just don't go and show up and start doing that. You have a coach that's watching you Brian: Right. Joe: And and helping you understand all of those things and the mechanics of it. So to me, that's what you're that's really where you help, is that you are there to, like I said earlier, to to to to push them, keep them on track, assist them with when they Brian: The. Joe: Hit roadblocks. You're by their side throughout the whole process. Right. Brian: Right, and I think so many times we have this misunderstanding because we've been taught that learning is going and sitting in class. And that's not necessarily true, but unfortunately, the self development industry has taken this model of let's bring them in, sit them down, overwhelm them with information, make them feel like they're drinking from a firehose so they feel like we've given them a tremendous amount of value and then send them on their way. And so the more people we can pack into that room, the better we make more money that way. Yeah, we actually end up doing a disservice to the customer, to the client, because at the end there is no support. And so how do you make sure somebody has what they need in order to actually achieve the results they want? And that is challenging along the way. And we've created several ways for people to do that because, again, money gets in the way. I mean, if you have enough money, you can find somebody that's going to come alongside and help you get to where you want to go. Joe: Mm hmm. Brian: But we actually started one hundred bucks a month. We've got programs where you can get that at least some help along the way to get you to where you want to go. And we grow from there. But it comes down to this process of how do we get you to take the actions you know you need to take? How do we get you to move forward consistently? And it's just like the example you used is great. The one that I love to use is the example of going to get into shape. You don't go to the gym for three days straight and be done. That doesn't cut Joe: It's. Brian: It. You know, usually you go once for a few hours and you're like, oh my God, you wake Joe: Yeah. Brian: Up the next day and you can't move. And so it's like, why would you expect you to be able to do that in the other areas of your life? Joe: Yeah, I go to the gym five days a week and I still am like, why don't I look better? So you're really in a great position to do this, because how many years did you spend in that whole seminar course kind of world? And I know you're still involved in some of it, but you helped run Brian: Well, Joe: Some Brian: I Joe: Of these. Brian: Yeah, I help promote Joe: Yep. Brian: To put them on the grand scheme of things, I didn't do that a lot. I was probably with them for maybe about a year before the franchise partnership broke up and therefore the franchise collapsed. But it was a great opportunity and I learned a lot going through that process. Back in starting in 2003, I joined Toastmasters and worked myself up over the number of years to become a semi-professional speaker when I wrote my first book and got kind of started in that. But I never really got traction and got that off the ground in this process. One of the things that happened was I shifted from Toastmasters into a leadership role in nonprofit organizations, specifically to the Boy Scouts. But one of the things I saw was because, again, I was focusing on the teaching aspect because I love watching that light bulb go off. But what I didn't realize was because I didn't see it in my life at the moment, at the time yet was that, again, teaching them was good. But coaching them is better because, again, it's about growth and it's part of my all the exercises and things I've done. I mean, I have done it easily. Quarter of a million dollars on personal development. I have bookcases and bookcases of books and tape series that are, you know, this is the pretty self I have, you know, boxes on wooden shelves and storage units full of books and stuff that I've consumed. And it's actually one of my coaching partners mentioned to me and from one of the coaching programs I was in, he says she said, Brian, you have a vault of ideas and strategies to help somebody to move forward. Brian: And so when they need it, you can provide it for them. And so really, it's about getting people to move. It's not about trying to teach you something new. It's about how can I get you to move forward and understanding how to motivate somebody to move. And he talks about the pleasure and pain principles. We move away from pain a lot easier than we do towards pleasure. But many times we only use pleasure as the incentive for us to do something. And a lot of times I'm working with some basic activities with somebody. One of the things that you can see it here in the video, if you're watching it, is my incredible results, 928 Challenge Journal, which is basically spending about 20 minutes each evening documenting what happened today, well, as planning tomorrow. And the first challenge that people come up with is doing it every day. So far, nobody has done ninety one days straight. There's a few that have come close. But on average, it takes people a good month to get into the habit of consistently writing in their journal. And so, again, it's about understanding what it takes to get people to move in the direction they have said they want to go and using those two buttons and pushing them at the right point to get things to to happen. And again, once we start getting that ball rolling and we start developing momentum, that's when it gets fun. Joe: So we are in the age of so many, like self education, know so many programs and classes and courses and all of this stuff on the Internet, right. You can find it everywhere. So and you might even admit to this yourself, because based on what you just said about having a shelf full of tapes and all of this stuff, what would you say to the there are people out there that are professional seminar attendees right there, their professional course. So, Brian: We call them seminar junkies. Joe: Ok, so Brian: Yeah, Joe: We Brian: I've been there. Joe: Ok, so this is good because you're coming from the understanding that Brian: Oh, yeah. Joe: One more seminar, a one more class or one more course is not going to make the difference. It's that you have to start implementing what you've already learned and actually admit to yourself that you haven't done the work or this is the work you need to do and actually come up with a plan. Right. It's just like we hear it a million times. It's just so hard for people to understand, myself included. I'm not I'm not preaching from a soapbox here that, you know, you have to have a roadmap. Right. Because if you wanted to get hop in your car today and drive somewhere, you need to know where you're going. Right. You would get lost. Brian: Yes. Joe: It's no different Brian: Yes. Joe: With our life. Right. So what would you say to those people that are listening to that do continue to just think that that next breakthrough is around the corner by buying yet another course are going to some sort of seminar or conference? Brian: Put down the Kool-Aid because you have drunk the Kool-Aid, Joe: Right. Brian: What they're actually doing is they're pursuing the feeling, the positive feelings they get when they go to the seminar. They're enjoying that high and over time that wears off and they want to change the way they feel. They get frustrated and they go, oh, I want to feel better. Their subconscious then says, OK, well, how do we make ourselves feel? How we do that? Let's go to another seminar. I talk about this in the master class. That is, we get stuck on this learning loop and we go and we learn some information. We get all excited and we go try it and we fail. And usually when we fail once or twice, we quit. It gets hard. It gets uncomfortable. And we don't like to stay there. We don't like we don't we want to don't want to go through that process of learning how to do it and do it long enough to get good enough at it that we actually get to the other side of. OK, I got this. You know, it's like learning to ride a bike. You're going to fall and the only way to get better is to have somebody let go in and you fall down. You got to go through that process. You've got to learn to you have to make the mistakes. You have to, quote, fail, because, again, it depends on how you define the word failure, because at the end of the day, we get to choose what things mean. My definition of failure is different than most people's. My definition of failure is you only fail when you quit or give up. Joe: Hmm, agreed. Brian: Or you don't even try. Joe: Yeah, so it's almost better that if someone had that itch, they should stop for a moment and say, OK, let's do this, let's just try something completely different that we've never done before. Let's actually hire a coach and spend the same amount of money that we would have spent on a course. But we have a coach with us by our side for however many months or a year or whatever, however long that is. That same amount of money could be spread out to have someone keep you accountable and help you to come up with a plan and stay on track and implement all the ideas. Right. Brian: Absolutely. Joe: It would be worth a try for anybody who's one of these. You could Digicom junkies to seminar junkies. Brian: Yeah, the seminar junkies, Joe: Yeah, Brian: Yes. Joe: Right. So it would be a change? Brian: What's Joe: Of course Brian: The Joe: It would Brian: Right Joe: Be. Brian: If what's your outcome? What do you want? Why are you going to that seminar? And there were several times where people said, well, what are you what do you expect from this? What do you want to learn from this? And people are sitting there throwing out answers. And I would be sitting in the background going, I really don't know. I don't I don't have an answer for that. Joe: Mm hmm. Brian: And that was kind of the clue is like, wait a minute, why am I here? Because I want to learn. That's not good enough. I want you to know I started getting specifics is I want to learn how to do such and such and such, and I want to be able to, you know, be successful at doing that. And, you know, whether that was real estate investing or personal development becoming a coach, a lot of those things was, OK, how do you do it? Because, again, we're learning about doing and we learn through doing much more powerfully. There's a difference between head understanding and gut level understanding. And so, first off, a coach, if you haven't had a coach before. I'll share a good story with you, because this is how I got introduced to coaching was I actually bought the up sell of a seminar program that actually included six monthly coaching sessions with one of the coaches that's kind of designed to help you do it. And my experience was I actually got more done in those six months than I had in the previous five years. I did more stuff. I made more progress. And as I went back and analyzed the even deeper, I did more the week before that phone call that I had the previous three weeks combined because I knew I was going to have to get on the phone with him. And again, we're leveraging fear and that pain to our advantage. That's one of the reasons why I wrote my last book on Leisure Fear. One of the strategies that I teach is how to make your friend and how you make sure your friend, as you turn fear around, it's pulling you forward instead of holding you back. Brian: And one of the ways that we do that, as we make it more painful to stay where you are than where you want to go and having to get on the phone call with me or on the Zoom call with me. And we sit in there and says, OK, Joe, you said last week you were going to accomplish these three things. How how far did you get on number one, how far did you get on number two? How far did you get on number three? Now, I don't beat you up if you don't get them done. What I'm doing is I'm wanting to get under neath it and understand the root cause of what's holding you back, because when I when we're able to do that, you see hole that was fear of criticism. That's what prevented me from making those sales calls. I needed to make up for the fear of rejection or whatever it was. And we talk about that. And then we because again, we get to choose what things mean. And so what does it mean to make a cold call? Most people hate cold calls. What if you could turn things around to where you loved cold calls? Because, again, you get to choose what things mean. You can love cold calls. And so, again, it's basically going in there and playing in the mind and shifting away the what the beliefs are, because that's what it comes down to it. That's what our life is all about, is how we feel and what we believe. And when we understand that we do everything in life to change the way we feel. It's really interesting on where things go from there. Joe: Yeah, and I think either I think I read something from your website, I believe, but something you said, I think that's where it was, but it was something about the moment we actually tell the world what it is that we want to do. We're accountable for it. Right then we everyone that that was in earshot of that or reads it somewhere on our website that we're now responsible to do it. And that's why so many people don't actually put that out there, because then they're like, oh, crap, I actually have to do that now. I said it. Brian: Right, Joe: I told Brian: Yeah. Joe: Everyone I was going to do this. Brian: But you're right, it comes down to we are afraid to put ourselves out there Joe: Mm hmm. Brian: Because we're afraid of being criticized now, we do have different types of people in our lives. We have people that I refer to as Krabs, and they're usually in your left hand. For those people who haven't heard the story, I'm sure you have. Is it if you put a crab in a five gallon bucket without a lid on it, it'll crawl out right Joe: Mm hmm. Brian: Easily. But if you put two crabs into that five gallon bucket without a lid, they won't crawl out. The more actually, the more crabs that are in there, the less likelihood that the crab is going to get away, because as that crab, they're programming mental instinct programming that we have within us is that to stay part of the group to follow the herd. Joe: Mm hmm. Brian: And if somebody is trying to climb out, they're going away. And so the rest of the group will pull them back down. And if he continues to do that time and time again, they will actually kill him. Joe: Oh, I didn't know that part of the story. Brian: Yes, well, the same thing is true with other people in our lives. We have people that are on the same level that we are or below us and we're wanting to grow. Now, that doesn't mean that they have negative intentions. They're actually doing it for a positive reason because, one, they don't want you to leave them, but they also don't want to see you get hurt. This is where our family comes in. Parents say, oh, you just sit still, Johnny, because you're not ready for that yet, or they don't want you to go pursue this thing that they perceive as scary, risky, and you're likely to get hurt. And so they're going to try to talk you out of going in, pursuing your great dream. But then there's other people that, again, they're just going to knock you down, they're going to pull you down. And if you've ever listened to Lester Brown, he talks about that and his family, he'd show up for Thanksgiving. And his brother goes, Hey, Les, how's that seminar speaking gig going? And it was almost I'm getting there. I'm getting there. I'm getting there. But we also have people that want to support us and help us. And so it's who are you going to listen to and who are you going to spend time with? And so but it's also important to be in that group of people. Brian: Your support people are in your right hand, your crabs are in your left hand. It's important to know who the person you're across the table with and who you're talking with on the phone. Is this person a crab or is this a supporter and then interact with them appropriately? Because if you're talking with a crab, you stay in the shallow end. You don't talk about your dreams. You talk about the weather, you talk about sports, you talk about whatever that is dull and boring at the time and not really enlightening to us, but allows us to maintain the relationship because there's times in our life when, yes, we can eliminate some of those crabs because other times they're related to us and we can't get rid of them. And so what do you do? So in part of it is, one, you reduce the amount of time, and then two, you understand who you're having the conversation with and understand they're coming to you with a positive intent. They're trying to keep you safe. They're trying to they want you to be happy and they want you to stay well and they don't want you to get hurt. But the same thing is true with our subconscious, which is why our biggest enemy is right up here Joe: Yep. Brian: Is the robot that runs the show 80 to 90 percent of the time. And that's where I spend a lot of time, is helping people reprogram the robot, their subconscious, because unfortunately, it was a program with a lot of crappy code and trying to reprogram it is not as easy as copy, delete and then copy and paste. It's not that easy. It's like the biggest, ugliest ball of spaghetti you've ever seen and trying to figure out where that thing goes. And it's a mess. It's just a mess in there. And but we do have the ability to go in there and change it. And the more we actively pursue that and focus on that and pursue growth, the faster we can get to where we want to go. Joe: So we're going to talk about the services you offer, but you touched upon something that in a previous episode that I had put out, I got a lot of comments about it. And so I want to talk about it as it relates to you personally. And then we can talk about how you use it with your clients. But you spoke about journaling. And the more and more I hear, either I have guest on or I hear people talk about it, the more and more I feel like it's almost got the same benefits as when people talk about meditating, how you can quiet the mind. It was all this fufu stuff many years ago and now it's becoming more the norm. Right? It's something that you need that quiet time. So tell me more about what you think journaling does for people and the importance of journaling Brian: Ok, well, Joe: And Brian: Actually. Joe: Whether or not you actually do it nightly or daily or I'd be Brian: Yes, Joe: Interested to know. Brian: Yes, the the if you can see it there, it says, a life worth living as a life worth recording. And so, Tony, he's inspired me to consistently journal. I have journals from my first in fact, in my latest move, I was going through a lot of them. And I came across the journal that I had right after college. And I was actually really interested to go back and see the progress of my first sales job that I bombed out. I lasted like three months. My experience was the story I was telling myself was different than the story that I was reading. And so, one, it's a great way to document your journey in life. But the way that I teach people to journal No. One is it leverages the power of evaluated experience because you stop and think about it. You probably have heard that experience is the best teacher. Yes and no, because unless we learn the lessons from that experience, then it was pointless. If we keep repeating the same mistakes over and over again, we keep doing the same thing and expect different results. We're not learning. We're not growing. And so journaling is a great way for you to document your journey, but also to stop and evaluate what happened today. What did I get done? Because many times we get to the end of the week, we get to the end of the month. Man, I feel like I didn't get anything done. And you can go back to the daily journal process and go, oh, yeah, well, I did that and I did that and I did that and I did that. Brian: But it also allows you to say, OK, what am I actually getting done? And is what I'm getting done, moving me in the direction I want to go? Because, again, we've talked about the journey that we're on. We have a goal we want to achieve. And in order to get there, we like you said, we have to have a plan. Many people don't put together the plan. In fact, many go study programs. And I listen to rarely was there any planning process involved. And so I actually stepped somebody through this. Exactly. And the incredible results on what they challenge is Ugo's. We set our big yearly goal and we break that down into what are we going to accomplish in the next ninety one days and then we break that down. This is OK. What's going to be month one? What's going to be month two? What's going to be month three? And then we break that down. OK, what's going to be week one of month one. What's going to be in week two. Week three, week four. Because again, the only way to get to complete the ninety one day journey is to each day make forward progress. And how do you make sure you're making forward progress if you never look at the map and compare your results, what you're getting to see if you're moving in the right direction. Brian: It's like a airplane taking off from New York to L.A. without a GPS system, without a method for them to course. Correct. You know, there's a reason why there's a compass in the airplane. There's a reason why there's a GPS in there that's consistently every moment checking in and saying, am I on track? Am I on track and making those little minor adjustments along the way? Because if you actually look at a slight wiggle from L.A. to New York, because there's turbulence up there, there's wind currents up there, lots of different things depending on which way you're flying. Are you flying with the jet stream or against the jet stream? All of these things are impacting that flight. The same thing is true in our life. How do we make sure we are on target? And journalese is one of the ways to do that. But we also encourage people. The way that the journal is set up is to do that evaluation experience where you document what you got done, you documents your lessons along the way, and you also document the changes that you want to make, the adjustments that are going to make tomorrow a better day. How can I be better tomorrow? And then you plan tomorrow. One of the biggest challenges we have is making sure we get the right stuff done. How do you make sure you make time to get those important but not urgent activities into your schedule? Because if you do not intentionally plan them and schedule them into your calendar, rarely, very rarely are they going to actually happen, which means you're never going to really make the progress you want to make, because stop and think about it, your goals require a lot of time and energy doing those things that are important but not urgent, which is another reason why having the accountability is a big factor in that. Brian: It's like, OK, it's it's not urgent, but oh, my coach is going to be asking about it. What do we just do? We created the needed urgency. Give you a perfect example. I had one of my clients. She wanted to raise her rates and so she'd been talking about it for months. And so we were working on the programming in her head so that she felt like she was worthy of that price increase, putting it off and putting it off. And this is OK, put and says, OK, what's the plan? And so we specifically detailed walk through the plan. OK, I need to put a sign up on the door and I need to send out a notification of my. People and I got an email and, you know, here's an opportunity for people to come in and sign up for a plan where they can lock in the current pricing. And I says, OK, when I come see you next week, I want to see the sign on the door. When you think you put the sign on the door right after that call, Joe: Ten minutes Brian: 15 Joe: Before Brian: Minutes Joe: You showed Brian: Before Joe: Up. Brian: I 15 minutes before I walked in the door. Exactly. And it wouldn't have happened if I had not pushed her to make that commitment. As a mom, what are we going to do? Are we just going to keep going down this road? Because that's one of things that we do, is we look at it, says, OK, what happens if you don't change? If you keep doing the same thing you're doing today over and over again, you're going to get the same results. Are you happy with that? Are you satisfied with it? If you're not, then what are you going to do differently tomorrow? That's going to change. The trajectory that you're going internally is a big piece of that is to help make sure that you are documenting your journey and you're evaluating the experiences that you're getting and making sure that they're taking you in the direction you want to go and if it's not making those adjustments along the way. Joe: Is the majority of the time it happens is at night, just before you go to bed sort of thing. Brian: One of the things that we designed the system to be very flexible. There's actually a place for people to write in their schedule and there's no numbers on it because I've got clients. It's wake up at five o'clock in the morning and then there's guys like me who don't start their day until seven, but I'm usually up till midnight. So, again, it just comes down to fitting it into your system. And that's actually one of the things we do within the group coaching calls is we're saying, how do I take this system that Brian has created and apply it to my life? How does this fit into my life? And we teach people how to do that. And I've got one client who does restoration work. So he's very much like a firefighter. The phone rings and it's like the alarm bell going off. He's got to go fix somebody's problem. So how does he schedule his day? And so we came up with a system on how to use the system because what happens if the alarm doesn't go off? What are you going to do? So we had a plan, a system and a Plan B system Joe: Mm Brian: For Joe: Hmm. Brian: It. We recommend the Evening Times for a couple of reasons. Number one, when you're planning tomorrow, you don't have to remember it. Actually, you get a better night's sleep. Joe: I get it off your brain. Brian: Right, and so your brain, is it trying to remember all the things you've got to do tomorrow? We also encourage now I have some people completed at their end of their workday. So at four thirty, when they go home at 5:00, I've got one woman who does it at three thirty before she go pick up her kid at school at 4:00 and she's basically document what did I get done? And she's also there's still some things potentially that she's going to do because we incorporate not just your business, but your life in the journal. And so it's like, OK, what am I going to be doing for all 16 hours? And I'm awake and relax and let go because so many times we struggle with constantly running. And there's a reason why there's a pad of paper and a pen on my bedside is because there's a lot of times I wake up in this ideas and I got to sit there and I get to write it down because I will not remember when I wake up in the morning. And so it just comes down. We try to get the system to fit the person, not the person to fit the system Joe: Mm hmm. Brian: Like so many of them do. But at the end of the day, it comes down to what works for you. We recommend in the evening because of the benefits there. There are some people that do it first thing in the morning. If that's the case, as long as you're doing the system, great. Joe: I just hear about it all the time, and I said I was going to start it after the last episode, that someone who was heavily into it, I even publicly said, all right, I got to start doing it and I still haven't done it. Brian: Well, let's have a conversation about that, Joe, because, again, at the end of the day, it's what is it going to take to get you to move? Joe: Yeah. Brian: And that's actually something that because, again, I've got numerous stories that I can tell you about people that because one of the one of the most common mistakes that people make when they're doing the journal is the fact that they only do it Monday through Friday. They don't do it Saturday, Sunday, because, again, like the woman who does it at the end of the workday, my question to them is, OK, that's good. But what are you going to do, come on Saturday, Sunday when you're not going to the office? What are you going to do then? And so we create a plan on how and then we got to you got to figure out how to make it work. And so I actually challenged several of the people to do it, says, OK, if you don't in. The other thing is, is not getting the journal done. The night before it was OK. If you don't do the journal the night before, you have to spend two minutes on a cold shower in the morning. I don't know about you, but yes, they talk about cold showers being this great, wonderful thing. But I don't want that in the morning. No, thank you. And so, again, we move away from paying much better than the the perceived pleasure. OK, and so it's creating the pain. So it was like, OK, you don't do the journal, not before you're going to take a cold shower or I mean, really what I would do is I give them a choice. I says you can either a take the cold shower or B, you have to text me that says I didn't do my journal last night. Which one do you think people chose? And I said, OK, those are your two choices. You have to choose the greater pain. Which one do you think they chose as the greater pain? Joe: I would think having the texture would be more of the pain. Brian: Yes, Joe: Yeah. Brian: Because that is admitting Joe: Yeah, Brian: That they failed, Joe: Yeah. Brian: Which just goes to show you the level of programming we have around failure. And so, again, it's using fear and pain to move you in the direction you want to go. Joe: All right, a lot to unpack there. So we only have a little bit of time left and I want to honor your time. So let's do this first. Let's talk about I have for services written down that you offer. And you might have added one. You might have taken one away. But I have your one on one coaching. I have the ninety one day challenge. I have the mastermind and then I have your weekly accountability coaching. And so can you just briefly give us an explanation of those. And if I missed one at it and if you're not doing one of them, take it away. Brian: Ok, well, as a coach, I need I don't know where you are, so I don't know which service to offer you or which one is the right fit for you, Joe: Mm hmm. Brian: You or your listener. And so I really start with what I refer to as a discovery session where we sit down and talk about where you are and where you want to go. And then based upon that conversation, we determine how to best help you. Now, where do people usually start? But most people start with the incredible results, starting with their challenge, because it is the one skill that helps people take the action they know they need to be taking that will help them reach their goals. And they see tremendous immediate results, positive results and benefits from participating in the program. And it's one that it's only one hundred and ninety seven dollars if somebody wanted to participate in it. But you got to come through me and do that discovery session in order to determine whether or not that's the good right fit for you. The other thing that is like rocket boosters on the on any one day challenge is the weekly accountability coaching calls and the incredible results. And what a challenge. We do a group coaching call where we are sitting down and we are we're talking how to help use the system, how to get the system to work and fit into your life, and how to help you consistently take action on it. But we also help you with your plan on accomplishing your ninety one day goal. So if your goal is to get 50 new clients, this is OK. What are you doing this week that's going to make you more clients? And we're talking about those different activities in those different ideas and strategies. Brian: So the problem is, is there's anywhere from five to 15 people on that call, depending on how many people are actually in the group at one time. And so it comes down to how do you get enough of my time to where we can truly focus on that programming piece that we've talked about, which is such a big, ugly mess that gets in the way all the time. That is where that one on one time comes in to, where we actually spend 30 minutes specifically talking. We it's a very specifically designed program, says, OK, here's what I'm going to do. Here's what I got done. Here's what I learned. And here's the changes I'm going to make so we can review that in eight to ten minutes pretty quickly. And then we spend the next twenty minutes digging into what got in the way. What's the challenge and struggle you're dealing with right now? That's either the bitch that you're in, the roadblock you're facing, or what's holding you back from moving forward. And that right there is tremendously powerful and makes the ninety one day challenge much more successful. And people who are participating in both their results that they get in and I know they challenge is heads and shoulders above the people that are just in the program by itself. Joe: Yep, and I have to ask this, because I'm sure if I was listening to this, it would be driving me nuts the entire time. It's like, why ninety one days? It's not 60, 30, 90, 120. Brian: It's seven times 13 is 91, seven days for 13 weeks. Joe: Steamworks got it. Brian: So because, again, one quarter is three months, which is four point three weeks, and so it's to get a full 13 weeks is ninety one days. Joe: Perfect. So we covered that and the Brian: Ok, Joe: Weekly accountability and then Brian: Right. Joe: The one on one coaching is. Brian: The one on one coaching I refer to I refer to as my general coaching, and that's where somebody is really wanting to grow and make changes. And a lot of times people will start off there. And again, they're wanting to do a lot of growth and unpacking and deal with the programming issues that are going on. And they're wanting to make some significant changes. Those are one hour sessions and those are usually each week as well where we're digging in and we're trying to figure out again, we're making some serious shifts in there. And then a lot of times it's like, OK, we got them straightened out and we got them on a path. We've created the plan. We've got the momentum going now and it's starting to move forward. And a lot of those people will roll into the accountability coaching so that they have the regular check ins that are getting done what they want to get done, but they don't need to necessarily. OK, let's dive in deep in there and start digging around. Those are wonderful sections. I love doing them, but they take a lot of energy on both myself as well as the person because we're going deep. Know, one of the things that you probably have learned by now listen to this is I don't like to play in the shallow end. I like to dive deep and I like to go under the covers. And if people aren't, that's the other thing is if you've got to be comfortable in playing in the deep end and there's a lot of times when my role as a coach is not to tell somebody what to do, I almost never do that because who's an expert on Joe and Joe's business, Joe is right. So my role is to ask you the questions that is going to help you come up with the answers and solutions to the problems that you're faced with that external perspective and to help you come up with the solution that is within yourself and that the mastermind is more Joe: That's Brian: At the upper Joe: Ok. Brian: Level Joe: Ok. Brian: And that right now is closed. So people are not available into that. And usually what happens is we start people off in the 90s when they challenge and there's those people are rolling up into that mastermind as they complete the 91 day challenge. Joe: Scott. Brian: But we start people off with where they are and what they can afford of what they need to do. And so we have programs that start, like I said, at one hundred dollars a month, up to twenty five to five thousand dollars a month, depending upon which program you're involved with. And there are other things that I do. I have mentioned Tony Robbins, but I have not mentioned John Maxwell, most certified coach, trainer and speaker of the John Maxwell team, which means for those people who are not familiar with John Maxwell, he's a world renowned leadership expert. And that was one of the big challenges that I saw was there was a lack of quality leadership in our world today. And because my target market is that small business owner, entrepreneur and professional, they have never really had much experience with leadership training. But again, I'm not a leadership trainer. I'm a leadership developer. And so we have leadership programs using John's world class material that over a period of 90 days, we teach you the strategies and you practice them for ninety one days so that you develop those skill sets along the way. And so, again, it depends upon where you are and what you need and what tool is necessary to help you fix the problem that you're up against. Because again, I use Stephen Covey, I use Joe Mitali. I will pick from anybody I need to and I will claim that everything that I share didn't originate with me. Brian: I'm standing on the shoulders of the giants that went before me as far as you know, all the way back to the Greeks, Aristotle and and some of those, because they had it first. They they mentioned it. And again, everybody since then is really just repackaging it from there. And if somebody wants to do a DIY version of it, pick a great book. Napoleon Hill's was probably the the godfather of personal development or at least modern person development with they can grow rich. And one of my mentors actually went and read the book and studied it over and over and over again. You probably have heard the suggestion that you should go read a book a week or so, go read 50 bucks a year. Right. I challenge you. That's not the right strategy if you're wanting to grow. It's a great way to learn information. But if you're wanting to make changes in your life. Yeah, one great book and read it 50 times, study it, do the exercises at the end of the chapter, implement the strategies. Another great one is Stephen Covey's Seven Habits of Highly Effective People. That that book still to date. That's one book I try to read at least once a year. And I'm usually listening to it because I'm taking advantage of the windshield time that I have. And it seems like there's always something more in there. Brian: That book is so deep and there's so many different levels that you can get into it as you grow. There's another level. There's another level. There's another level, which is how I spend a lot of my time. Yes, I have three different coaches and I'm constantly consuming more and more material. But there are there's about ten different books that I try to spend time reading consistently because they're the road maps, they're the foundational skills. And it's going to take for me to get to where I want to go. And it's only through consistently coming back to it. You don't become a master blackbelt by learning how to do the form and doing it perfectly. One time I believe it was Berklee that said, I don't fear the man that knows ten thousand ticks. I fear the man that is practiced one kick ten thousand times in the story that got you the story and the rest of the story was the example of that was he says will show me. And and basically what it was is because that person had practice that kicks so well. It doesn't matter if even if you know it's coming, you can't block it, you can't stop it. He has mastered how to do it regardless of what you do to counteract that. The only way to not get kicked is to not get into the fight. Joe: So. We're over a little bit, we have a few more minutes. Brian: Oh, yeah, I'm good. Joe: Ok, cool. So I want to ask you about because you mentioned since we're on the subject of books and you mentioned Joe Vitale and you were you are part of a book called The Abundance Factor. Brian: Yep. Joe: Can you tell me a little bit about that and how that came about and. Brian: Well, I was on the short list as Joe was looking to write his next compilation book, and I had been following him, been a fan of him, read a number of his books. I still practice one of one of the big things that sticks for me from Joe is the story of Hopital Pono. If you have not read the book Zero Factor, I highly recommend it. It's a very fascinating book. The mantra that that book teaches is something that actually helps me go to sleep at night because my brain has a hard time shutting down. And by saying that for phrase mantra helps my it's kind of a signal to my brain to stop thinking and go from into my head and into my body. And so it's really helpful there. And so I was on the short list of authors that Joe asked to help participate in that book. It's called The Abundance Factor. I knew the group of people that were pulling together. And so my chapter is called The Unpleasant Truth, because, again, there's a lot of people out there teaching because we're talking about the mindset of abundance, which is something that a lot of people struggle with. But it's hard for people to actually do it and practice it consistently. And that's really what my chapter was about. It was about taking the actions that the book is encouraging you to take. And so that's what my chapter is in that book. April of the year that it came out, we did hit the Amazon bestseller list with that book at the time. And it's been a great book. And I use it more of a as a calling card and as an introduction to myself when I'm meeting new people. Joe: And then you mentioned earlier about a book that you wrote that I did not actually see in my notes. So can you tell me about that? Right. Was Brian: Ok, Joe: There. Brian: I've written three books. Joe: Ok. Brian: The first book is called Ready, Set Succeed, which is a self published book. Again, it was another compilation with a series of different authors. And I've got several boxes of those still today that, again, I use them as is handouts. And it's, again, about taking action because again, that's what I saw people struggle with and implementation because again, at the end of the day, it's ready, set, succeed, go. You've got to get moving. And so we were all writing the chapter based upon that. It was a self published book. The only way that you can get that is to go through me to get that I'm aware of. And I actually did have a client come to me through that book for one of the other offers. They got it. They called me up and that chapter resonated with them. And it was an opportunity for me to help them out. Then we wrote The Abundance Factor, and then after that we wrote a book called Unleash Your Fear. And that book is available right now. You can go to unleash your fear dot com and get a copy of that. Right now, at this point in time, it is about a 40 page e-book. You can get a copy were actually read it to you for in about an hour. Brian: But that's one of our projects for the rest of this year, is to work on rewriting that book and expanding it to where it's around a hundred pages and we turn it into a physical book and using that as a methodology to share that message. Because as we've gone back and we've we've shared that message, we teach in a very powerful concept in that book about the relationship that people have with fear, because right now most people have a lousy relationship with fear. But fear is just a tool that's used by our subconscious. And our subconscious causes us problems because it's designed not to make us happy. It's not designed to make us successful. It's designed to make us survive. Problem is, when we do go out there, when we want to grow, when we want to succeed and we want more, it sees that as not surviving. That's risky. There's pain out there if we pursue those things. So how do we how do we change that? How do we work on that? That's what I've understood from the people that have read the book, that a lot of people enjoyed it and you can actually still get it for free for a little bit longer. Brian: We're in the process of getting that changed. You can go to unleash your fear Dotcom and get a copy of that book there. And once we get the expanded version, we will still be using that. You are all along the way. And so in this process, we've got a lot of great tools that are available to you. And we've talked about a lot. Joe, you're actually one of the longer podcasts that I've gone on and we've talked about a lot of different things. But one thing we haven't talked about is one of the foundations that I used for my coaching, which I refer to as the Five Keys of Success. And that's actually a podcast that I do called the Five Keys of Success podcast. And you can go out there to wherever you get your podcasts and Google five Keys successor Brian Lovegrove, and you'll be able to find it. And I talk about those five keys, because at the end of the day, because, again, I've been doing personal development for decades now. And so I boiled down all of that stuff to what is the true fundamental foundational skills and tools you need. And I came up with those five keys. You want to know what those five keys Joe: I Brian: Are? Joe: Do, I have actually you were not going to get off this podcast without talking about it, so I have them here. I still have other stuff. That's why I like that. Yes. So please, I totally want to these this is like one of the things that really triggered it. When I wanted to have you on as a guest, I'm like, man, I want to know what those are. Brian: Well, the five keys of success, the first key is clarity, and I refer to it as get clear because without clarity, you're lost, you're wandering around in a fog. If you don't have a destination, you're never going to be able to get there. And if you don't know where you are, how do you know how you're going to go from where you are to where you want to go? And we talked about the plan. If you are not clear on the plan on how to achieve your goal, you're not going to get there now. But there's some also challenges with that piece because, again, a lot of people may not necessarily know how to get to that point, but do you know how to get started? Because that's the key. Do you know what the next step is? How many people get bogged down with steps? Nine hundred and eighty seven through steps. Twelve hundred and eighty four. Well, what steps do you want? I'm on step five. What step six. I don't know. Focus on step six, seven, eight, nine. OK, focus on what's in front of you and these other steps you will figure out by the time you get to that point. The second key is commitment because without commitment we cave in to the fear. We don't have the motivation, the energy and the power to keep going when things get. And the analogy that I love to use is the story about Cortez. When he landed in The New World, he burned his boats. His men woke up the next morning and they went in. He addresses many gentlemen. There is no way home that we do not create for ourselves. And so his small band took on and conquered much larger nations and groups of people in South America because they were committed to making it happen because it was either do or die. Joe: I'm a big fan of burning the boats, by the way. Brian: Absolutely, that's one of the podcasts that we did, is, OK, how do you burn the boats? Joe: Yeah. Brian: And we kind of walk through that exercise and that's that can be a whole coaching process. My story around that was I used to weigh two hundred and sixty pounds and I went on a diet and I lost thirty five pounds in the first month and a half. It was a radical diet. And one of the things that I did on the back deck in the fire pit is I burn my fat jeans and I actually have a picture of you. It's it's at night. You can all you can really see the flames. You can barely make out the jeans as part of the picture. But I vividly remember that process. And I promised myself I would never buy that size pair of clothes ever again. Now, have I been able to keep off all the weight that I lost? No. But when my pants get tight, that option is not there. Joe: Yeah. Brian: It's like, OK, we got to do something, we got to turn this around because we are not buying a bigger sized pair of pants. And so, again, that's where that burning the boats actually comes in, which leads us to step three, which is get crankin or get busy taking action. Money talks about taking massive action. And, you know, how many times have I you know, I've tried everything. Really? How many times have you tried? What have you tried? A hundred things.

The Joe Costello Show
Dr. Shawn Dill and Dr. Lacey Book - the Black Diamond Club, The Specific and more...

The Joe Costello Show

Play Episode Listen Later Aug 5, 2021 58:31


Dr. Shawn Dill and Dr. Lacey Book talked with me about so many things happening in their lives. Amongst the many of subjects we discussed, we talked about their book "None of Your Business: A Winning Approach to Turn Service Providers into Entrepreneurs", their organization the Black Diamond Club and their franchise business, The Specific Chiropractic Centers. It was great to talk with such a power couple as I like to call them and learn how they navigate through both their business and professional lives. The Black Diamond club is about helping service providers learn all the necessary tools to be successful while offering a community of support and like minded individuals. Their book gives you the tool in hand, to do the same. The Specific is their chiropractic franchise organization that helps chiropractic offices use a proven formula for growth is their specific realm of expertise being knee, chest, upper cervical specific clinics. I had a great with with Shawn and Lacey and I hope you get as much out of this episode as I did. Thanks for listening, Joe Dr. Shawn Dill & Dr. Lacey Book Owners - The Specific Chiropractic Centers Website: https://thespecific.com/ Founders - Black Diamond Club Website: https://blackdiamondclub.com/ Their mutual website: https://shawnandlacey.com/ Lacey's Info: Website: https://laceybook.com/ Instagram: https://www.instagram.com/drlaceybook/ Facebook: https://www.facebook.com/drlaceybook/ LinkedIn: https://www.linkedin.com/in/laceybook/ Shawn's Info: Website: https://shawndill.com/ Instagram: https://www.instagram.com/drshawndill/ Facebook: https://www.facebook.com/thespecific/ LinkedIn: https://www.linkedin.com/company/dr-shawn-dill/ Emails: shawn@blackdiamondclub.com lacey@blackdiamondclub.com Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.libsyn.com Subscribe, Rate & Review: I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to: https://joecostelloglobal.lybsyn.com Follow Joe: https://linktr.ee/joecostello Transcript Joe: Sean, Lacey, thanks for joining me on the podcast. I'm super excited after I went and looked at everything that you guys are doing. It's like I probably need a week with you on air. I'm exhausted, actually, from my research, but I'm excited about this. So welcome to the show. I appreciate it. Shawn & Lacey: Thank you so much. Boy, that's that's a I never heard that before, I don't think we hear stuff similar to that. I would say, though, it takes a little while, it takes a little while for us to explain what we do. Sometimes Joe: Yeah, Shawn & Lacey: I get that. Joe: There's a lot going on, so I'm going to jump right in, I might have a different approach than some podcasters. For me, it's really about the origin of where you came from, because I think that's missed a lot of times. And I like people that are listening to the podcast as either entrepreneurs that are in the throes of it and trying to figure stuff out or they're they're on their way up or people that are on the sidelines going mad. Do I really want to do this? I hear how hard it is to be an entrepreneur and and I'm one myself, so I know what it's like. And I would love to at least get your history first. And if you want, you can obviously you probably need to both do it separately because you you didn't all of a sudden disappear together as this good looking power couple that you are. And so I'd like to hear a little bit about each of your story and then the connection and then we'll go from there. And I promise I won't miss anything. I have a ton of notes so either of you can go first, whoever wants to. Shawn & Lacey: Well, Sean is a couple of years on me, so I'll let him go first chronological order, chronological order. Well, I'll accelerate through the early stages of my entrepreneurial development. Joe: Not too Shawn & Lacey: I Joe: Much, Shawn & Lacey: Graduated. Joe: Though, not too much, because it's I like to know who you were when you grew up, like it's Shawn & Lacey: Ok. Joe: Important because I think, you know, people just think all of a sudden, hey, Sean, at least he had a lucky. They they had rich parents and they grew up in an affluent neighborhood. And Sean's trajectory was to be a chiropractor the moment he was born. And and I think it's important for people to know that it's not that easy. And not everyone most of us don't come from that sort of direction Shawn & Lacey: Mm Joe: Early Shawn & Lacey: Hmm. Joe: On. Shawn & Lacey: Ok, well, my both of my parents worked nine to five job superimportant, and I would say we were sort of just middle class, maybe just above middle class. Not definitely not upper middle class. I distinctly remember for my age, wanting designer jeans, Jordache jeans, and I was allowed a pair of Jordache jeans. But my friends, they wore Jordache jeans every day. And so unless I wore the same jeans every day, I wasn't wearing designer jeans every day, hated to wear the lead jeans. I worked one of the things that super important as I worked during high school, shining shoes at a country club in Fort Wayne, Indiana. That was sort of my first real job making money. Of course, I mowed yards, but nothing like nothing super sexy from the entrepreneurial space. I was I had a job. But what I what I noticed was that the members at the country club, they were able to play golf on Wednesdays and Fridays and Saturdays and Sundays. And there I was shining their shoes every day and something sort of sparked in me that made me wonder how they had that lifestyle. I know that you've had conversations with Steve Sims, a similar thing. I think that people people have that sort of that moment when they question what makes you so different than me. Shawn & Lacey: So that was sort of my moment. I fell in love with this idea. I was like, I think that if you truly have made it in my life, you're 16 years old. I thought, like, well, then you could have a country club membership and you can play golf on Wednesdays and Fridays. That became something that was super important to me at a very early age. Now, I didn't play golf at that time. I was shining shoes, but then I went on. My cousin was a chiropractor. This was during the 80s. And the chiropractic space, the 1980s are known as the Mercedes 80s because insurance reimbursement was high. My cousin drove three BMW, so I think he had two BMW cars and he had a BMW motorcycle and his license plate was three BMW s three BMW. And I thought, well, that's really cool. You must really do well. If you if you're a chiropractor and a chiropractic experience, then my cousin really encouraged me to go to chiropractic college, go to chiropractic college. I'm very passionate about chiropractic. But what I realize is that just like culinary art school, when you go to culinary art school, you're being taught how to be a great chef and every great chef's dream is to own their own restaurant. Joe: Yeah. Shawn & Lacey: Well, the same thing in professional trade schools. If you go to become a dentist, a chiropractor, medical doctor, lawyer, they teach you how to be a great practitioner. And of course, every practitioner's dream is to own their own place. But I didn't really have the business education that would be necessary to be successful. I graduated chiropractic college at the age of twenty four. I knew everything there was to know in the world at twenty four. I mean you just Joe: Yes, Shawn & Lacey: That said, Joe: Absolutely. Shawn & Lacey: You know everything. So I moved from the United States to Costa Rica. I didn't speak any Spanish where Costa Rica. The primary language is Spanish. But you know, you figure that out later. And my first year in business was absolutely terrible. It was just it was terrible. I ended that year wondering if I made the right decision, one to be a chiropractor, to to be in business. And I had to make a decision to either, like, bite down hard and press forward or to throw in the towel. I could probably go back to the United States and get a job working for someone else. Thankfully for it, for my sake, I decided to press forward one more time. I caught a break. I was invited to be on a television show. My Spanish was still pretty terrible, so the show was pretty terrible. Imagine you're interviewing me and my English was so broken that you were trying to piece it together right like that. That's what we did. But then slowly I began to get my bearings with the language. I got better and my business blew up. We ended up having four chiropractic offices in Costa Rica. That was sort of my first taste of that magic called scale. I was like, wow, so we could do that, end up coming back to the United States. Shawn & Lacey: I have two daughters and wanted to get them into school here and then here I really that's when I got to the states. That was kind of why would accelerate that. But it is important to know where someone came from. That's really when that sort of entrepreneurial bug started to really develop. I opened up one office and had that bug to scale. We eventually created a chiropractic franchise called the Specific Chiropractic Center. We began consulting with chiropractors and then consulting outside of the chiropractic space. We've worked with some great many. Tours like Jay Abraham and David Meltzer, who began to encourage us to look at other verticals, so we started to get into the software space, we are in the digital marketing space. We do events, but they're all interrelates. It's not like a hodgepodge of things. They they're all sort of interconnected and that sort of then that acceleration on the on the backside, you know, we've just been super blessed. I think a lot of people that really have their game together did well during the pandemic. And so we were blessed through this through this year. And then, of course, you know, looking ahead, trying to prepare the business for what's to come. Joe: So all that was amazing, and I appreciate you doing that for me, and I think the audience will really appreciate it. The only question in the whole thing that I had, and I always hate interrupting, so I just kept quiet, was why Costa Rica? It seems like such a random thing to say. And even though I want to go there and I want to possibly live there, I get it now. But at twenty four y. Shawn & Lacey: I just told the story last night, and I remember we also have a podcast and I appreciate when podcast and they say I'm actually going to tell you the answer to that. The real answer, when I was in St. Louis at Chiropractic College, my roommate, he was dating a girl and eventually became a fiance. And her grandmother was the president of Nicaragua. And my roommate was like, we should go down and visit Nicaragua. I was like, yeah, let's do that. So we stayed. We ended up staying at her grandfather on the other side of the family at the grandfather's house. And we were invited to have a couple of meetings. We were exploring. I wanted to go to Nicaragua and we sat down with a guy and very nice. And he explained he talked to me and he said, Sean, you don't want to come to Nicaragua. Not safe, not good, not stable. If you like Nicaragua, for some reason, you should go to Costa Rica. And I was like, OK, well, that guy, his name was Popl tomorrow. And there's a book written. It's called Everybody Has His Own Gringo. Pulpo was Joe: Well. Shawn & Lacey: Oliver North's contact in this whole Iran Contra affair. I was sitting in his guy's office and he told me so Jamal told me, you don't want to come to Nicaragua, go to Costa Rica. I did. A couple of months later, I went to Costa Rica. Costa Rica was just absolutely beautiful. I was honestly, too, trying to escape something that's interesting from the health care space. I was trying to escape the advent of managed care. This was nineteen ninety five. Managed care was coming on the scene. People didn't really know what that was going to mean for the providers. And so I was like, look, I mean, again, I know everything. The best thing for me is to go to Costa Rica. First it was Nicaragua and then I was convinced by some very powerful people that I should go to Costa Rica instead. Joe: That's amazing. All right, well, and did you end up buying any property there because by now everyone wants to be there and everyone wants to own property. Shawn & Lacey: I did, but I sold that property when we moved back to the United States. That was the other thing is that I worked very hard. You know, we may dive into that at some point here in our discussion as an entrepreneur. So people always ask me, like, wow, you're in Costa Rica like, what's your favorite beach? And honestly, the answer is, I don't know. I was working like a given. We have a home in Florida, but if you're working, you're not at the beach. So just because you live in Florida doesn't mean you're like out renting jet skis or doing all of these things every day. Yeah. Joe: Yeah, well, great, well, that's awesome. Well, I appreciate you doing that, Lacey, it's your turn now. I want to hear about you. Shawn & Lacey: Wonderful, and I'll fill in some of the gaps that Joe: Perfect, Shawn & Lacey: John glossed Joe: Perfect. Shawn & Lacey: Over when the two of us came together, so for me, I grew up a little bit differently. I actually grew up in Silicon Valley in Northern California. And you think Silicon Valley and you think just that the tech capital of the United States and it really was like that. I remember when I grew up, I literally grew up around the corner from Netflix when it was in one little tiny office and I could walk there from my home. But that didn't mean that I grew up with a lot of money. And so majority of my life, we actually lived off of a single family income. My mother worked. My dad, my father was a lot older and so he retired pretty early on in my childhood. And so my mom was really solely responsible for the money in our household, which especially in California, didn't go very far. Joe: The. Shawn & Lacey: And so for me, I actually started working since the day I turned 14. We got some permission from the school and I worked at a really horrible but really fun second run movie theater, probably doing things that no kids should have done. But it taught me a lot, taught me a lot about customer service and really being able to take care of people. And honestly, I can say to this point, I've never stopped working since that day. I've always been a go getter, I think for me, because we didn't have a lot. I always just had this desire for more. And on top of that, I a lot of people out there may relate to this because I wanted more. I had a rebellious side of me. I always wanted to to to break the limits, break the mold. And so I thrived in almost every job I had when I went to undergrad. Since I paid for it myself, I worked three jobs and went to school to get it done. And so I always had that spirit in me, but I never had the knowledge or the intellect or know how. Shawn & Lacey: I don't know how to put it all together. And I ended up going to chiropractic school. And along that road is when I met Sean and just I was just as passionate about chiropractic as he was and ended up we ended up working together in that office that he started in California. And then from there, that's where the two of us started our relationship and started working together as well. And I remember at that time, I we want to talk about beginnings. We tell this story a lot because that was in two thousand and eleven and we were in a six hundred and twenty five square foot apartment. I had a ton of debt coming out of school. Like carpenters come out of school with around two hundred and fifty thousand dollars in debt. He had just come to the United States quite a few years before that, but was still, I mean, really starting from scratch. So we had the six hundred twenty five square foot apartment and we had the two girls that are two kids there as well. I Joe: Scott. Shawn & Lacey: Mean, it was teeny tiny. And we always tell the story of our green couch because at that time we had no money. We had to get a hand-me-down couch from another student that was at the school that moved away. And that's what our girls slept on. And so oftentimes I know and I love that you said that because people automatically think, well, maybe they maybe they had opportunity. I didn't maybe they were blessed. Maybe they grew up that way. Honestly, not only did not grow up that way, but in 2011, it was actually worse. Right. We didn't know what we were going to do with the our actually I didn't know I should say I was the one in the relationship that really struggled with a lack of mentality. Sean has always thought very abundantly. And so we really had to work that out in our relationship to make it work. But the other thing about us is not only were we passionate about chiropractic, we're passionate about helping other people. And so that's what allowed us to go on that trajectory of having our chiropractic franchise and then becoming consultants for people that are service based entrepreneurs and really growing to where we are at today. And that's how we end up sitting here before you. And so it was it was a lot of work, a lot of struggle, a lot of wrong decisions, but mostly just a desire and a tenacity to continue to reach more people and make an impact. Joe: Yeah, and it's so I understand why Sean got into it, because he saw his cousin with the three BMW, right. It made sense. What triggered you to take that path? Shawn & Lacey: You know, it's really interesting, I was actually thinking about when he was telling that story. It's funny because I've heard that story many times. But where I grew up, because because it was Silicon Valley, I was surrounded by money, surrounded by it. There was a lot of entrepreneurs. There are a lot of people in the tech world. The high school that I went to, I, I drove the Cruddas car in the whole parking lot like it was so bad that it was like of those felt ceilings. You remember Joe: Yes. Shawn & Lacey: When they had that and the glue had melted Joe: Yes, Shawn & Lacey: Off. So the Joe: The liner Shawn & Lacey: Felt Joe: The Shawn & Lacey: With Joe: Liner starts Shawn & Lacey: The liner, yeah, it would be bumping my head Joe: Right. Shawn & Lacey: And I would have to tack it up. And I think for me, I would I would boil it down to one word and it was contrast. I was able to see what those what that life could look like Joe: Mm hmm. Shawn & Lacey: In stark contrast to where I was. And so I always wanted to have the opportunity in my own life like I saw like that my that my friends had. And it wasn't that I grew up in a bad household. My parents were amazing and phenomenal. But it's just when you grow up around that, you go, how do I get that? What do I need to do? How hard do I need to work? And so I think that a lot of that came down to it for me. Joe: That's great. So, Sean, real quick, you you and I are probably close to the same age, I might even be older, but the we had parents from potentially the Depression era. Right. Or at least my mother Shawn & Lacey: Oh. Joe: Came from that. So it was always even though they were encouraging, my father was more encouraging for some reason, it was just in his DNA. My mother was like the safety thing. Like, No, you just got to get a good job, work hard, go to school, go to whatever. And every time I wanted to dip my toe in an entrepreneurial pool, she was always like, Are you sure about this? Even as I got older when I was literally being successful doing various companies that I opened. So Lacey said that her parents were very supportive. How about you and your your parents? Shawn & Lacey: You know, my parents, and it's not that her parents were not supportive, but probably my parents were more supportive of of of just sort of the idea of being an entrepreneur. However, right now, as we are speaking, my parents don't really know what we do. So I still ask all the time, what do you guys actually Joe: Hey, Shawn & Lacey: Do Joe: I Shawn & Lacey: Exactly? Joe: Can't I can't blame them, because if you look at the websites and the events that you guys are like, my head is spinning, so I get it. Shawn & Lacey: But I I also was lucky that and I just think there's about people I think if you have a conversation with somebody and you dive deep enough, superstars in life have superstar characteristics and they exhibit superstar characteristics early on, most people don't realize that they are they themselves are Joe: Yeah. Shawn & Lacey: Superstars. But if you look at people that are successful, they have sort of these sort of interesting ways that they were successful. So I suppose I excelled in academics. My mother told me as an adult that there were many times that she was like, hey, are you going to study for that test? And I was like, now? And that she she was like, it was a dilemma as a mother because she wanted me to fail so I would learn the lesson. Joe: Yeah. Shawn & Lacey: But I never did. And she's like, somehow you just kept getting through. And I got great grades and I was successful in music. And so they at least in the area of music, I when I left high school, I either wanted to be a professional soccer player or a professional musician playing the saxophone. I went to Indiana University, which has Joe: Great Shawn & Lacey: A very Joe: School, Shawn & Lacey: Good soccer Joe: Great, Shawn & Lacey: Team and a great music program, Joe: Great. Shawn & Lacey: And it took me less than a semester to figure out that I wasn't going to be able to do either one of those. And so then I had to kind of figure out. But they were always very supportive in the sense of do what you want. I think also to a contrast, I didn't have any school debt compared to Lacey's two hundred and fifty thousand. So my parents at least, you know, they were they were, though, of that mindset. Right. You know, buy a house, save money, pay for your kid's education. That was the mark of success. And I was I was the beneficiary of that. And they were also very, very supportive. I will say to I think actually I'm more like you, Joe. Yeah. Yeah, Joe: Oh, yeah. Shawn & Lacey: Actually, Joe: Ok. Shawn & Lacey: Yeah. My my father was born in nineteen twenty seven Joe: Oh, and my Shawn & Lacey: And Joe: Father Shawn & Lacey: So. Joe: Was born in nineteen twenty nine, so. Shawn & Lacey: Yeah, and so I actually grew up and my mother, my father, it was in his DNA to just to just to just love one on me and like just say you can do these things. My mother was actually the worrywart. Joe: Yeah, Shawn & Lacey: And Joe: Exactly. Shawn & Lacey: So I always say she was one of those people that could could find the worst case scenario and anything. Right. And and that and I don't know if you can relate to that, but I meet a lot of people that, yeah, I Joe: Gosh. Shawn & Lacey: Grew up that grew up with somebody. And so it would be like, OK, but if you do this, here's what could happen. Right. So it was a it was an interesting, I think, balance that the two of them played in my in my life and I was in the middle of it. And so for me, I wasn't like Sean. Like I instead I pushed back and try to do everything as independently as I could. Right. And so it was very different, I think, growing up. Joe: God, it's so nice to meet someone who had the same dichotomy of the father and the mother, and it was she was so protective and so fearful because Shawn & Lacey: Yes. Joe: She they they had an alcoholic father who left. They had just there. Shawn & Lacey: My mom, too. Joe: Yeah. They just scrounged for everything. It was just it was devastating for them when they were young. So she didn't want any of those. She didn't want me to take any chances at all. But I was the middle child. I was the one that just constantly bought the system. And she just Shawn & Lacey: Yep. Joe: My poor mother, I from God. Man, old Shawn & Lacey: I Joe: Man. Shawn & Lacey: Know I said I told my mom, too, I don't know how you how you did it with me, No. One. And then we fed into their worrying, Joe: Mm Shawn & Lacey: Right, Joe: Hmm. Shawn & Lacey: Because Joe: Yeah, Shawn & Lacey: We kept bucking back. Joe: Yeah, Shawn & Lacey: So, Joe: Yeah, well, Shawn & Lacey: You know. Joe: That's that's awesome. So, OK, so you meet and it's is it twenty eleven when you well you met before then but twenty eleven is when you kind of really started this relationship and partnership. Shawn & Lacey: Yep. Joe: Is that true Shawn & Lacey: Yeah, Joe: For Shawn & Lacey: We met in 2006, Joe: Ok. Shawn & Lacey: And then I think we started dating like end of 2010, yeah. Joe: Ok, and you had one chiropractic location out in California. Shawn & Lacey: Yes. Joe: Ok, so what is the conversation that happens that you say, OK, we can do more than this and we can open up either other offices of our own or we've created such a successful practice that we could actually duplicate this and franchise it? I don't know what came first or how, but I'm Shawn & Lacey: Let Joe: Interested Shawn & Lacey: Me give you an idea Joe: Because there's Shawn & Lacey: The Joe: Many Shawn & Lacey: Answer Joe: Business Shawn & Lacey: To Joe: Out Shawn & Lacey: That. Joe: There that, like, I have a entertainment booking agency and I have systems in place that if I got ran over by bus today, literally someone could walk in and everything goes in order Shawn & Lacey: It's Joe: And Shawn & Lacey: Great. Joe: It's all planned out and it's totally franchise able. If I ever wanted to do that, I'm probably too old to do something like that. So but how did you how did this conversation happen? Because I looked in all the locations you have in some of them, you have multiple one of the locations. You have four offices alone in it, right? Four. Shawn & Lacey: Mm hmm. Joe: So you guys really blew this up. And I'd love for the audience who has this maybe in the back of their mind. How does someone go about this conversation and then take those steps? And I know that's part of what you also do in your training. So we're going to get to all of that. But this interests Shawn & Lacey: Absolutely. Joe: Me as well. Shawn & Lacey: So I think even if someone is listening, we are two people, but anybody listening is probably had this conversation with themselves as if even if you're one person, sort of this, you know, white right shoulder, left shoulder, good angel, bad angel. However you want to configure it. I my role in that, that is that my mindset always has been one of superabundance. I'm one that is the opposite of the risk of, you know, this is all the bad things that can happen. My position is always like, yeah, but this is all the cool stuff that could happen if it went the other way. And that's sort of where my my focus goes. Lacey can share that hers is is different and how it's different. But I always thought that man, we could just figure this out and then really what that the desire was for me was to reach as many people as possible. That was one of my big lessons in Costa Rica. I remember I had four offices in Costa Rica. There's four million people in Costa Rica. And what I realized was that four million at that time. There's probably more now. But what I realized is that I wasn't even making a dent. I was like, we've got four when we were busy, like my office was seeing two hundred and fifty patient visits, patient transactions per day, Joe: Oh, my Shawn & Lacey: Five Joe: Gosh. Shawn & Lacey: And a half days a week. People were pouring in. And I'm like, and we're still not making it that we're not we're not getting close like we're not. We would need to have such an incredible infrastructure to really reach more people. And that was sort of a big transition for me. I think that people that want to scale in the sense of multiple units, franchising, etc., as you come to this realization that you're just one person, seven billion people on the planet, this podcast, the reason why we agree to come on it is because it amplifies our voice, the people that are listening to the podcast or the people that don't normally listen to us and vice versa. And so the effort is gaining leverage by being able to scale your message for me and being in the service world to reach more people. So that was always in the back of my mind. I wanted people I wanted to just reach more people. Now, then, your question. So that's the pre answer, because then your question is like, so what does the conversation look like? And that's not as easy, because if it were that easy, everybody would do it. I always say people that are in the service world that have a passion to reach a lot of people, that is the answer. Well, then why don't they do that? Because here's the scariest thing to do before he adds sort of what that transition look like is that in the service world, if we are if we really believe that we are impacting and changing people's lives fundamentally by whatever it is we do, whether you're a massage therapist or a hairstylist or whatever you do, like you feel like the person on the other side of the transaction, that their life is radically changed as a result of your doing it. Shawn & Lacey: Don't you actually have an obligation then to reach as many people as possible? And I'll add to that and scale, because this is the problem. If you were run over by a bus and you hadn't put the systems in place, then the entire thing stops with you. Even the people that you are currently serving, they just all of a sudden don't have a way to continue on. So that's always been in my mind. Now, going to lazy and saying, yeah, let's just open up a bunch of those with zero money that is not necessarily very well received. And so she can tell you. Yeah, and people ask us all the time where you guys work together, you do everything together, you live together. And so very early on, I mean, one of the reasons I fell in love with Sean is his his ability not just to be just a visionary, but his ability to be a strategic visionary, like to see so many moves ahead, because the way that I grew up, I was taught to look at the very thing in front of you. Shawn & Lacey: Right. And so it's a very different way of going about and doing business. Not to say that I'm not a risk taker, but I just do it differently. And so we were very lucky because people saw the model that Sean had created with that original office and fell in love with it. It was all cash, no insurance, a very specific type of technique that we do. And they said, I, I want in on that. I want you to teach me how to do that. But here's the problem. He was still working in the office seeing patients with me. And it doesn't matter if you're in a relationship with somebody working together or you're in a partnership with somebody working together. What we learned very quickly is that we were doing the work of one person as two people, super inefficient. And so he's like, we need to we need a scale. We need to grow. But I'm being selfish. And I wanted him to stay and work in the office with me. And so I had a life coach. She was Russian. So she was very straightforward. Joe: Yes. Shawn & Lacey: She and she said she she didn't have a filter. And she literally said to me one day, she said. I want you to know that what I'm feeling is that you're holding Sean back from being able to do the thing that he's good at. It's like so crazy. Why Joe: Not Shawn & Lacey: Would you say Joe: Me, Shawn & Lacey: Something Joe: Be Shawn & Lacey: Like that? Joe: Right. Shawn & Lacey: Come on. And luckily, I don't I'm not an individual takes things personally. And so I went home to Sean and I said, you know, Cachalia, my life coach, she said this crazy thing to me. She said, I'm holding you back. And he looked me dead in the face. And he said, You are. And so the very next day, that's when he started doing his thing. And he never came in the office again. And because I'm an executer and I'm really good at that and I'm great at systems and infrastructure, that's my superpower. And I recognize that. And I recognize that he's a strategic visionary by having that separation and allowing us to do what we were strongest at, I think, was the catapult to allow us to scale that business specifically. Joe: And that is such an important thing that you just said, and I think it's the biggest problem with partnerships and like you said, even though you're married and you're also partners in a business, I think I learned this from a couple of restaurant owners that I'm friends with that are no longer in the business together. But just because one of them retired was that they had very strategic like a line in the sand. And this is your side of the room and this is my side of the room. And one of them was all front of house and the other one was all the back and part of it. And it was they never crossed those lines. And I think that's important to maybe like you said, you make a list of your superpowers and you say, OK, here's all the things I'm good at. I'm going to take all of that on my shoulders as part of the business. And do you agree or disagree? These are all the things that you're really good at. You take all those. I think that's a recipe for success. And it's so important that you said that. I think that's missed a lot. Everyone they Shawn & Lacey: It Joe: All Shawn & Lacey: Is. Joe: It's just like this is a big pot of soup and everybody wants to stir and you Shawn & Lacey: Yeah, Joe: Can. Shawn & Lacey: Yeah, let me get some Joe: Yeah, Shawn & Lacey: Of that you don't know what you're getting, Joe: Yeah, Shawn & Lacey: Right, Joe: Yeah. Shawn & Lacey: And I'll tell you, Joe, the other thing that we did when we learned that lesson is we translated that into our are the personal side of our life. And so we created very clear lines and roles and things that we do in our household as well, because that that we want that to be just as successful as our businesses. So it's never a question of who's doing the laundry or the dishes or responsible for shopping or paying the bills. It's never like, did you do that? Why didn't you do that? We know who does what. And that helps actually in that personal side of things as well. And it was just a great lesson to adopt on both ends. Joe: See, I knew I loved you guys. This Shawn & Lacey: Gus. Joe: Is good looking power couple, just I mean, Joel and my life partner were the exact same way. We've been together for twenty two years. We we do Shawn & Lacey: All that. Joe: Stuff together and we just it's just a perfect situation. But it takes like anything. All the little stumbles along the way. But you figure it out. But it's I love that. That's awesome. And I bet you're the only person who has the run of the house is Dexter. Shawn & Lacey: Oh, Joe: You're Shawn & Lacey: My gosh, Joe: Right. Dexter Shawn & Lacey: Yes. Joe: Gets away with anything. Dexter is your Shawn & Lacey: Well, Joe: Right. Shawn & Lacey: How could you tell he's here, somebody somewhere Joe: There is. Shawn & Lacey: He was scratching at the door and I just had to tell texting our team, get the dog. Somebody needs to get the dog. Joe: That's Shawn & Lacey: Yes. Yes, he has the run of the house. I'm sure you could tell. Joe: Right. That's awesome. OK, so what's the time frame when you opened up the second office or you started the franchise, however that happened. Shawn & Lacey: I'm just going to clarify for you some of these questions, my sense of time, that is my weakness. So if if Laci said it was three years after or said it was three months after, I would agree with either answer. So I'm going to have to if you ask me, how long have you known Laci? I Joe: I Shawn & Lacey: Don't know. Joe: Am exactly the same way. When did you meet, like where? I don't remember. Sorry. Shawn & Lacey: Do you want to know how bad is actually at time that he he thought it was the most brilliant idea and somehow he talked me into it for us to get married on my birthday, which also happens to be New Year's Eve. So he will never forget the dates on any of those. Joe: That's Shawn & Lacey: Talk Joe: Not Shawn & Lacey: About a smart businessman. Joe: True and that's not fair. She gets ripped off on two other holidays. Shawn & Lacey: No, that's false, and it's the world's biggest party on her birthday Joe: Oh, Shawn & Lacey: And Joe: My Shawn & Lacey: On Joe: God. Shawn & Lacey: Our anniversary, it's the best. So Joe: Oh, God. Shawn & Lacey: So two thousand nine is when people started coming and saying, I want to get in on this model. Joe: And Shawn & Lacey: And Joe: I'm Shawn & Lacey: We had. Joe: Sorry and I hate to interrupt you, but when you say Shawn & Lacey: Yeah. Joe: People because you brought this up a couple of times Shawn & Lacey: Oh, Joe: Now, Shawn & Lacey: Yeah. Joe: I don't understand who those people would be. They wouldn't necessarily be patients. They would be people that are in the chiropractic industry. And they look at you as being, wow, you guys are killing and how do I do that? Shawn & Lacey: Yeah, and I should probably I think for context, I don't know if you said it in your in your intro, your story, but when Sean came back from Costa Rica, because literally he was starting over, the first thing he did was take a job at the chiropractic college. I don't know if we had mentioned Joe: No. Shawn & Lacey: That before. Joe: Ok, perfect. Shawn & Lacey: And so he was at the chiropractic school and he was teaching chiropractic philosophy. And then he was teaching like the one real business class that they had at the school. And so that gave him exposure to a lot of other chiropractic students, people that were graduating to see and understand the way that he viewed business and what we were trying to do with the specific chiropractic centers. So those are the individuals that said, I want to be part of this. I see the vision. I see where you're going. I love the model. And early on, we actually had it created as a licensing model. But that just gets a little bit sticky for anybody out there that's trying to scale in a licensing model. You really have to have ownership, I guess, and all of them. But a true franchise, it takes time, money, energy and a lot of good advice to to create, especially in health care. So we had about six offices that were under the licensing model and we went moved into a legitimate franchise and then grew from there in two thousand and sixteen. Joe: Ok, and so how many do you have now? Shawn & Lacey: 13. Joe: Wow, that's incredible. Shawn & Lacey: And they span from we have to in Hawaii and then they go all the way to Tennessee. So far, this Joe: That's Shawn & Lacey: One. Joe: Incredible. Shawn & Lacey: No. Joe: Yeah, you guys are killing it. I love this story, and that's why I said I was so excited to have you on and I was like, I'm going to need hours to interview these two. There's just like so many things. OK, so the most important thing, not the most important thing, but one thing I want to touch upon, because there's I'm sure the people that are listening to this and eventually watching the YouTube version of this are going to say, how do I learn more? That is not going to get covered in the short time that we have together. So you put out a book called None of Your Business in twenty nineteen. And it's a winning approach to turn service providers into entrepreneurs. And I love that because even when I listen to a little bit of your interview with Steve Sims, it Shawn & Lacey: You. Joe: Was it was like it's more than just providing a service. You are it's not transactional, right? It's more of like you're doing something you're passionate about. And the ultimate thing at the end is that, you know, you've helped somebody. It's Shawn & Lacey: Mm Joe: That Shawn & Lacey: Hmm. Joe: To me, that's what it is for me for sure. With everything that I do, it's like, how can I help did this? How can I help you, you know, those sort of things. So I feel like that's the approach that that I get from the both of you and what your book is about. So can you talk a little bit about the book? Shawn & Lacey: Yeah, the book definitely has more in depth, our story, plus the fundamentals that we teach from from marketing sales mindset, and we've had to do a ton of work together as a couple on mindset mindset. You can have all of the right instruction and do all of the right things, but your mindset could blow that. And part of that is exactly what you are talking about. Sometimes service providers shoot themselves in the foot because they want to help a lot of people. And that becomes overwhelming to the point that that desire to serve destroys the business. And so you have a business hand and a service hand. Basically, these two hands are coexisting, but they really can't meet because they they they are they are the antithesis to the business hands. Like, we have to make money. The service hands, like, well, we should just give it away for free. And so how do you reconcile that and be successful? And ultimately, you know, it all circles back to if you really do have this wonderful service that can change the world, the fuel that makes it go as a successful business in all businesses, every single business in the world, the sole reason for their existence is to make a profit, because if there is no profit in the business can exist and then people can't be serviced, can't be helped, can't be changed, can't be impacted. And so service providers really have a hard time with that. And so Joe: Oh, Shawn & Lacey: That's why Joe: Yeah. Shawn & Lacey: The book. Right. And fundamentally, before we wrote the book, the premise was, is that the world's greatest service providers in the world live in relative obscurity. We don't know, you know, and I'm not knocking him. I've had the opportunity to meet him. He's a phenomenal guy. But the world doesn't know what kind of doctor Dr. Oz is Joe: The. Shawn & Lacey: And whether he's good. But he's on TV and that makes him, in our eyes, have a degree of reverence for him or belief and credibility in him. But there are people that are phenomenal musicians and artists, practitioners, hairstyles and everything, but nobody knows who they are because they refuse to embrace the business concepts that would bring their message to more people. And so that's why we wrote the book. Joe: And you hit on another thing that even at my age, it took me forever to not feel like making money was this dirty thing. Right. And our mutual friend, David Meltzer, he talks about it in such great ways that he expresses how you've got to help yourself so you can then help others. Right. You have to make sure that you and then your family and it's just changing. That whole dynamic of making money is not an awful thing and not a dirty thing. And just it I don't know. It's it's such a it was such a struggle for so long. I just I felt like, yeah. Let's just give it away. Like, I'll do this for pennies. I just want you to be happy and I can't it's not sustainable. Shawn & Lacey: Yeah, you can't give what you don't have. Joe: Yeah. Shawn & Lacey: I mean, and that's a lesson that we've learned many times over. I mean, you can't you can't serve out of abundance if you don't have abundance. I mean, it's very difficult. And that's the best way to reach a lot of people and make a bigger impact as to be is to be financially stable or financially full because it allows you to go out there and do the things that you need to do in order to reach them. And so that's what we that's our passion is to help service entrepreneurs to really fall in love with that idea so that they can not only touch the people and help the people that they're trying to serve, but that so they can get out of it the life that they desire to Joe: Yeah, Shawn & Lacey: Write because Joe: Yeah, Shawn & Lacey: They deserve it. Joe: Yeah, Shawn & Lacey: So, Joe: Yeah, and Shawn & Lacey: Yeah. Joe: Yeah, that's it, they deserve it, it's people Shawn & Lacey: Yeah. Joe: Don't think they deserve to have this success and Shawn & Lacey: Right. Joe: Whether it's business or financial or family or whatever it might be, it's it's amazing. The specific dotcom is all about the chiropractic offices and all of this is the franchise piece of that. Is that Shawn & Lacey: The Joe: Correct? OK, great. Shawn & Lacey: Correct. Joe: So we've already talked about that. So then we have this is where it gets complicated. And this might just be because you had certain websites before the websites and then you kept so you have you have one in together, right. So you have Sean and Lacy Dotcom and Shawn & Lacey: Yeah. Joe: Then you have Sean del Dotcom. And then on top Shawn & Lacey: There's Joe: Of Shawn & Lacey: Also Joe: That. Shawn & Lacey: Makes it look like we need to Joe: Oh Shawn & Lacey: Clean all Joe: Yes. Shawn & Lacey: These up, no. Joe: So it's just so and at the end I'm going to do this and all the show notes and everybody will know where to find you everywhere. So it won't matter. But so is it important to talk about Sean and Lacey Dotcom and Sean Del Dotcom at this point, or is it better to talk about the Black Diamond Club dotcom? Shawn & Lacey: Like Diamond Club Dotcom. Joe: I mean, we could talk about it all, I just don't I Shawn & Lacey: Yeah, no. Joe: We only have a little bit more time, but I want to make sure we get through everything and I want to also make sure that we promote the August event coming up in Carmel, Indiana. So let's talk about Black Diamond Club, because that'll segway into what you're Shawn & Lacey: Hmm. Joe: Doing with that organization, the events that you have and all of that. Shawn & Lacey: Yes, a black diamond club is the place where service entrepreneurs go to receive instruction or marketing sales mindset. But I think more importantly, support and accountability. Six hundred and twenty plus service providers that are all there sharing best practices. One of the things that people always talk about that the fast food drive thru concept is not a restaurant concept. It's a banking concept. Banks really don't. Few banks have that little tube thing that goes back and forth. But they were the ones that introduced this banking from your car, the restaurant industry. It was a swipe and deploy like that's genius. Can we put it in our and McDonald's and then they don't have to get out of their car and come in. And I always say, like, think about how much you could learn if you weren't just surrounded by people in your industry like you. You found out what other industries were doing well. And then you actually thought about how can you apply that into your industry? And that's really what Black Diamond Club is about, is looking at what's working in the world. You know, e commerce. We don't sell things. Shawn & Lacey: We sell a service. But still, you know, people in e commerce, they really get social media, advertising, Legian, they get email, follow ups, they understand retention. So if you are looking at how can I improve that, maybe it would be worthwhile looking at things that they were doing. And that's what Black Diamond Club really, really is all about. It's a great place. Never will you be talked down to, never will you be looked down upon. But also, I think really important. It's a place where you can come and also say, hey, guys, I had my biggest month. I collected two hundred and fifty thousand dollars in revenue this month and everybody will celebrate you as well. That's part of that, too, is we don't know when you're saying, like, the mindset around money. Oftentimes we're afraid to tell people how well we're doing because we don't want to be shot down, especially by someone that we hold in high regard or that is close to us. So we've tried to create a community where we can foster that high energy and help service professionals to to go out and reach more people. Joe: Ok, so you have the specific and you have this chiropractic franchise and you're building this amazing business. When do you decide that? Wait a second. This is something that is goes well beyond chiropractic and chiropractic offices. You are building a model of success. So all of a sudden, one night you're sitting down at dinner and a glass of wine and you go, hey, wait a second. We're once again, we need to expand our mind and say, this is this is too narrow. Obviously, we're helping all of these chiropractors build successful businesses and being part of our franchise. But we can actually take this a step further. We can create a black diamond club that actually works with all forms of entrepreneurs. So is that sort of how this came about? Shawn & Lacey: Well, I wish it was that easy or simple, but I like the glass, I Joe: See how I put Shawn & Lacey: Use that Joe: I Shawn & Lacey: Now. Joe: Put Shawn & Lacey: Why Joe: All Shawn & Lacey: Didn't Joe: Those Shawn & Lacey: We Joe: Words Shawn & Lacey: Have wine? Joe: In? Shawn & Lacey: I think I think first and foremost, from very early on, like all of the business principles that Sean taught were not, you know, from the old ways of chiropractic thinking, it wasn't from our profession and from our industry. In fact, very early on in our relationship, when we were still struggling financially, he wanted to hire a business coach and he had been teaching out of Michael Sportsbook yourself solid book for many years to all of the chiropractic students in learning how to build community and really attract their ideal client. And so he came to me one time and again in my mentality, I was like, there's no way we're ever going to be able to afford that. We can't we can't handle that. And he said we'll figure it out. The money will come. And we figured it out. And Shawn was able to become a book yourself, solid certified coach. And that was kind of the first movement in going, man, this stuff that's outside of our profession, in our industry translates really well into what we do. But, hey, business concepts are business concepts and they actually translate into any profession. So we always had those thoughts. But really the story goes that there was another individual, another group in chiropractic that was very negative, that based on people that talked down to people that didn't support their individuals that were in the group. And one day Shawn was just like, we're just going to create the exact opposite of that, the exact opposite of that. And that's what we did. And that's how Black Diamond Club in a nutshell, got started. And we want it to be everything. That group was not so that people could have a place to go, where they could grow, reach more people, be supported and not be ashamed. Joe: That's great. When did you start, like nine o'clock? Shawn & Lacey: Twenty sixteen. Joe: Wow, so you're Shawn & Lacey: Hmm. Joe: Already busy and you just said, let's the heck with it, let's tax something else on the plate. Shawn & Lacey: It was a need and, you know, if you listen to the people, they'll tell you what they need Joe: Yeah. Shawn & Lacey: And if you have the skill set to fill that gap, then you should. And that's what we did. Joe: Perfect. How about tell us about the summercamp twenty twenty one that's coming up on the 13th and 14th of August in Carmel, Indiana. Shawn & Lacey: Well, this is edition number five of Summercamp, it was started by our good friend Tristan Qof. He had created this event separate from us that had nothing to do with us. And he wanted to create an event that brought together chiropractor's and expose them to entrepreneurs, which really fits our brand. But that was an idea that he had birthed. The very first edition was held in Las Vegas and the keynote speaker was Grant Kardon. And a Joe: Well. Shawn & Lacey: Lot of people were like, oh, wow, how did you get greencard on? The second edition had a stellar lineup. Brian Tracy was one of the keynotes, had multiple keynotes. Tom, Billu was there. I mean, it was it was an all star lineup. It was starting to grow. And Tristin at that point was a one man show. And so we saw his his his struggles in trying to run around and put on events of that caliber. And we were like, hey, Lacey really gets scale and process and organization and we could really help you. And so he was like, look, why don't you just acquire me? So we acquired the company and we kept Tristant on. And then we did audition number three in Miami with DJ Abraham. Roger Stone spoke Joe: Resum, Shawn & Lacey: At that one. Also, Roger Love, Joe: Yeah. Shawn & Lacey: Audition number four last year, right in the middle of the pandemic in person, we had Jordan Belfort and Eric Thomas headline. And then this year we're celebrating our fifth year. Carmel, Indiana's just north of Indianapolis, just just north of Indianapolis. We have David Meltzer. We have Patrick. But David, who's all over the news right now with this Trump and Obama debate, we have Steve Simms's speaking, Chris Winfield, Jen Gottlieb, John, ruling from Gift. This the super Joe: Well. Shawn & Lacey: Pac lineup. It is all about helping service providers. These are these are speakers that normally you would hear at an entrepreneurial Joe: Mm hmm. Shawn & Lacey: Conference. But it's it's helping expose service providers to these concepts and helping them understand how to apply them in their business so that they can reach even more people. Joe: That's incredible. I have no idea what the cost of this thing is, but just the fact that David Meltzer is there. Shawn & Lacey: I Joe: I Shawn & Lacey: Had. Joe: Had the opportunity to spend a full day with him in his office in California. Joellen and I went out and literally shadowed him from nine o'clock in the morning. And then later on, we had drinks that night and met his wife. And it was just the most incredible thing. And that the positivity that comes from him and Shawn & Lacey: Yes. Joe: It's just amazing. So that alone is I don't even know what what it cost, but that alone is worth the price of admission, just that alone. Shawn & Lacey: Well, I'm going to throw in there I don't I don't even have a link to this, but one of the things that we'll be putting out here in the back half of the year, so if people plug in with Laci and and social media, we are we are collaborating with David and we are putting on a two two day, three night mastermind on a private island in the Caribbean in December. So it'll be myself and Laci and David Meltzer trapped on a private island. So that's great. You'll have us locked there to be able to help you to ask any questions. I mean, probably Laci mostly just being having cocktails. I'm sure David will be happy for everybody's going to want so when he's there. But that's something we're super excited about, being able to collaborate with him. And he's just like you said, and one day imagine two days Joe: It's. Shawn & Lacey: And imagine, you know, your dinner is together. Yeah. You're doing everything together. So we're super excited about that. And we'll have information out about that very soon. Joe: That's cool, because we Joellen and I like to go away during the summer because we don't really have family here in Shawn & Lacey: Oh. Joe: Phoenix, Arizona, so, hey, Shawn & Lacey: Yeah. Joe: Maybe you'll get stuck with us for that trip. Shawn & Lacey: I would love Joe: All Shawn & Lacey: That Joe: Right, Shawn & Lacey: Would not Joe: Cool. Shawn & Lacey: Be a bad thing. Joe: No, not to be awesome. Yeah, I'm sorry. I actually missed you guys. You were here in Phoenix in March, right? Shawn & Lacey: Yep. Joe: You ran an event here. So you. Shawn & Lacey: That was our first time in Phoenix in a long time. Joe: Oh, Shawn & Lacey: Yeah, Joe: Yeah. Shawn & Lacey: We do we do three events a year. We do one on marketing, one on sales, and then one around money mindset. And we typically like to kind of move them throughout the country because we've got clients Joe: Sure. Shawn & Lacey: From coast to coast. So Phoenix, that's where we were doing our Money Mindset workshop. Joe: Now, let's Shawn & Lacey: And Joe: Call. Shawn & Lacey: We shout out to Phoenix, you guys really had it together. It wasn't super restrictive. We have been very pro keeping our events going during this time. And Phoenix was very cooperative. We had a really good time there. So Joe: Yeah, Shawn & Lacey: It really sounds like a great place to be. Joe: It is, but we they get in trouble because there they are a little overzealous when the data is said, take your mask off. And I went to the Shawn & Lacey: Well. Joe: Gym and I got a lifetime, literally. I walked in. Not one person that I'm Shawn & Lacey: Yes. Joe: Like, there's there's no on ramp, folks. What's going on? It was ridiculous. I was like, you're telling Shawn & Lacey: That's Joe: Me, Shawn & Lacey: Funny. Joe: Oh, is there anything else that I missed? What's the best place to get in touch with the both of you or the specific or Black Diamond Club? And again, I'll put it all in the show notes. But do either of you like people to reach out on Instagram, any of that stuff? What works for you? Shawn & Lacey: Social media is great, you can reach me and Sean Black Diamond Club dot com, that's my email. Yeah, basically we try to be here's one thing that I've learned is that as I've been around more successful people. You mentioned Joe: David Shawn & Lacey: David Meltzer. Joe: Is. Shawn & Lacey: I specifically asked him, I was like, you're giving your personal email out all the time, all over the place, national television. You don't care. How does that work? And I just found, like, super successful people are hyper responsive. That's why they're that's why they're successful. And so this is me getting over that. I'm giving my personal email shonen at Black Diamond Club dot com. Yeah. Hit me up. And if there's any way that I can provide value to your life, I will be more than happy to do that. I'm usually I usually like maybe once or twice a year, send out an email to just saying, you know, tell me what I can do for you if I can do it within reason and on this day I will comply. So likewise, if it's an within reason and I can get it done quickly, I can't take on a project, but if I can get it done quickly, make the ask, I'd be happy to help. And we're on all the social media platforms. Sean Delisi book. I bet you could guess my email address. COVID-19 Club dot com super easy. And if you want any more information, Black Diamond Club dot com is the best place to find about all the things we're doing. Joe: That's perfect. One question I didn't ask during the book conversation was I know authors when they write a book, they say it's a struggle like it's a hard thing to do. It's not as easy as people think. How how easy was it or hard with two of you writing the same book and and how did you figure out who's writing what? Or did you just sit down together? It's just something that came to my brain that I wanted to ask that question. Shawn & Lacey: I'm going to shameless plug, and if I can help you, although you're very well established, you don't need my help. Tucker Max from Scribe, Joe: Oh, yeah, I know, yeah. Shawn & Lacey: That's all. So that's how we do. The book is a chain of the chain of command on this was Abraham sat us down in his office and said, you need to write a book. And I was like, I was like, no, it sounds like a terrible idea. And he was like, well, there's a lot of ways to write a book. We were introduced to Tucker by Tristan Sharp, who I mentioned earlier. We hit it off. Tucker was like, let's just get this book done in the process with Scribe is painless. I mean, they really do have it down. People that read that book after knowing me, they say it's kind of you get to pick, but the book is written in my voice. And so people are like, yeah, I can hear you. It's we don't have an audio book. If we did, I would probably be the one that reads the book. But super simple. We just collaborate on our ideas. You meet with the scribe people, they get the thoughts out of your collector right out, Joe: Yeah. Shawn & Lacey: Put it on the paper and write it. I highly recommend if you have a book in, you use Scribe. Yeah, well worth the money because you'll just it just amplifies your voice again. Joe: Yeah, that's great. It's so funny, I know Tucker's program, and I actually I think I started doing it and I was like, do I really have a book? I mean, so who Shawn & Lacey: You Joe: Knows? Shawn & Lacey: Do you do an. Joe: Is there anything else that I missed that you wanted to speak about before I let you go? Shawn & Lacey: Not me, I think you did a great job, Harry. A lot Joe: All right, well, cool. Shawn & Lacey: A lot of real estate. Joe: I was it's you you are both very busy, so I was very nervous. I got so many things I want to ask and we'll probably have to do this again because there's there's Shawn & Lacey: Oh. Joe: There's more. But thank you. Thank you both so much. I really appreciate you being on the podcast. I want that event in August to have a bunch of my listeners hopefully show up. So thank you again. I really appreciate it. And I wish you both all the success in the world. Shawn & Lacey: Thank you. Thank you for having us. If your listeners show up, we promise that we will make them feel right at home. Joe: Perfect. Thank you so much.  

The Joe Costello Show
Decluttering Tips For Hoarders with Tracy McCubbin

The Joe Costello Show

Play Episode Listen Later Jul 29, 2021 66:42


Decluttering Tips For Hoarders with Tracy McCubbin was my guest recently on my podcast, "The Joe Costello Show". She is a decluttering expert and she shared how she got started, what her business does and some tidbits that can really help you get started. Tracy's company has so many service to help people declutter their home, office, home office, etc. She also has other services such as closet audits, garage organization, moving services, senior downsizing, estate decluttering. Please go to https://dclutterfly.com/ and check out how she might be able to help. Tracy has also written a book called "Making Space, Clutter Free: The Last Book on Decluttering You'll Ever Need" which you can buy at Amazon or support this cool book website called BookShop.org. Here's the link to the book: Making Space, Clutter Free: The Last Book on Decluttering You'll Ever Need  Also check out OneKidOneWorld which Tracy plays an important role in as the Co-Executive Director     Thanks for listening! Joe Tracy McCubbin CEO & Owner of dClutterfly Website: https://dClutterfly.com Instagram: https://www.instagram.com/dclutterfly Instagram: https://www.instagram.com/tracy_mccubbin Facebook: https://www.facebook.com/thisistracymccubbin Private FB Group: https://www.facebook.com/groups/2036212949941199 LinkedIn: https://www.linkedin.com/in/tracy-mccubbin-566829b2/ One Kid One World: https://www.onekidoneworld.org/ Email: info@dClutterfly.com Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.libsyn.com Subscribe, Rate & Review: I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to: https://joecostelloglobal.lybsyn.com Follow Joe: https://linktr.ee/joecostello Transcript Joe: Tracy, welcome. I'm glad to have you on the podcast. I've been waiting to have you because clutter is is just the worst thing in the world. So I'm excited to talk to you. So welcome to the show. Tracy: Thanks, Joe. I'm super excited to be here, and it's always interesting to meet people sort of who have different expertise and different focuses like everybody have in common everybody. Joe: Yup, Tracy: So Joe: Yup. Tracy: It it's just I love talking to different people about kind of how they can manage their clutter, get ahead of their clutter and live their best life. Joe: Well, I'm excited and I, I follow a pretty strict format in the sense that I really like to know the person and I think my audience likes to know the person. And I think that's how they connect with you. I just don't want the end of this podcast to come and say other this really great woman that was on who understands how to do clutter. I want to know how you got into this and more about you. So can you kind of give us the background leading up to when you started to clarify? Tracy: Yeah, it's a very interesting subject, I like to say that I'm one of those people who all I had a bunch of jobs that turned out to not be my passion, but everything I did along the way brought me here. So I was a personal assistant for a very long time to two different people. I was a bookkeeper for small businesses. I was an administrative assistant to lawyers. I had all these various I took care of my grandmother, helped her manage her finances. So I had all these various kind of office centric jobs. And then when I was working for one of the people I was a personal assistant for, he was a television director. So when he had downtime, friends of his or he for, say, the friends of his oh, my assistant, she can handle anything. So I started helping other people. Somebody's grandmother had passed away and they need to clean up the house. They had a big accounting mess and all of a sudden people started to tell other people and I would get phone calls. And at first I wasn't charging. And then I was charging a little bit. And a friend of mine said, I think you have a business. And I was like, no, I'm just helping people. This is. And he's like, no, that's what a business is. And so I I'm like, all right, let me just see. And I made a little website and I put the word out. And that's fourteen years later at eight employees later and thousands of jobs and everything I did in the past, from acting in commercials to doing bookkeeping to taking care of my grandmother, it all led me to creating this business. And then the big piece of the puzzle, which I didn't even realize when I first started the business and I had to have a client of mine point out I'm the child of a hoarder. Tracy: So my dad is an extreme hoarder. And I have lived my whole life watching him struggle with his relationship to his stuff. So very acutely aware of our relationship to stuff is emotional and but I'm not kidding. It was like ten years into my business when this client of mine, who is a psychiatrist was like, that's so interesting. Have you ever thought of the connection? I was like, what? No, what do you mean? And then you're like, oh. So watching what my father went through and still continues to go through gave me so much empathy to people's struggle and how for so many people there's all this shame around it. I'm messy and I'm disorganized. I'm a bad housekeeper. And my goal and what I realized through clients of my dad is that that's not the case, that there is this emotional attachment. And if you're not aware of that emotional attachment, you're going to keep repeating the same mistake. So it's getting to the root of why you're hanging on to all the stuff and changing your relationship so you can have the home you want to live. So I'm a I'm late to this business. I opened this business in my forties, so I'm also a really good poster child for like if you have something you want to do, don't get stuck in the age. Don't think like I and get this done. My success is all coming my fifty. So I'm um like if you have a passion follow. It doesn't matter where you are in your life. Joe: Yes, and that's what's great, because my audience, at least what I think is my audience is really entrepreneurs like that's most of what I like, because that's where I come from. My heart is in that. So I like that. You said all of what you just said. I encourage people out there that have an idea that having made the commitment to go forward with it. So that was awesome. And I read the part about I didn't know what family, what person it was in your family, but I read that you had a family member who was a hoarder. So I'm glad you brought that up. But I wanted to know, like, what your trajectory was when you started. Like, did you what Tracy: Oh, Joe: Did you want Tracy: This is Joe: To do? Like. Tracy: Oh, this is this is even better if you if this is your conversation, I call myself an accidental entrepreneur, right. That I, I just I had no idea what I was doing. I was like, oh, let me just start a business. That'll be fine. Oh, let me just charge X an hour. Like I just made up some number which was clearly too low. And then I think about a year into my business, I read a book called The MF. That Joe: Yeah, Tracy: Right. Am Joe: Oh, Tracy: I getting Joe: Yeah, Tracy: The name of that. Joe: Yeah, Tracy: Yeah. Joe: It's a great Tracy: And Joe: Book. Tracy: I and I did the math and I was like, wow, I'm working for four dollars an hour. When I when I realized how much time I was putting in and what I was charging and another like I like when I say I had no business, I'd always work for other people, I'd always put things together. But I didn't I didn't go in with this. I didn't have a business plan. And I learned so much along the way. And every misstep was a giant step forward. And the biggest change for me, too, was when somebody said to me, you know, you're not charging for your time, you're charging for your expertise. Joe: Mm hmm. Tracy: And that just switched anything because I had a lifetime of dealing with someone and their staffs. And that just turned the light bulb on like, oh, right. It doesn't matter that this business has only been open for a year. I have 40 some years of doing this. And when I thought that and then I started to read more and realize and I hired a business coach and I started to really shift things around, that's when the business took off. That's when I was like, oh, stepped into the role of being an entrepreneur. And then I started to hire employees. And then I became a boss. Right. Which is a whole other thing. Joe: Yes, Tracy: And how Joe: It Tracy: Do Joe: Is. Tracy: You take care? How do you take care of your employees and how do you serve your clients and how do you not work twenty four hours a day. And so I love being an entrepreneur, but it was it wasn't an easy journey. It's not like, oh, just open your own business. I would do it no other way. And Joe: Mm Tracy: I Joe: Hmm. Tracy: Had to stay really clear about because I fall a bit into the imposter syndrome, like who am I to open a business and who am I to do this? And if they want to know you've worked for work since I was 13. I've had job like I know how to do it. So I had to take all my past experiences and filter them in and realize that even though the path didn't look like a linear line, I didn't get an MBA, I didn't get venture capital. I didn't I have just as much experience, maybe more. So I always tell people, you know, in some ways you're not reinventing the wheel. A lot of people have done this. So gather information, listen to podcasts, read books. I'm a business coach if you need it. Like you can do it. If you have a great idea that know what it's done, you follow it through, follow it through. So Joe: So. Tracy: I feel I feel really I love it. I love running my own business. I love it. It's hard. Joe: Yes, Tracy: It's Joe: It is, Tracy: Hard, Joe: Yeah. Tracy: You know. And some days I really I, I, I just got a text from a client. We helped them with this fundraiser that they were doing and it was a very emotional cause. And my team went and we kind of helped them organize all their stuff for it. And it was just a very grateful text. And when I get those texts, it's like, oh yeah, this is why we do this. This Joe: Yeah. Tracy: Is why we do this. So, yeah, I have a very funny like I it was not a straight line, but all roads have led me here. Joe: So I'm going to just that's where you have to bear with me for a moment, because I want to know more about Tracy, so I want to Tracy: Ok. Joe: Know, like, where you and the kid like like what Tracy: Yeah, Joe: Did you do? Like Tracy: That's Joe: Like Tracy: The Joe: So Tracy: Idea. Joe: I want you to go back a little further. So, Tracy: Ok, Joe: Like, Tracy: Yes, Joe: Go back Tracy: Absolutely. Joe: As far as you want. But I just want to know I want I think it's important because where I am today, everything. And you are saying all the right things for all of the listeners that will listen to this is that everything that you've done in the past just adds to who you've become now? Right. And it'll continue that way. And so many people lose sight of that. And at one point I did I was like, oh, I wasted so much time. And then I look back and I go, wait, that helped. And that helped. And that helped. And I learned a lesson there. And so what did you like? What was what did you want to do? Tracy: Yeah, you know, it's funny, I I was a neat child, I wasn't crazy, crazy, crazy organized, but I had a pretty between my dad being a hoarder and my parents getting divorced. I had a pretty California in the 70s. Like I had a kind of chaotic childhood. There was everywhere. Parenting was being reinvented. School was being we lived in a van for a year, traveled through Joe: If. Tracy: Europe. So I definitely like to make order out of chaos. I definitely like to know, OK, this is my space and I can live in it this way. And I also grew up very close to both of my grandmothers and my grandfather, but they came from the Midwest and Fresno and we're farm farmers. They came from and one of my grandmothers was an immigrant from Scotland and they all lived through the Depression. So my generational experience, the sort of generational trauma of living through the Depression, living through World War Two, you saved every yogurt container. You saved Joe: Mm hmm. Tracy: Every rubberband, learning how my ground both my grandmothers were. You don't put it down, you put it away and you fix. And I learned how to sew and I learned how to change it. I can change the oil in my car and I can change a tire. And I had all these really practical things. And also for me, I think one of the big lessons that really served me in opening my own business when I started working, I started babysitting when I was 12, 13, and I started making my own money and I was like, oh, I can buy that blue, shiny satin hang tan jacket that I really want. No one can tell me, like I learned, especially as a young woman, that money equated freedom. Right. That this money that I made also could make mistakes with it, rack up some credit card debt, like I could do that. But if I work and money comes and I have power over this and my grandmother and I, we bought some stocks and she kind of helped me figure that out. And so it was a really that was one of those life lessons that they don't teach you in school, that this is making my own money. I want to take a trip, then I can do it. And that was and I'm a worker bee hardwired that way. I like to work. So I think it was I think a lot of my childhood was trying to make order out of chaos and having control and having power, you know, and I was very blessed. Like I got to I went to UC Santa Barbara. I went to a great college. I had a lot of opportunities. My family was very pro education. So I traveled the world. So again, it's all these things that at the time like, I don't know, I'm going to live in Italy for a year to study art. The smartest thing. Yeah, it turns out it was Joe: Oh, that's awesome. Tracy: You Joe: When Tracy: Know, Joe: Was Tracy: Turns Joe: That? Tracy: Out I did that my junior year of college, Joe: Wow, Tracy: So. Joe: That was that's awesome. And Tracy: Yeah. Joe: Was there Tracy: So. Joe: Were you was there something that you were wanting to become like? Did you aspire to be or Tracy: You know, Joe: Was? Tracy: Yeah, it was funny, I never I for a while, I thought I wanted to be an actress, and so I took acting classes and I did that. I had to moderate, moderate success, but I didn't like the business side of it. And then I was so for me, it was a lot of figuring out what I didn't want to do. Joe: Uh huh. Tracy: Like I was like, oh, you know, and because I'm a hard worker and I'm industrious, kind of whatever job I had before, like, we'll promote you to manager, we'll make it up. And it was a very much a series of like, oh, I don't want to do this. I don't want to spend the day doing this. And when this business started, it was the first thing that I was like, I want to do this every day, like the rhythm of it, the helping the clients, the feeling of satisfaction when it was done. It was the first I mean, I liked other things that I did, but Joe: Mm Tracy: It Joe: Hmm. Tracy: Wasn't I was like, oh, I want to do this all day, every day. Like, I you know, technically the joke is I would do it for free. Well, there was like a year I did do it for free. It's literally like that is a brutal I'll tell anybody, the entrepreneurs, people starting a business, track your hours, track what you're getting paid, do that math because it'll gut punch you and it'll make you rethink everything. Like Joe: Goup. Tracy: When you realize, oh, I'm working for four dollars an hour. No, no, no, no, no. That's an important lesson for everybody and it makes you really rethink things. So it really wasn't until this until this business started that I realized my purpose. Joe: Right, and if I remember reading correctly, it came out of you being this service assistant to this, right? And then. Tracy: Director Yahya. Joe: Yeah, and then everybody you were helping, everybody saw all the stuff you were doing and it just went from there and then you realized. Tracy: And I'd always been, you know, it always been of service and my grandmother was there, like my grandmother was the lady at the church who kind of did everybody's books and she was a secretary at the church. And we were forever if somebody was sick, I spent a lot of time with her, we would drive over to somebody's house and we'd take them to the post office. So for me, helping people in sort of an admin sense was just a being of service. That's just what we did. We were a nice person. You help your friends. So I never thought about monetizing it. I never thought that it was a service that people desperately needed desperately. I was like, Joe: Right. Tracy: Well, of course, you know how to move yourself. You just pack your boxes. Now, people don't know how to do that. So when I realized that there were so many people that either didn't have the time or the inclination and there was a way to offer the service, get paid, help them know that was the perfect marriage, that was like, oh, this is a something that's desperately needed. And I feel like for kind of where we are in the world, it's interesting. But I think as we get further away from making things ourselves, knowing how to sew, knowing how to cook, that there are more and more people that I mean, they can do things for themselves. They just it's I Joe: I know. Tracy: You know, it's just it's just really interesting. I'm a little worried and I have young nieces and nephews, and so I'm very worried about what they can do. And so I it's just it's interesting that this has become very desperately needed service. Joe: Yeah, OK, so the name of the business is dclutterfly, right, Tracy: Correct, yep, Joe: That Tracy: DClut Joe: It's Tracy: ter Joe: A Tracy: fly. Joe: Mouthful, the cutter Tracy: Oh, trust Joe: Fly. Tracy: Me. Oh, and trust me, here's another thing I'll say to aspiring entrepreneurs. When you name your business, say it out loud all day. So it would be easy to come off the time and then try and spell the website, because that's something else I didn't think about. So when I give people the email, they there's D.. C. There's no Joe: Yeah. Tracy: Easy people leave it up. So do a little bit of market research. Go. Joe: Yeah, Tracy: Can Joe: That Tracy: I, can Joe: It Tracy: I say this. Yeah. Joe: It's so funny, it's all those Tracy: Yeah. Joe: Little things you learn as you're doing it, you print your business cards and people, and especially you get older clients that want the help with some of these services that you have. And the prince too small and you're just like, oh, my God. Tracy: I went I went through that I rebranded the company about two, three years ago and the designers did a beautiful job and I was like, the font is too small and they're like white. And I'm like, oh, I'm like they're like we have like less tags, bigger font. Joe: Yes. Tracy: Like the bulk of my clients are over 50, like make it big. Joe: Right, right. That's awesome. Tracy: I, I just about a year ago I bought my first about a truck, a 17 foot truck because we're so busy and I got it wrapped and it's like my traveling billboard and I was like no bigger, bigger, Joe: Mm Tracy: Bigger Joe: Hmm. Tracy: Phone, no bigger. And the guy that the drug had the rapping place, like, are you sure? I'm like, bigger, bigger, Joe: That's Tracy: Bigger. Joe: Awesome. That's perfect. OK, so your your I know you have clients all over, but you're you're based out of California. Tracy: Yeah, and based in Los Angeles pre pandemic, we were I was in New York a lot traveling a lot post pandemic were starting to travel again. Joe: Mm hmm. Tracy: I'll go anywhere. But right now it's been the book is Los Angeles to New York. Joe: Ok, perfect. So I want to go through the services quick, because I want everyone Tracy: Yeah. Joe: To sort of understand. And so I want to start with the home, the home de cluttering and it also on on the website, his office as well. And that's that's an important piece for me. And I think the audience, because if there are entrepreneurs out there, like my desk was clean a couple of weeks ago and now I'm in the middle of doing a bunch of videos and I have research materials and now it's starting to become something that I can't look at. So. So Tracy: Yep. Joe: Let's start with that. The home deck fluttering, plus the office stuff. And and just a brief explanation of each so that at least we can get an idea Tracy: Yes, Joe: Of what that means. Tracy: That's great. Go home and office cluttering is if your space that you live in or work in is unmanageable. I always tell people the really good litmus test is if you can't tidy up a room and make it presentable where you have somebody else walk in in 20 minutes or less, you have too much stuff. So that services we come in, we help people sort through it. We help people figure out what they need to keep, what they need to let go of, and then creating systems for where it goes. So in an office, where do you keep your printer? Is it near the printer where you keep your paper? How much paper do you need to print out? Can we move you to digital? And if we move you to digital, how do you organize it? How do you find that is a really important thing in offices, in the whole home, but really in your offices, where do you put the things you need to keep so that you can access them when you need them, that you can go and buy? And don't tell me. I know there's people out there that are saying I know where everything is in my office. There's giant piles on their desk. I'm like, that doesn't count. You Joe: Right. Tracy: Can't point to a giant pile and say, oh, I know what's in there. First of all, you don't I'm talking about you won't be able to find it like, Joe: Right. Tracy: You know, creating filing systems or digital filing systems. And it's and again, the really underlying message is this isn't about creating a home that you can put on Instagram or Pinterest. You can if you want. It's about creating a space that works for you. And now if you are working from home pandemic, from home schooling, from home, all you got to make your space work. You just have to make your space work. They've done so many studies, they scientists about the effects of clutter and stress. It just this is all about that. It raises your cortisol so puts you in a fight or flight your brain. I'm sure you've probably talked about this on here, but decision fatigue, where you make so many decisions, your brain just shuts down. Joe: Mm hmm. Tracy: Will every piece of clutter in your house is a decision? Do I need it? Do I not need it? Where does it live? So the physical and mental effects of clutter are very real, very, very, very real. So my purpose isn't, again, to create I'm not saying be a minimalist. I'm not a minimalist. You know, it works for you. But is your home is your office working for you? Is it working for you? Chances are for a lot of people it's not. Joe: Right. Tracy: And that's OK. You may not we don't know what we don't know. Right. So if it's not working and if you have an issue with that or if if it's tough for you, you know, it it's like I always say, if you didn't know how to play the violin, you have beat yourself up like I wasn't born knowing how to play the violin. You might not have been born organized. You might have spatial issues. You might have added. There may be a bunch of things. So let's not beat yourself up for it. Let's educate and get it working for you. Joe: Yeah, you hit it on the head because cluttered just causes me angst, like I hate my garage, I hate walking in my garage, and so I understand it, Tracy: Can you even walk in your garage because only 20. Joe: But it's lucky I can. There's so many of our neighbors that have their cars in their driveway, in the hot sun here in Arizona because they have so much stuff in their garage. And that was like priority number one. My Tracy: Yeah. Joe: Car has to go in the garage. It's one hundred Tracy: Only, Joe: And thirteen outlets like. Tracy: Yeah, only twenty five percent of Americans can park their cars in their garage. Joe: Really? Tracy: Seventy five percent of Americans who have garages cannot park their cars Joe: That's Tracy: That. Joe: Amazing. Tracy: I know, I always say I always say we put our forty thousand fifty thousand dollar cars on the street where we fill our garage with trash. Joe: That's you know what, and you might I don't want to put you on the spot, but I can't imagine what the statistic is of people that have storage units and how many times they visit that unit a year. I just Tracy: It's Joe: I, I could Tracy: It's Joe: Never bring Tracy: A. Joe: Myself to have one. Tracy: This is where I get on my soapbox, this is the thing I get on my cell phone calls Joe: I Tracy: About Joe: Knew this was Tracy: And Joe: Going to kick Tracy: I Joe: Something Tracy: Yeah, Joe: Off here. Tracy: It's a billion dollar industry, a billion dollars. I have been in no exaggeration, hundreds of storage units, hundreds. I have had clients who because I make them do it, I've done the math of what they've spent on that storage unit. Twenty thousand thirty thousand a hundred thousand dollars. I have never once and I say it is no exaggeration, I have never once been in a storage unit or what's in there is worth more than what they paid to store it. It is a colossal waste of money. You will never go there if you have something in storage that you can't access. Why are you storing it? Joe: That's. Tracy: There is it is. I like till I'm blue in the face, I'm like, get rid of it, get rid of it, get rid. I have had clients crumble to their knees when they open it up and see what they've been saving. There's no there's like one or two slight somebody sometimes doing a remodel. There's a few Joe: Mm hmm. Tracy: Where I'm like, oh no, no, maybe. Joe: Yeah, Tracy: Let's Joe: It's. Tracy: See if we can find another way. It is, it is just take money and just burn it because Joe: Correct. Tracy: It is such a waste of money. Joe: Amen. I agree with Tracy: Yeah. Joe: You. I just it's so funny, and I just figured I'd throw that out because I, Tracy: Yeah, Joe: I knew that was going to trigger. Tracy: Yeah, I know, and it's people don't go there and they don't it's just really like if I can convince anything to anybody, just don't have it, don't Joe: Yeah, Tracy: Have it, don't Joe: Yeah. Tracy: Get it. Because once you get it, you're never going to empty. Joe: Ok, real quick on the on the topic of the home and office right now in your business, how much is home and how much is it? When I say office, I'm not talking about Home Office because I'm I would think because of covid home offices are on the rise because so many. Right. So Tracy: Yeah. Joe: But but do you actually go to commercial office spaces to help CEOs Tracy: I do, Joe: And. Tracy: Yeah, yeah, yeah, I mean that in covid has just worn Joe: Hmm. Tracy: Down, Joe: Yep. Tracy: We haven't done any, but we have definitely we definitely will go in like work with big offices, like how do people use their space? How do people do that? I'm going to be really interesting to see if that. Comes back after covid, I Joe: Mm Tracy: Think Joe: Hmm. Tracy: We're going to get a lot of those calls, the way the business sort of shakes out now, I mean, right now we've just been trying to get everybody off. Does that how that was that was like how do you work from home? How do you go from home? That's been a big one, but it's probably it's probably a third of the business is senior downsizing. A third of the businesses are moving services and a third of the business is declaring Joe: Mm hmm. Tracy: Home declaring and then probably 20 percent that is office. I'm excited. I also think that when we go back, how offices work are going to change because everybody's like open floor plan. And now it's like, well, maybe not so much. So I'll be curious to see how that goes. I've also interestingly, too, I've had a couple calls lately about helping already offices, office companies that are moving small, 10 people, companies that are moving and setting up the office spaces before people even get in there. So that's a that's a thing that's starting to happen. And I think it's really how to keep people safe and covid and that kind of stuff. So that's that's always interesting to me. Joe: Perfect. OK, so let's go down the list here, so the next one that I have is closet audit. And Tracy: That's a good one. Joe: I Tracy: Yep. Joe: Know. Tracy: So, yeah, I have a couple of the people who work for me are like they can make it look like the Carrie Bradshaw perfect closet. So we come in, we help you figure out what you wear, what you don't wear. Get rid of the stuff that you don't wear. We donate everything. And then it's organizing like the like color coordinated matching hangers. Like it's really. And the thing first of all, it looks beautiful, but also your clothes are an armor that you go out into the world with. And if you have if you have a business where you have to meet with clients or you have to go in and pitch your services to another company, if you start your day off digging through the laundry basket to put something on, you're starting at a deficit. You're already starting stressed. I wear the same thing to work every day. I have 10 shirts from the same company, ten different colors. I have four pairs of jeans. I have my nice Nike shoes that are comfortable, but they're fashionable. I don't want to think about it. Joe: Yeah. Tracy: I want to get dressed. I wear a nice belt, I look presentable, but I look like I can roll my sleeves up. I figured out what works and I don't think about it. Joe: Mm Tracy: I Joe: Hmm. Tracy: Just don't think about it. And I start my day ready to go. It's not my morning isn't about like, oh, what am I going to wear? What am I. So people have to understand, if your closet is disorganized, it's not serving you right. You're already starting the day. Right? Where are my keys? I packed my lunch and what happens and what people don't understand is, OK, so you're taking your clothes out a laundry basket, you can't find your keys. You're running late. Oh, you didn't make yourself breakfast. So you're going to go through the drive thru. So you're going to eat Egg McMuffin and coffee like you've already set your day up so that you're not at your peak. Joe: He. Tracy: Right. You know, if you knew if your clothes were organized, you could get dressed, then you could make yourself that delicious smoothie that's healthy. You could start your day relaxed. And that's my whole I get out into the world ready to go, not frazzled. And especially if you've got kids like Model Man, those parents with the Zoom schooling like Joe: Oh, Tracy: To Joe: I know, Tracy: Have that, you Joe: Yeah. Tracy: Know, to have that extra to anywhere we can grab time. That's what the goal is. So if your closet's organized, you've just gained yourself fifteen minutes, right? Oh, those are my jeans are those are my shirts are great. Off Joe: Yeah, Tracy: We go. Joe: Yeah. Tracy: So that's a really closet. We love deposits. We love it. We love it. We love it. And we do the really big fancy lady those. But we love closet. Joe: Let me before we get off the closet audit subject are what you do with closets, do you ever get in a situation where you go and and they not only want you to organize, but they want you to actually help design a more efficient closet, and then you Tracy: Yeah, Joe: Have to bring in Tracy: Yeah. Joe: Like a company that does all of the shelving and Tracy: Yep, Joe: Ok. Tracy: Yep, it's it's great, we've I've really started in probably about in the last three or four years of service, I'll consult on construction. So clients that I've worked with for a long time are building new homes or remodeling their homes. So I'll come in in the design phase and meet with the architect and the contractor and say, OK, look, this is how many pairs of shoes they have. This is how long this is. So I love doing Joe: Oh, Tracy: That. Joe: Cool. Tracy: It's I love it. It's a constant fight because architects do not believe people have as much stuff as they have Joe: Mm hmm. Tracy: Contractors don't listen to forever, like the person that's like there's no broom closet, you know, and they're like, oh, you know, Joe: Yep, yep. Tracy: There's no broom closet. They're like, what do you need? A broom closet for it? Like, we need a broom closet. Joe: Right, Tracy: We need a real good bit. Joe: Right. Tracy: So that's been really fun. I have been pitching it. I'm working on my second book, but I have been pitching for a little while. I want to do a book, so I'll probably be down the road a bit. But I want to do a book between myself, an architect, an interior designer and a cabinet worker Joe: Mm hmm. Tracy: About how to remodel or build houses in the most efficient way. So that's Joe: Oh, Tracy: Super exciting. Joe: Yeah, Tracy: Yeah, it's super exciting. Joe: All right, cool. We've already touched upon this a little bit, but garage organizations, brutal. Tracy: Our favorite is Joe: Yeah. Tracy: Brutal, it's brutal. We we do it, we got we have packages one, two, three days a team goes in there. I'm at the point now where I don't do any more garages. Joe: Mm Tracy: I Joe: Hmm. Tracy: Never need to be in a sweaty garage Joe: Yeah, Tracy: Again. Joe: Yeah. Tracy: But my team's really good at it. It's a big and post covid this this one's been really people lots of people have been called in. They're like, we have so much toilet paper, we have so much canned goods. And that was one in terms of this is actually a great entrepreneurial point. This was one of the services that I realized. So one of the things I'm constantly balancing is how do I work on my business and in my business? Joe: Mm hmm. Tracy: In my business is a cult of personality. People want me. People will wait for me, people will pay for me. But I can only work so many hours so I couldn't grow the business if I'm doing it. So I had to find some of the services closets. I hired two people who are amazing at it. Garages are another way. It was a service that I could offer where people got the Tracy McCubbin experience, but I don't have to do it. So it Joe: So. Tracy: Was a way to go vertical. And that was a big learning like, oh right. This is something I can hand off, you know, get my team up to speed on it. And it's a good moneymaker for us and Joe: Yeah. Tracy: It's a really good moneymaker. So it's if you are starting a business and if you especially are sort of a consulting service, what are the services that somebody else can do? But your clients still feel like they're getting you. Joe: Yeah, man, you hit it on the head, it's so hard, they want they want you, you are the brand and it's such a hard thing to break away from and it's such a hard thing to hand over to trust other people. Tracy: Oh, yeah, Joe: Yeah, I get it. Tracy: It's Joe: I get it Tracy: You know, everybody Joe: Now. Tracy: Knows if, Joe: Yeah. Tracy: You know, you know, it's Joe: Yeah. Tracy: Really been in there and especially we were like, oh, wait, you're like it's a six week wait. And now, like, I don't care. And Joe: Yeah, Tracy: I was like, OK. Joe: Yeah, I know it's explain the moving services. Tracy: Yeah, that's been a big that's been our biggest thing during covid because we were essential workers, that we were able to do it and so I started when I started. This is another great entrepreneurial lesson. When I started, I just oversaw the move. So I would just take over, become the client, but the movers. And then we started offering de cluttering before people moved. So all the stuff you didn't want to take with you, let's get rid of it, not pack it up. Then we would unpack and organize into the new houses. So it was like, OK, we'd oversee. We get everything to the new house, we'd unpack and organize. And then I was like, wait, why? If we're doing the de cluttering and we're putting things in piles, why don't we just start doing the packing also? So it was another service that I could add that I didn't have to do. So we now did clutter pack, oversee the move and unpack into the new house. And we deal with very complicated situations like going to two houses or we do a lot after people, but people have passed away people's parents. So the grown kids have full time jobs. They can't be here for two weeks. So we'll empty the whole house, get everything shipped across the country. And so it's been a great. So that was another way to realize to go vertical. Right. Joe: Skep. Tracy: Here's another service I can offer. It doesn't take my time. It dovetails perfectly, we're declaring. So we might as well pack anyway. Know I bought a 17 foot truck. I hired a couple of expert packers and it's been a great part of the business. So I always invite people from my own experience to like, what's the what's the thing that you're outsourcing that could you move it in the house and make it part of your vertical? Joe: Yeah, yeah, it's such a great service because there's a huge gap there, there are great moving companies and they will provide Tracy: Oh. Joe: The services to pack stuff up, but it's just merely taking what's in a cabinet and putting it in a box and taping it up. There's no rhyme or reason. So when you get to the new property, you're like, where is this and where is it back? And you're moving Tracy: Yeah. Joe: A box from that landed in a bedroom that should have been in the kitchen and all. Tracy: And Joe: It's. Tracy: Look, I work with I work with moving companies all the time, I you know, they're amazing at what they do. Those teams work so hard. I have great relationship, about three or four moving local while I have about six and Joe: Mm Tracy: Everything. Joe: Hmm. Tracy: They're fantastic. But the story I always tell when people are like, well, why should I hire you as the movers? Joe: Mm hmm. Tracy: We're a little more expensive them and not much. Ten dollars an hour. And I tell the story of a client of mine who was a musician when on tour movers packed all our stuff up, put it in storage. We unpacked for her. And it was it was I unpacked a box and there were literally like a year old half-Eaten Sarcone and a Starbucks coffee. Joe: Oh. Tracy: And she was like she was like, oh, that's where that where the movers just pack everything Joe: Like, Tracy: In sight. Right? That's what they do there Joe: Yeah, Tracy: Based on time, their speed, Joe: Yeah. Tracy: They're doing it. So for us, we go in, we did clutter, we pack in an organized manner so that everything goes in room. So in a way, I tell people it feels like a more expensive service, but we actually save you on Joe: Mm Tracy: The other Joe: Hmm. Tracy: End Joe: Yeah. Tracy: Because it's super organized. We love it. It's one of my favorite favorite and especially the sounds so strange to say, but helping people after a family member has passed away Joe: Yeah. Tracy: Is it is one of my favorite services. It's so hard. It's so emotional. It's heartbreaking when the liquidation company comes in as your child is not worth saving your coffee cups, are they? They are. It's heart breaking. So to be able to honor the legacy of a family, deal with the, you know, not not pretty part. It's just it's one of my favorite things that we can do for people, Joe: Yeah, that's Tracy: Really, Joe: Really cool. Tracy: Is. Joe: So we can talk about that next sense, you kind of moved into that and then we'll get to the last one. So let's talk about the state. Kicklighter because Tracy: Yeah. Joe: That to me is that along with the other one, which is the senior downsizing, to me, those are both very, very sensitive type situations. Like you said, there's emotions that are involved in and these two things. So how do you deal with that? Tracy: You know, for me, it's I view it as such an important service. I know how difficult it is. I've had to do it for both. My grandparents like to I just know that it really providing a service that not many people do. And we my company is very special. There are a lot of organizing companies out there, but there's not I have been in this business longer than anybody. I, I know what's valuable. I know what's not valuable. I have the sensitivity. Everyone who has worked for me. We're all a little we're all a little damaged. We all have a little trauma in our childhood. We all have something to draw on. We've all been caregivers to family members. So we have so much respect. I just feel so honored that a family would trust us for this. And we just did a family. There were four children. Three of the children were on board. The parents lived into their 90s and it was taught it was time Joe: No. Tracy: For them to go. And there were three of the children were on the same page and one was an outlier and that that one person was making it very difficult for everybody else. And so to be able to step in and a little bit be the bad guy like these, these books aren't worth anything. Yes, they are. It is. It was like, OK, well, let's get the appraiser in. And then the appraisers, they're not worth anything. Joe: Right, Tracy: So being Joe: Right. Tracy: Able to sort of draw from my Rolodex and and my experience, like I've donated I've donated thousands of sets of China. It's not worth anything. I'm Joe: Yeah. Tracy: Sorry. I'm so sorry. It doesn't mean that your holidays when you were growing up weren't important. It doesn't mean that you have the memories that you have. And if you love that China and it brings back those memories, keep it. But if you are keeping it because you think it's the family fortune, then we're going to have a different conversation. Joe: Yeah. Tracy: So I just feel so honored to be a part of it. I've met such interesting people and when this steps into the senior downsizing, when we move seniors from lifelong homes into smaller places, a lot of what we're facing when we declare in these phases is our own mortality, right? Oh, right. We're going to die someday. You know, did my life matter if I don't have the staff? Did I make an impact? So it's very I just feel very, very, very lucky that I get to be a part of this process with people. I hear amazing stories. I met amazing people. We always approach it with love and laughter and humor and respect. And it's just a nobody. Nobody does this. Nobody does this. Joe: Yeah, Tracy: I Joe: Yeah, Tracy: Know Joe: It's Tracy: I Joe: A Tracy: Get Joe: Great Tracy: Phone calls Joe: Service, Tracy: All the time. Joe: Yeah, Tracy: Yeah, Joe: It's Tracy: It's Joe: So Tracy: It's. Joe: It's tricky, it's emotional and elderly people become a little bit they don't trust people. They don't know you're in their house Tracy: They Joe: Or. Tracy: Shouldn't, Joe: No. No. Right. Tracy: They Joe: Yeah, Tracy: Shouldn't, Joe: Right. And so Tracy: They shouldn't. Joe: That's a tricky balance. Tracy: We are one of our favorite things. We just did it last week. We've said we're now we've been working for so long, we're now helping parents of clients. Right. So kind of my mom died. I went to Nashville to help. I went to New York and doing that. But what we've been doing, a lot of which I love, is moving someone into an assisted living or community. So we like it. Like we feel like we're on a TV show. We're like, OK, we've got 12 hours until we get the apartment all set up so that when they're making the move, the drive from the old and they get to the new, their artwork is hung up. Joe: Oh, Tracy: The TV's Joe: That's cool, Tracy: Working, their bed is made Joe: Yeah, yeah. Tracy: So that they walk into this new experience with familiarity. And we love it. We're like running around sweating like they would do it, do Joe: Yeah, Tracy: It. But Joe: Yeah. Tracy: Then they walk in and they see their stuff and it's home. They're not stepping into boxes everywhere. Joe: Yeah. Tracy: So this is this is it's my favorite part of what we I mean, I love everything that we do, but this one's really that's really important. Joe: That's very cool, just the way you describe. That was awesome. A couple of questions out of the way of the business. And then I want to get into the book and then I want to get into Tracy: If. Joe: The chair, the organization, and we're running out of time because this is I love this, but Tracy: It's great, Joe: It's Tracy: It's great. Joe: So if somebody wants to work with your company and in a sense you're based in California, let's just say somebody here in Arizona, I wanted to hire you to come in and clean out my crotch. How does somebody work with you that is in like how do you work in other states with people? Tracy: Yeah, we do it know we pay our rates, they just cover travel costs so we can make it sometimes. Sometimes if I'm in other cities, like in New York, I have two women who I can subcontract to sometimes all subcontract. I'll go myself and maybe bring one of my people and then subcontract to try and use the local companies that do that. I have I'm getting a pretty good network. I mean, I'm very I have very high standards, Joe: Mm hmm. Tracy: So I'm pretty I need somebody to be tried and true. But I can I can make it work. But yeah, it's just it's the same rates. It's not more it's just the travel cost. So Joe: Perfect. Tracy: A lot of times when people they're realizing like, oh, it's actually, you know, the other thing I've started to do for clients to if they if they I got a client who had to go to Florida and they just didn't have a sister, their mom passed away. They didn't have the means to pay my travel costs. So I actually helped interview local people for him. So I'll do that for my clients. Like, let me let me make the first phone calls. Let me have the conversation. And I just because I'm I'm very mama bear about my client if I want Joe: The. Tracy: To and I want to just go to anybody. Joe: Perfect. All right. And you scared me for a moment because you almost sound like you're bleeding into my my last thing about the business, which is the virtual dcluttering. So how do you handle that? Tracy: Yeah, Joe: Is that like Tracy: You Joe: A Tracy: Know, Joe: Face time walking around with an iPad? Tracy: Yeah, Joe: Show me this Tracy: Yeah, Joe: Room. Tracy: Yeah, yeah, we do. So the virtual declaring, it's been a bit of an experiment to make it work. And what I've found is that we it's it's we have to set very specific goals. So oftentimes we break it up into half an hour sessions. One session is about right. Here's what you're going to get accomplished. Here's less paperwork. You have these four boxes of paperwork. What are you going to do with them? I don't as much sit there and sort of go through things with them. It's more about helping them come up with a work plan, what the traps are going to fall into, then a period of time, and then we come back and go over it and they ask me specific questions about what they got stuck at. So it's Joe: Got. Tracy: Really almost the virtual it almost becomes a little bit more time management focused help you come up with a work plan. How can you get it accomplished? I also have I have a private Facebook group called Concreter Clever with Tracy McCubbin. It's a free Facebook. I go live pretty much every Wednesday and people can that's a really great it's a very supportive community. Everybody's read my book. We're all so sometimes people would join their and the group will help them. So that's that's great. They're like, OK, it's Joe: Yeah. Tracy: A lot of accountability this weekend I'm going to tackle. And that's what the virtual turned out to be. Two is a lot of accountability. Joe: That's great. OK, cool. OK. The book came out in 2019 called "Making Space, Clutter Free" and you can get it on. I know you can get it on Amazon. I think I saw two other Tracy: Indie Joe: There was an Tracy: Bound. Joe: Indie Tracy: I think Joe: Band Tracy: It's indie band. Joe: Of. Tracy: Yeah, I send people to either Amazon, there's a really great website called Bookshop Dawg Joe: Ok. Tracy: And it connects all the independent booksellers. So you it's a clearinghouse. And so if you don't want to give the man who just went into space more of your money, bookshop dog is a great way. It's available on Kindle. It's available ebook. It's available as an audio book. I narrated Joe: Oh, great. Tracy: A lot of. Yeah, it was great. A lot of libraries have it. They did a really big push. So your local library has it and it's great. It's great. It's doing really well. It got to be an Amazon bestseller and it's an evergreen book. It is not going out of style, Joe: That's Tracy: So. Joe: Awesome, yeah. The reviews Tracy: Yeah, Joe: Are great. Tracy: Yeah. Joe: Yeah. Tracy: So making space clutter free. The nice thing about it is we really delve into the emotional part so very deep about the emotional part. And then there's an actual work plan, how you tackle the house room by room. So people are really it's just I'm very, very happy with that. And I'm in the process of writing the second book called Make Space for Happiness. And it's a it's about why we shop, why we overshot the holes in our lives that we're trying to fill by shopping. Joe: Mm Tracy: So Joe: Hmm, Tracy: It's a little Joe: That's called. Tracy: I love it. I love it. But it's going to be a little controversial. Joe: That's Tracy: I Joe: All right. Tracy: Feel like I feel like I feel like that man who just went into space is not going to like what I have to say. But, you know, Joe: Well, I like to think about Tracy: You. Joe: The closet that I saw one thing and one thing out, right? Tracy: Yeah, Joe: That's awesome. Tracy: It's very practical, it's very you know, there's a lot of oversimplified I think that part of the feedback I always get and I know from growing up with the parent that I did it. And also some people understand a lot of times reporting is generational. So Joe: He. Tracy: I my I had two other a great uncle. It's a genetic thing. It's a it's an anxiety disorder. I think it's a bit of an addiction. I think that people who hoard get a big dopamine hit when they find something. So there's just a lot of empathy. I'm not judging. I'm not shaming. I under I understand how hard it is. And Joe: Yet. Tracy: So people really respond to that. Joe: Yeah, OK, cool. One last question, I thought it was really cool you had the Clutter Block Quiz on your website and you talk about blocks, right? Clutter blocks. Tracy: Yep, Joe: Can you real Tracy: Yep, Joe: Quickly, can you just. Tracy: Sure, and this is the crux of the book. So basically a clutter block is an emotional story that we tell ourselves about why we can't let go of what we don't want or need. So it's so there are seven of them. And I witnessed this from working with clients for so long. I was like, this is that story again. This person is that same story. This is that. So it ranges everything from my stuff keeps me stuck in the past. Sentimental things that you can't let go of, the stuff I'm avoiding, which is your paperwork, which is me. That's my clutter block. I'm not worth my good stuff. So not using your nice things, saving Joe: Mm. Tracy: My fantasy stuff for my fantasy life. Oh, I'm going to become a rock climber. I'm going to knit, I'm going to buy all that stuff for this stuck with other people's stuff. And when in the book and in a Facebook group, I talk about it when you identify you're like, oh, this is a thing. The perfect example. Last Clutter Block No.7, the stuff I keep paying for, this is storage unit. You bought this stuff and now you're paying to store it. And when you see it that way, like, oh, I'm paying to store stuff I never use. Oh, it's like it's it's illuminated, you know, Joe: Yeah. Tracy: You're like, oh, this is why it's not I'm not a bad person. I'm not a bad person. This is just, you know, we're humans. We're meaning making machines. Right. We just rains on your wedding day that all that stuff. So we make all this meaning out of the stuff that's meaningless and it gets a hold on us. So the clutter blocks are really effective for people really, really affected, like, oh, this is real. This is you know, it's not just me. It's Joe: Yeah. Tracy: Not just me. Joe: Yeah. All right, awesome. Before we move off of your business to the organization you're part of, because I think it's really important to talk about real quick. You've made incredible headway in the press, like being on the shows that you're on. And for the entrepreneurs that are listening to this, you could have just been another de cluttering company in California, right? You've said it yourself, Tracy: Amy. Joe: But you obviously you have a unique approach with all the different services you're passionate about. It's very clear by talking with you and everyone will pick up on that. When they listen to this and when they watch the YouTube video, they're going to tell that, yeah, this is this woman is really has the integrity and really loves what she does and it speaks to her. How did you get the the press and all of the stuff that has catapulted you to be the expert in this field? I mean, it's it's amazing, Tracy: Yeah, Joe: The Tracy: Yeah, Joe: Shows Tracy: Yeah, Joe: You've been on and the podcast Tracy: It's Joe: And. Tracy: Yeah, it's great. So I think the thing the first thing that I got really clear about was a couple of things. One, people need content, TV shows need content. Morning news means content, podcasts meet. Everybody needs content. So even if you have a product or a service, you know, there's a mission statement behind it. There's a reason that you're doing it. So what's the what's the story that you can tell about why your service is going to help? Or how can you tell your mission statement and not even mention your product? If you can talk about the service or what you're offering, you know, how can you talk about it without even mentioning it, then that's the content and people need it. And I'll tell you, you say yes to everything. I have been I mean, my favorite story is like morning news show in Temecula, California, like sandwiched in between the October Fest dancers and the like kid who won the spelling bee, like I said, yes to everything. And I worked on my media training. I worked on the messaging. I really understood that you have to be able to communicate it. And so I just started saying yes. And then it I got a reputation for being good and delivering and I did. I have worked with when the book came out, I did work with a publicist. I found the best person who specializes in non-fiction authors. That's the other thing about PR. If you're going to pay for PR and you sometimes you have to and you're the two things you're paying for someone's Rolodex. So who can they call? Joe: Mm hmm. Tracy: Who do they have connections to? And also you need to find the person who understands what you do. Right? So let's say you have a company where you've invented a new kind of pool cover that will save children's lives, superimportant, Joe: Mm Tracy: Needed. Joe: Hmm. Tracy: Don't hire a publicist who works with beauty products. Joe: All right. Tracy: Right. Like really honed down on what you're offering and can that person help it? And sometimes you need to sometimes you need to pay a marketing person. Sometimes you need to pay a social media manager. We can't do it all. So it's really understanding, understanding how valuable those marketing and publicity dollars are. Right. Because they can get expensive Joe: Oh, Tracy: Fast. Joe: Yeah. Mm hmm. Tracy: You can turn around. And I mean, you people are out there and starting to look at that, you know, problems and say, oh, yeah, we have a ten thousand dollar per month retainer. You're like, oh, so what are their goals? What are their goals for you? How can you help? And I always say this. You can't for those kinds of positions. It's like if you have an agent, right? I have a literary agent. Help me with my book. She takes 10 percent of my money. She does ten percent of the work. Joe: Mm Tracy: I Joe: Hmm. Tracy: Still got to do the 90 percent. So you can't dump and run against. Oh, I have a publicist. I don't have to do it. Now you are working in conjunction with them. It's your product. No one's going to care more about your business than you are. So show up. Say yes to everything. You know, like be realistic. It's like I want to be on Good Morning America. OK, well, you start following the October 1st dancers. You just say yes, you say Joe: Yeah. Tracy: Because first of all, it gives you practice, Joe: At. Tracy: It gives you practice and you hone your message. And and this is where the Internet is fantastic. Reach out to podcasts, you know, get really clear about the content you have to offer. Just cold call people, cold email people. Here's what I want to say. Like people that you listen to where the message across, it's the biggest it's the least fun. The marketing and publicity is the least one part about running a business, I think. But the most important. Joe: Yeah, well, you've done great, it's amazing Tracy: No, Joe: And Tracy: Thank you. Joe: Yeah, it's absolutely awesome. Did I miss anything about the business that you would like to talk about before we move on to the organization? Tracy: The only thing I would say is that if you're out there and if you're struggling with your relationship to your staff, don't be afraid to find help locally. Joe: Love it. Tracy: There's lots of people who are opening this business. Reach out to me. I can give you some questions to ask. So don't be afraid to ask for help. Joe: Perfect. OK, one kid, one world. Tracy: Yeah. Joe: It's super cool. I went and I looked at the website, I watched the videos and can you explain what it does? You know, what what the the mission of it is? And then Tracy: Yeah, Joe: I Tracy: Yeah, Joe: Don't want to forget Tracy: So. Joe: After you do that. I want to understand when a volunteer goes, are they just volunteering their time and you get them there and you get them back or so let's start with Tracy: Sure, Joe: The organization Tracy: Yeah, yeah, Joe: First. Tracy: Yeah, so basically, quick story, my childhood friend of mine, our dads, went to law school together. He went to Darfor and he was in the volunteering in the refugee camps and he realized that the bulk of the people in the refugee camps were women and children and that they were setting up schools and setting up little shops, like trying to get normalise as much as possible and realizing, as we all know, that education is the key. So we ate on that trip. He met a Kenyan doctor, a nurse. They told him about this girl's school in Kenya that needed a science lab. The girls couldn't take their exams because they didn't have a science lab. So he said to me, it's twenty five thousand dollars. Want to help me raise that? Let's throw a party. You know, our our peers were all starting to make money and their careers were taking off. So we threw the party, raise the money. We're like, let's just go and see. Let's just go and see what this is. And we went and it was life changing. Joe: Mm Tracy: Here Joe: Hmm. Tracy: Were these girls. And in Kenya, most of them are orphans because HIV AIDS Joe: Mm hmm. Tracy: And the desire for education. And so there's a lot of organizations that are curriculum based and this and that. And what we were like were like they don't have desks to sit in. There are no there's no room. There's not. So we started focusing on capital improvements. We built buildings, we built dorms, we put desks, we put bookshelves, we pay teachers salaries. We put nurses in the school. We just do the things that they need to stay open. We never build a school from scratch ever. We know nothing about what the community needs. We get in partnership with a community where a school has already been established. We do not affect curriculum, not for us to say Joe: Mm hmm. Tracy: We try and work in schools that have at least a 50 percent girl population because girls education is much underfunded. A big part of what we do is we supplied feminine hygiene products to our girls school because that keeps girls out of school. So we're we work mostly in Kenya and then we have branched out to Central America of Salvador, Nicaragua, Guatemala. And, you know, it's an amazing it's amazing where we started the same year I started my business. So I did both of those. I think we're up to like twenty six schools we rebuilt. And part of our fundraising model is we do volunteer trips. So we go, for instance, to Central America. We fly for a long weekend. We rebuild a suite. We don't we do the big capital improvements before we get there. And then when we're there, we demolish bathrooms and paint murals and get very, very involved. And for us, what we found is that there's sort of two types of donors. There is the vicarious donors who your friend goes and see the work that the friends do and donate that way. And then there are the people who want to see where the money goes, really make a difference. So when you go on a trip with us, you you commit to raising a certain amount of money when you come back. And we always had our goals. We never operated a deficit. We don't ever take on projects that we can't finish. We're very lucky. Both Josh and I have other businesses that we work for free. We don't Joe: Mm Tracy: Take a Joe: Hmm. Tracy: Salary. So we're like we're at like ninety percent of every dollar we raise goes back. And not that, not that. I don't think that nonprofit workers should not be paid. They absolutely should be. But we choose for us. We choose not to. And it's been it's been great. It's been one of where a couple of years ago, our first round of girls started to go to college in nursing school and technical school. And it's it's really amazing. It's a really, really, really amazing covid has been really hard. We haven't been able to go. I think next spring will be our first trip if everything goes OK. Joe: Mm hmm. Tracy: But it's been a really amazing it's been an amazing thing to be a part of. It's been an amazing thing to be a part of. Joe: Yeah, it was really cool, I watched the video and I saw where there was a person taking Polaroids and then everyone and then the Polaroid was there was a square where the Polaroid would go on the piece of paper and each student had to say, I'm going to be a doctor Tracy: Yeah. Joe: There or I'm going to be a nurse, or it was a radical. Tracy: Well, one of the funny things I get I invented invented this exercise, I was realizing, talking to the girls in Kenya, that because they didn't have parents, so many of them, they didn't they never they didn't know how to make a business phone call. They didn't know how to apply for a job because it's like the teachers are teaching them. But there's not that. So I started to do this exercise where they would be the shop owner and I'd be like another volunteer. And I like I'd be the bad like I wouldn't say, you know, I'd say my name really quiet. I wouldn't shake a hand. And you just did these roleplaying exercises of how to apply for a job. When you realize, like, you have to learn that stuff, you don't know you don't know how to call someone and say, hey, here's my name or walk into a shop or say like, I'd like a job and walk in with confidence. And so now it's like day can't wait. Every time we go, we all line Joe: And Tracy: Up Joe: That's Tracy: And they Joe: Called. Tracy: All get to pretend. And, you know, it's such a it's such an amazing just right to have the self-confidence to get go in there and do that. And so it's very practical and we love it. We love Joe: That's Tracy: It. Joe: Awesome, Tracy: We love it. We can't wait to get back. So Joe: I'm Tracy: If anybody Joe: Sure. Tracy: Out there is listening and want to come on a trip with us, one kid, one world dog, tell me you heard me on here and would love to get. Joe: Awesome. OK, I've taken your time. I've gone over, I apologized, Tracy: It's Joe: But Tracy: All right, Joe. We're Joe: This Tracy: Having Joe: Is Tracy: A great conversation. Joe: This was awesome. So let's give everyone the and I'll put it in the show notes, but the website for your business did clarify. Tracy: Yep, yep, so the website is dClutterfly.com, so a d c l u t t e r f l y dot com. See, this is why you say it Joe: Yeah. Tracy: Out before you name your business. The clutter block places on there. You can sign up for my newsletter. It's a great place to find me. I'm very active on Instagram. So Tracy_McCubbin and then if you are looking for some extra love and support, the private Facebook group, which is called "Conquer Yo

The Gaming Nexus Show
Comic Con, Ghostbusters, USA banning PCs, and Blizzard

The Gaming Nexus Show

Play Episode Listen Later Jul 28, 2021 71:30


We're a little short staffed today (no Joe) So we decided to bring on friend of the show Jeff. Jeff has a number of podcasts one might find interesting. Budget Arcade (they review a free to play game every other week) The Movie Draft House (a movie review podcast) and Hitchcock Chronologically (He reviews all of Hitchcock's movies, well, chronologically). This week the gang dives into San Diego Comic Con, and the lack of excitement shared by all, as well as EA's Play Live from last week. Elliot admits to never playing a popular series of games, Max recommends spending time outdoors, Eric talks of his love for Ghostbusters, and Jeff just finds everything ok. Once you subscribe on your platform of choice you can then check out some of our other stuff like Joseph's Twitch page, the soundtrack to Max's game Ocean's Heart, Eric's YouTube or Elliot's other podcast.

The Joe Costello Show
Josh Carey - Co-founder of PodMAX.co

The Joe Costello Show

Play Episode Listen Later Jul 7, 2021 52:32


My conversation today is with Josh Carey, co-founder of PodMAX.co, an event that happens about every 6 weeks where business people and/or entrepreneurs are matched up with podcast hosts where they do 3 interviews in one day while also attending an event where there is networking, education and keynote speakers. Josh explains in this interview how this event that they hold quite frequently, is like speed dating for podcast guests and hosts alike. It's an efficient way for hosts to get 3 interviews in the can in one day and for business people and/or enterpreneurs,to get out there and promote themselves, their businesses and tell their story 3 times in one day on 3 different podcasts. This is an interesting interview with Josh as he shares his own journey to exposing himself and his talents and now helping others to do the same. As always, thanks for listening! Joe Get 30% off at The Healthy Place by using code "costello" Josh Carey Co-founder - PodMAX.co Website: https://podmax.co Instagram: https://www.instagram.com/onairbrands/ Facebook: https://www.facebook.com/onairbrandsLIVE/ LinkedIn: https://www.linkedin.com/company/onairbrands/ Email: josh@podmax.co Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.libsyn.com Subscribe, Rate & Review: I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to: https://joecostelloglobal.lybsyn.com Follow Joe: https://linktr.ee/joecostello Transcript Joe: Hey, Josh, welcome to the show. I'm very excited to have you. Josh: Likewise, Joe. Pleasure to be here. Thanks. Joe: Yeah, so this obviously as a podcast or this hits home for me, having someone unlike you that has this this business, if you will, called Pod Max. Right. I guess it's it's also an event. Right. So I need you're going to help me understand Josh: Yeah, Joe: It. Josh: I shall. Joe: I've watched a bunch of different videos and I watched the testimonial video, but I still want clarification. I think you hit it on the head when you said it's like speed dating for podcasters. And that was Josh: Hmm. Joe: That totally was a very clear thing for me. At least brought me to a point where I said, oh, this is really sort of different, but this is what I do with all my guests. So you'll have to you'll have to suffer through this part. Josh: I shall suffer. Joe: We because my audience is mainly entrepreneurs and it's it's me trying to help educate Josh: Mm hmm. Joe: Them as much as possible. I always like them to know the back story of my guests. I want to know Josh: Hmm. Joe: Where you came from, where you came from as far back as you want to go, because it doesn't Josh: Mm Joe: It Josh: Hmm. Joe: Doesn't matter to me. It's exciting to figure out the how you develop to who you are today and how you are doing what you're doing today and what was all in between to make this happen. And then from there, we'll get into the depths of tiebacks. Josh: I love it. I shall take you down that journey, then Joe: Perfect. Josh: We'll start we'll start with Current Day. Today, I'm known as the Hidden Entrepreneur, and that's because I spent 40 plus years of my life hiding. I literally showed up in every situation, hiding all of my true talent and ability. Everything that I was really capable of doing remained hidden because I was so desperate to seek the approval of others. Now, what really sucked about this is behind closed doors. I knew darn well what I was capable of doing. So this created a lot of anger, frustration, resentment, jealousy, all that stuff. And the bigger thing is that not only did I want to seek your approval, I was scared so much by the fact that if I were to come forward with something quite good, right. Impressive, even in any regard, you might feel so insecure about your accomplishments and talent and scale, what you may or may not be doing. Right, because we're all just a mirror and a reflection of each other that what it might make you a little upset by what you're seeing and then you might retaliate against me in some form. And I knew my whole life that I just didn't feel strong enough to stick up and stand up for myself. Josh: So all of that made for this recipe of living life that way cut to today. I'm the proud father of two adoring children. I have an eight year old daughter, a six year old son who are my absolute everything. I love playing the role of father. I love being their dad. And early on in their young lives, I realize that I see what's happening here. I'm the child in this circle and I'm the one who has work to do. So I said, guys, keep doing what you're doing. I get it. I can't continue to be this miserable kind of person and have them watch me that way their whole lives. It wouldn't end well. And fast forwarding to, you know, seeing an empty nester. Now, if I was 20 years down the road and they just grew up with that type of father, they'd naturally become that type of person. And in that scenario, there'd be nothing I can do and I wouldn't be able to live with myself. So I said, that's all I need to say. Right. I'm Joe: Yeah. Josh: Going to make them prouder. I'm going to make me proud or I'm going to do what needs to happen. And I started just taking inventory, replacing some of my bad non serving habits with slightly better ones and slowly but surely seeing the positive result in effect of that. And here we are. I just keep stacking those on each other and I've come a long way and still have a long way to go. But I'm very happy and proud with where I am today. Joe: And so what did you do in your past life, let's say that you're now doing what you do. I mean, what was your what was all these things you were doing while you're hiding from the world? Josh: So I got in in eighth grade, I got bit by the acting bug, right? I found that in there was a school audition taking place and I felt like I should audition to see what this was about. And I did. And it was a a drug awareness program, whatever it was. And I got a cast as the comic relief of all things. So I was bumbling around on stage and hundreds of my right, hundreds of my classmates were laughing at me from what I was doing on stage. Now, I knew that they were in fact laughing at me. Right. They weren't laughing with me, but I was I was OK with that because I was getting the attention I was so desperately seeking. So I thought, wow, I will continue to seek out this attention, hopefully thinking this is what I need to fill this emotional void. Right. This external approval is exactly what I need now. Doesn't work that way. It took me a few decades to realize that, but I set out on a path to become an actor and said, I'm going to dedicate my life to this because if I could just get this daily, my life sucked. So I pursued that dream. I wound up spending 15 years in New York as a working actor and filmmaker. Great credits, wonderful era of my life. But again, it didn't really, you know, fill the void. You know, when the curtain comes down, I'm still miserable and alone in the corner, often crying and trying to figure out where my life went so wrong. Josh: So I did that for a while. I had some, you know, day jobs to pay the bills. I taught myself webdesign to keep myself busy when the Internet started rising up in the nineties. And slowly but surely, I just became somewhat of an entrepreneur, not realizing at the time that that's what it was. But I was just trying to make ends meet while I was pursuing my passion. And then I found myself running my own digital marketing agency where I was building websites for an industry and all this stuff. Ten years later, this industry became just like any other toxic relationship we might find ourselves in personally. But this was my business and the industry taking full responsibility. It was on me because I was showing up that way, which is why I was attracting those very people. So I knew that something needed to change. This correlated with the time where me and my children had the talk, where I was the child, and I said, I get it. I know it has to be done. This relationship with the industry and my my work here, it can't continue. It's part of the problem. Let me rip the Band-Aid off. I said I don't know what's next, but I'm going to seek something. I'm going to figure it out. And just like if you're in a bad relationship, you don't necessarily wait until you have another relationship. Josh: You get out and figure it out. And that's what I did. I got out. I said, let me take a few months. Let me take some time, figure out what I want to do, where I want to go and be true to myself for one of the first times in my life. And I said podcasting. I think I felt that I would be good at it and I would enjoy it. And it would create opportunity and I would connect with people because, God, that's all I ever wanted in my life. I said, well, if I do it honestly and authentically, I might finally attract the right kind of people instead of attracting the miserable and getting what I don't want because you focus on it. So I created a brand called The Hidden Entrepreneur and then became that became the podcast. And I started interviewing people. And slowly but surely I started feeling good about it and getting a good response. And it just kept building the confidence. And I was told I was half decent and I certainly started feeling that way, still replacing a lot of my bad habits with better ones, trying to live wonderfully for my children. It all came together. And now here we are. I'm doing some some some really interesting things in the podcast space because of those moments that that got me here. Joe: Right. And that's what's important. That's why I wanted to ask, because, you know, as much as everyone can say, their life went on a certain path and certain things did not go right Josh: Uh. Joe: Or whatever, they all build the person you are today. And so I think probably whatever you're doing with Pod Max now, you're leaning on some of your marketing and, you know, Josh: Exactly. Joe: Your and all the stuff that you did earlier in Josh: All Joe: Your entrepreneurial Josh: Of it. Joe: Life. Right. So it's like you can't throw the baby out with the bathwater. That's this. This is all created to help to create who you are now, to make this next portion of your life excel even more. Josh: Sometimes in the moment, we don't and can't recognize that a lot of acts in retrospect that the game is being able in real time when there's a little bit of a glitch or a detour that you're forced to take or something that's happening that you didn't quite see coming wasn't as you planned. You have to realize, wow, this is probably going to work out for the best. And as you're seeing everything I've spelled out, even my acting and film days to this very moment, I pull a lot from those days how to how to communicate, how to perform, how to create, how to talk on the mic, how to write. All of that is acting and film. And then, like you said, the marketing from the digital marketing, knowing what you don't want on a grand scale to know exactly what you do want. It's all relevant and quite perfect. Joe: Yeah, and it's funny, and you gave it away already, but I was going to ask you where you from? And I was like, he's got to be from New York. I can recognize and I'm from New York. So he's like, he's got to be from New York. And then you said it. You're like. Josh: What did I say, oh, that I spent time there Joe: Yeah, Josh: In New York. Joe: Yeah, and so did I and I and my background is I went to school for music and I Josh: Yeah. Joe: And I landed in New York. I lived two hours north of the city where I grew up. But then I landed Josh: Mayor. Joe: In New York as to be my big time career break Josh: As Joe: In. Josh: A drummer, Joe: Yeah, Josh: Yeah. Joe: Right. And so and at the same time, we all have to go find jobs. And then and then you sort of get steered off a path because you start making money and going, OK, how much do I want to suffer living in this one bedroom apartment and eating mac and cheese every night where Josh: True. Joe: It's just whatever, whatever developed over that time. But we had the same sort of path. So it's Josh: Yeah. Joe: Interesting to hear your story. Josh: Mm hmm. Joe: Ok, so you started podcasting and you have a podcast called The Hidden Entrepreneur. How did you make the jump from that to come to being the coach? When I heard you say you're actually a co-founder of God Macs. So where did this idea come from? How did we get to where we are today with that? Josh: In twenty eighteen is when I created The Hidden Entrepreneur Show, and it's still running strong today, over 200 episodes and I in the summer of 2019, I had the opportunity to record episodes of my show at an event. And one of the one of the people that I was interviewing didn't know him prior to this event was Eric Cabral, who's now my co founding partner in Pod Max. I interviewed him for my show and we hit it off and we connected. And after the interview, he said, you know, we're both from Jersey. I have. Which is where I live Joe: Mm Josh: Now. Joe: Hmm. Josh: He said, I have a I have a studio in in Jersey. Once you come out and check it out one day and, you know, we'll see we'll see what's possible. And I said, OK. And then it turns out I never left. Now, what I like to point out is that what what I did just, you know, basically, yes. By design, but subconsciously during that first interview where he was on my show when we didn't know each other prior, was I was already leaning into my full potential, which was quite different from what I did the first 40 plus years of my life, where I spoke about I showed up really small, didn't want to rock the boat, didn't want to make you feel insecure. So I just took a back seat. But then in twenty eighteen, I started figuring out how can I come to the table with the ability that again, I've always known darn well I'm more than capable of doing. And really I believe we're all in that same boat. We all know what we are capable of doing. We just adjust and alter that for so many reasons inappropriately, so more often than not. So I said, I'm going to just start coming out, you know, strongly with what I'm capable of and miraculously, quote unquote, I started attracting the very people who understood that, who liked it, who appreciated it, respected it. Ironically, all the things I wanted my whole life, Joe: Mm Josh: Just Joe: Hmm. Josh: Somebody to appreciate me. How can anybody appreciate when you're being, you know, a weak man, Joe: Yeah. Josh: Which I was. So I thought that if I were to come out powerfully doing what I'm capable of, everybody is going to retaliate against me. And oh, no, I don't even see those people. I only see people like you, like Eric, like people who are like, wow, you know, like attracts like, of Joe: Mm Josh: Course. Joe: Hmm. Josh: So that's that's the amazing thing. So all that to say, I was already able to do what I was doing to get in front of somebody like Eric, for him to recognize something within me because I had already appeared that way. So you have to sort of do the work first instead of like me hoping that somebody can see a glimmer of potential in me and then anoint me capable and relevant to the masses. You know, that doesn't happen. Joe: Right. Josh: So it only happens when you are first putting it out there to attract the good back. So Eric and I started talking and hanging out and we had a very similar vibe and connection, a lot of similar goals. He also came from the podcast space. He has and had his own show. And we just started talking about this idea Pod Max, which started in person in twenty nineteen. It started as a live in person event. We had the studio in North Jersey where we figured we do this one day kind of hybrid event where it's part conference, part workshop and part podcast recordings. So we set up makeshift like a dozen different studios like like little mini areas where hosts can record with guests. And we invited about a dozen show hosts in, sold tickets to the event to high level entrepreneurs and thought leaders who wanted to get their message out by recording on shows we would match them. Thus the speed dating for the podcast industry. And over the course of that day, each hour they would rotate into a new studio area and record as a guest on a different show. And in between those recordings, we would provide a catered lunch, we would provide networking, we would provide training and education, and we would provide a high level keynote. So we had the conference, the workshop feel the retreat and the podcast recordings. We did that a few times and then twenty twenty happened. So we're like, OK, well this is crazy because we're a live events company. What happens now? We had no idea, so he said, can this work virtually? There was only one way to find out. We took that agenda, that format. We sort of reworked what needed to be worked into a virtual format. And since May of 20, 20, which was our first pod, Max Virtual, we've never looked back. We're about to do our 14th 14th virtual event in August. And it's you know, it's one of those things that we we couldn't have seen that coming. Right. We wouldn't Joe: Yep, Josh: Have even looked virtual. Joe: Correct. Josh: So so now it's an eight hour event, which people who don't really know our style will say eight hours virtual. That's crazy. But we hear all the time that it flies by because we've sort of been able to really hone in on making all of those minutes per hour the best they can be. Joe: Right. Josh: And then the entrepreneurs get to record still on multiple shows. We have a keynote. We have training and education. So we know prior to the event we work with the thought leaders to help them further identify, practice and fine tune their message. So when they get to the recording, they feel confident and ready to go. Joe: It's so cool, so how many of these do you do? Josh: We do them about every six weeks. Joe: Wow, and how Josh: Yeah. Joe: Did you figure out the logistics, like I attended a couple virtual conferences and logistically it's very cool because you you don't really miss anything because a lot of stuff is is recorded to playback later and you're not wasting a lot of time on a showroom floor. You're going exactly what you want Josh: Exactly. Joe: Without having to walk around it. But how did you guys figure that out? Josh: Well, it came from the live, and then we we sort of transferred that virtually and we fill the eight hours, it's single track, right, to everybody's in the room going to the same places, Joe: Ok, Josh: Doing the same things. Joe: Ok, Josh: Yeah, Joe: And Josh: It. Joe: What's the number of attendees that you've gotten up to? Josh: We get about 50. Joe: That's amazing. Josh: Now. Joe: It's really cool, and I wasn't sure when so when when we talked about this being sort of like the speed dating for podcasting, there's a lot of podcasters out there who either are looking for gas or they want to be guest on podcast. And Josh: Mm hmm. Joe: I think they need to understand how iPod, Max, differs from those services that are out there, whether it's someone you get this connection with someone and they start feeding you gas or Josh: Yeah. Joe: You get this connection with someone and they keep putting you on different podcasts. Josh: Mm hmm. Joe: I think the important thing is that as a podcast for myself, I get I Josh: All Joe: Haven't Josh: The Joe: Been Josh: Time. Joe: On a podcast, which is kind of funny, but I haven't. Josh: Wow. Joe: But I get a lot of requests either from an agency that that Josh: Mm hmm. Joe: Said, hey, we want to work with you with really great guests or just people that find my podcasts and reach out and say, hey, I think you would really like this person. And I have to sort of filter through Josh: Yeah. Joe: What I think fits my audience. I'm not going to accept everyone because Josh: That's right. Joe: It's not fair to the listeners. Josh: Mm Joe: It's Josh: Hmm. Joe: A selfish endeavor for me. And you kind of hit upon it yourself. It makes it allows me to connect with people like you. It allows me to learn so much. But at the same time, I need to make sure that I'm servicing my audience and educating them on what they came here in the first place to see. Josh: That's right. Joe: So when you do iPod, Max, how do you do this matchmaking? How do you figure out that this guest is going to go and sit with this person and do recording and it fits the mold of their podcast or they're the right person? How does that all happen? Josh: Well, we've been lucky enough to do it for a while, and we have a lot turned out to be a core group of show hosts, like the vast majority of the show hosts return over and over again. Joe: Ok. Josh: Why? There's a lot of winwin. There's a lot of benefit. It's really cool for them to get to record three episodes in one day Joe: Mm hmm. Josh: In three different hours, which is a great thing. They also get to network with a lot of high level entrepreneurs and the other show hosts. They get to be right in the room with. We bring three now virtually we bring three keynotes in at a very high level of keynote. So they get to leverage that relationship off. Often they'll reach out to the keynote and then welcome them on their show. So it's just a really great vibe. There's a lot of a lot of personal growth and development built in to the day that you almost don't see coming until you're on the back end of it and you're like, oh, my gosh, it's just amazing. So they keep returning and through that then they become like family, right? Joe: Mm Josh: Like Joe: Hmm. Josh: At every event, the chats, everybody's just excited to see each other again. And it's sort of like old home week. So to answer your question, we've gotten to really know a good core group of the show hosts, knowing who they are, what their businesses are, what their shows are, what their goals are. And with that, we can then do our job. That takes a lot of the matching difficulty out because we know exactly who's coming through that they'd be perfectly matched for and because of the reputation where we've done such a good job prepping the entrepreneurs and attracting the right level of entrepreneurs and training them. Well, we hear all the time from the hosts that they don't even they don't even worry who they're going to be matched with. Joe: Right. Josh: You know, the week prior, you get you know, you get all the contact and bio information, but they're like, I don't even need to worry because I know whoever comes through, whoever you match me time and time again is going to be a home run. So then we we ask the entrepreneur coming through to fill out a somewhat detailed, extensive profile so we get to know them so we can properly match them. Then we just take the two sides and we have a few team members who are specifically dedicated to the matchmaking process because it's you know, it's got to be done right, takes a little bit of time, but we do it and then everybody seems to be happy on the other side of it. Joe: That's really cool, so when I saw on the website there was a apply to be a host, Josh: Mm hmm. Mm Joe: Correct? Josh: Hmm. Mm hmm. Joe: Is that the is that where the people that are going to do these interviews go to become part of TotEx? Josh: Correct, Joe: Ok. Josh: We're always, always open to meeting new potential show hosts for our event. Basically, you fill that out and the most important thing is we have to make sure because we we can't anticipate prior who's going to come through the event. But generally, our show hosts fill a category that can be broad enough in nature where it's an entrepreneur, it's a business show, it's about success, struggles, failures, life stories, growth mindset, that whole concept. A lot of categories fit into that. So as long as you're as long as you could, as long as you welcome guests that fit that, we could most likely start the conversation. And then we have a few other criteria just to make sure that you're relevant to to our whole brand and audience. Joe: So that was you actually hit upon one of my questions, which was what is the variety of hopes that you have at Cognex? Like, I would just give you an example off the top of my head. Would you Josh: Mm hmm. Joe: Ever have a. And it sounds like no, the answer is no based on what you just gave me, but that you at this moment there, it's more about entrepreneurial stuff. It's about success. It's about business. It's about things like that's not like you have one of these host who has a cooking podcast. Josh: It's so funny because Joe: Ok. Josh: To know well, yesterday, in fact, it's very strange you said cooking because yesterday a show we received an application from a potential new show host and it was, in fact, a cooking podcast. Joe: Unbelievable. Josh: That's the most yeah, it's the most amazing thing. But I think that to his credit, I think that there was an entrepreneurial spin. Like it's like he says like like I'll welcome chefs and cooks and entrepreneurs. I don't know. So Joe: Restaurant Josh: So there was Joe: Owners Josh: I mean. Joe: Were Josh: Yeah, Joe: Given Josh: Now Joe: A. Josh: Now something like that is going to be a little too niche for us because we can't fulfill. Right. Joe: Yeah. Josh: We don't get that kind of people, Joe: Now. Josh: But we are we do have the in the near future, we're going to start niching these out like pod max invest. Right. Joe: Oh, Josh: And then Joe: Cool. Josh: Every show is about investing in real estate and whatever. And then the people who come through or their pod max health and wellness. And then every show is that and then the audience supports that. But right now it's the first thing. It's entrepreneurial, it's business, it's growth, it's success. It's a life story. It's struggles, wins, failures, which we find a lot of people, even if they fit a specific niche, we help them extract. Let's get your life story out. And that's in. That's how we work with them prior to the event, to really fit a bigger a bigger audience here. Joe: Yeah, it's funny because my life partner, Joellen, and I have a YouTube channel that kind of morphed, we started it when covid hit and it sort of morphed over the year to now be really concentrated on travel. Our goal is to eventually have that the you know, Josh: A Joe: We're Josh: Travel log. Joe: Not young, so we're trying to inspire people of our age to go out and just do whatever you want to do and what's what's your excuse? Right. So we were talking about how some of these YouTube channels are lucky because they are they deal with things that are very current. So these guys that have these Krypto YouTube channels, they can't get out videos fast enough because that things Josh: Mm. Joe: Are changing so quickly. So it'd be interesting if you have a crypto pod, Max, someday and Josh: That's Joe: You could Josh: Right. Joe: Have like 12 crypto experts or I mean host Josh: Yeah. Joe: Having these people on because it's this new frontier. It's just crazy. But it's true that the things that are current, it's easy for those people. That's not so easy for people like us who are just in the trenches every day. Josh: Yes. Joe: But we're in New Jersey. Did you hold this just because. My own curiosity, because I live there as well. Josh: Trenton. Joe: Trenton OK, OK. I lived in Montclair, Upper Montclair, Josh: Oh. Joe: West Orange, even Newark, Josh: Of course, Joe: Even Newark Josh: One Joe: As Josh: Fifth Joe: It when it was starting Josh: Well. Joe: To grow. So. Yeah. Josh: 153 B, I went to Montclair State for a year. Joe: Oh, Josh: Yeah, Joe: That's so cool. Josh: You Joe: Yeah, Josh: Were by Joe: So, Josh: The campus, I imagine. Joe: Yeah, I was I was right there Josh: Yeah. Joe: Trumpet's the jazz club. You remember Josh: Yes, Joe: That? Yes. Josh: Of course, Joe: Ok, Josh: So funny Joe: I know. Josh: Jersey taqiyya. Joe: That's right. So talk to me about the people. So you have the application online for the host and you're obviously looking for those all the time to expand Josh: Mm Joe: Because Josh: Hmm. Joe: What is it? Each each host gets three interviews during that eight hour day. Josh: That's right. Joe: Ok, and then the people that want to attend Pod Max are potentially people that want to be guests be matched up with one or Josh: That's Joe: Two Josh: Right. Joe: Or any of Josh: Mm Joe: Those Josh: Hmm. Joe: Hosts. Josh: Three Joe: Three, three, three. Josh: Up to three Joe: Right, Josh: Up. Joe: Right. And then on the website I saw there was a button to buy. Is it is it to purchase a ticket for the next five max in August? Josh: That is correct. Joe: Ok. Josh: So the revenue and the and the tickets are from the entrepreneur side who want to be guests on the shows, Joe: Got Josh: They Joe: It. Josh: Come in, we train them, we work with them, we put them and match them on the show. So they record. We then, you know, they're in the room for the keynotes and the networking and everybody's happy. Joe: So explain to me, when you say we train them, what does that mean? Josh: We have so we when we first started virtual, we didn't have any sort of built in training, we just saw people coming to the event and the day the event happened and that was that. Then we had some people coming to us that said, you know what, I want to attend because they saw this as a great way to basically click a button, buy a ticket, and they'll be a guest on three shows. Right. How how else can that happen so quickly? And so guarantee that you're going to record in the course of a day and it's done now. You got three under your belt Joe: Mm hmm. Josh: More. We started getting people who in their own right were successful business people, six, seven, eight figure business people at everything from the C Suite on down. But they're coming to us saying, I've never been on a show before, but I want to or I've been on some. But I'm not that good. I need more confidence. I need more need more skill. And we thought, oh, my gosh, we're attracting a wide variety of successful business people who are now trying to break into podcasts, guesting. So we said, well, let's hold a prevent training where prior to the event, which is what we do now, we hold a 90 minute session with all the attendees prior to the event where we work with them in small groups. So they get one on one attention with Eric and me where we really get them going with their story, their message. We we listen to it, we prompt them, we give them feedback. We have them do it again. We give them notes. We say you're missing the bigger point. This is actually your sound bite. This is your message. This is what I'm hearing. And we just poke and prod until they're ready to go. And then they take the week prior to the event to get comfortable and practice and rehearse. And we do that kind of training. Joe: Well, that's very cool, and I think what I found as a as a host is I run into those people when they've written a book Josh: Mm Joe: And now Josh: Hmm. Joe: They want to promote the book. And Josh: Ok. Joe: They know that a really good way to promote the book is to get on as many podcasts as you can to get the message out Josh: Ok. Joe: That they've never been on one. So Josh: There you go. Joe: There you can see that they're a little awkward in having to talk to a camera and you know what I mean? So I find that that's that's a that's a big spot for me. When I get someone contacts me about, hey, we want to have so-and-so on. He's just written this great book and it's going to be released on Amazon in a month. And we'd like to get some sales. And Josh: Uh. Joe: And then you get that person and you can tell that they're just sort of wet behind Josh: Now. Joe: The ears in regards to being a guest. Josh: Yeah. Joe: So. Josh: Right, whether it's a host or a guest, you know, you said you have guests, but certainly, you know, as a host, it's not often as easy as it looks, right. Just because somebody is in front of a camera and has a mic, once you start doing it and then you put and then you're like, OK, this is a podcast. There's a lot of moving parts that you didn't anticipate. You have no clue what to do. And then there's so many things that you don't even know what you don't know until it's too late. And you're like, wait, what am I missing here? Same thing on the guest side. Everybody thinks like, no, I just talk to me, ask me some questions, I'll answer them. No way. Because there's two parts here. There's the technical and then the technique. Right. The technical is all this stuff, how you're framed, how you look, the lighting, the earphones, the microphone. Right. All very deliberate. And then there's the technique. What are your stories? How long are you answering? What's your energy and persona like? What are your sound bytes? Joe: Please, Josh: And we teach Joe: Please Josh: All that. Joe: Tell me that when you do some of this training with these new guests that you actually talk about equipment. Josh: Oh, my gosh, you have to, Joe: It's Josh: Of Joe: Just Josh: Course. Yeah, Joe: A. Josh: Thank you for observing that, because we don't want them showing up to the event because they're representing us and our brand. And it's all right. The next events that are better, they are they'll look good to the hosts and vice versa. Right. So we always require great professional level of host because we want a great host to represent the guests. And that's what makes it so well. So hosts nine times out of ten will already have, especially if they're working with us, they're professional. This is part of their business model and they're in it for the long run. They have a growth mindset. They get it. They're up and running guests. So you're right. Even like the ones that you would expect, like C suite level or quote unquote known famous company executives and employees, it's like they not ever you could assume, but they don't know. Joe: Yeah, Josh: A lot of them just don't know. So, Joe: That's. Josh: Yeah, we we do talk about that. Like you can't use your computer. Might stop with the window behind you, stop with that terrible green screen because half of your face is, you know, see through and it just doesn't work. Yeah. Joe: Yeah, I think the most brutal thing for me is when they have my voice coming out of their speaker and it keeps it keeps wiping out what right instead of it coming in headphones or in ears like I have, it just keeps Josh: Yeah, Joe: Hammering Josh: Uh. Joe: Over whatever when we're talking because it's the feet, it's the loop coming back through the mic. It's just Josh: Yeah, Joe: Brutal. Josh: Yeah, and even the angle, you got the perfect angle, you know, that that's, you know, are you too high, too low? It's it's all right. The technical and the technique, we cover it all. Joe: That's very cool. Well, that's that Josh: Thanks. Joe: Makes me so happy the more we can do that with guess, Josh: At. Joe: The better it will be. Josh: We're doing our part. Joe: So when is Permax? In August. Josh: August twenty seventh, we always have it on a Friday, it started that way and then we continued that way because one of the reasons it makes so much sense now to have it on a Friday, especially virtual, you spend eight hours from 9:00 to 5:00 Eastern again. Believe me, it will fly by. That's my promise. That's the way we make it happen. It's going to fly by no matter if you're a guest or a host. But you've still spent eight hours in the room absorbing everything and recording everything. So we just thought it was it was quite perfect to almost accidentally do it on a Friday, but then keep it it because let's take the weekend to sort of decompress and let it all process. Joe: Sure. Let me ask you the more of a personal question in regards to Josh: Sure. Joe: You with the hidden entrepreneur and you as a host and then as a guest, are you busy being a guest on other podcasts? And are you when you are a guest or are you talking about your show and what you've done as an entrepreneur? Are you talking more about, let's say, Pod Max and what you're doing with that? Josh: So I'm I'm a guest here and now in real time, Joe: Yeah. Josh: So you're so you're asking Joe: Do Josh: When Joe: You do a lot Josh: I'm Joe: Of these? Josh: Out. Joe: Do you do Josh: Oh yeah. Joe: You are you a guest? A lot on Josh: Yes, Joe: A lot of. Josh: Yeah, you ask a good question, though, what we what I do and really what we teach and promote is it's less about what you do and more about who you are, because that's what I think people are going to be attracted to. So I've spent time really honing in on and perfecting and continuing to perfect my story, my messaging, my communication, my positioning. A it's what I do on the business side. Right. So you sort of have to show that you can do what you're claiming to teach. Right. Which I think a lot of people Joe: Right, Josh: Don't Joe: What Josh: Do. Joe: You're asking others to do, right? Josh: Right. So if I can sort of show an example through me and be somewhat good at it, you're going to have more confidence coming along with what product or service I have. So it's in my best interest for a variety of reasons also because I still have some of that. I want the external validation right now. I don't need it, but it always feels good just as confirmation that you're doing something people value. Right. How else do you get that? But the feedback. So by doing something like this, it gives me feedback, my personal feedback and others. So I continue to hone and craft my story and message because it's what I teach and it'll help get my brand and message and story and business out there. Further, I, I talk about where I came from and my struggles, upbringing, and like we touched upon here, how I spent all the time hiding and all of those years led to creating what became the hidden entrepreneur, which then helped lead me into a career deep in the podcast space. But really it's about communication because you can apply it anywhere. You can apply it to your social media videos, to your emails, you know, to your sales calls, to all these stories and messaging still become relevant. So it's all encompassing. Joe: So for the entrepreneurs, again, that would be listening to my show, when you decided to do your podcast called The Hidden Entrepreneur. What was your main reasoning behind that? Josh: Great question, the reason out of the gate was I felt like I needed something to do right. I left that 10 year career running my own digital marketing agency, and I said, OK, what do I want to do with myself now? I didn't have all the answers. This is the important part. I didn't have all the answers. I just got the next answer, which I felt it clearly podcasting. And I said, I'm going to try it. I'm going to do it. I want to do it. I'm motivated to do it. And I think I'd be good at it. Meaning I think that I'll stick with it. And I think that this can really turn into something. I think that I can create this show and then around that show, parlay that into some sort of product or service in some regard that will put me on a path to success that I can live with and support myself with. That's really all I knew. And I knew that the show would give me confidence, right. Just by doing it and showing up each day, I knew that it would give me connection to each individual person. And lo and behold, it's it's it's literally has given me life. Joe: And the guests that you have on that show are entrepreneurs of all walks of life, but are Josh: Correct. Joe: So it's not that you are talking specifically to entrepreneurs who, like yourself, broke out of a shell and decided to do something. Josh: No, Joe: It's just Josh: No. Joe: It's just the name of it. It's something that speaks Josh: Correct? Joe: To your heart because that's Josh: Mm hmm. Joe: How you felt for a long time. And now it's just sort of like my show where we have great guests who are running their own businesses that have gone through the struggles are going through the struggles, have Josh: There Joe: Survived Josh: You go. Joe: 20, 20, all of those things. Josh: Absolutely, yes. Joe: Ok, cool, so then when let me ask you this question that when you are a guest, because I think all of this helps not only all the entrepreneurs that are listening, Josh: Mm hmm. Joe: That I don't have a podcast that don't go on podcasts that don't listen to whatever it might be, Josh: Right. Joe: Which is hard for you and I to understand, because, like, I was at the gym and I constantly having a podcast in my years. But when you are a guest, how do you figure out what your story is? Because you are this you led this life like I did, Josh: The. Joe: Right, with all of these things. And that's sort of like this is a selfish question, because I'm asking because Josh: Sure. Joe: If I was to be a guest on a podcast, Josh: Mm Joe: I'm Josh: Hmm. Joe: Not sure what Joe Costello would show up for that, because I don't there's so much that has happened. But it's not like I like I had Shaun Spawner on my show who summited all of the summits, like the they Josh: Right, Joe: Call Josh: Right, Joe: It the Josh: Right, Joe: I forget Josh: Right. Joe: What it's called anyhow. But he was amazing. He went to Everest, he went to the North Pole, South Pole, did all the summits. And so he has a story to tell and he has a short film that they did. There's people who come on and they have books. And so they've written a book on something very special. And Josh: Yeah, yeah. Joe: What's the story that you tell when you are on a show as a guest? Josh: The past forty six minutes will answer that. But in all seriousness, I I have over time you develop a library of stories that you have at the ready that encompass you and who you are, what you stand for, how you want to stand, why you want to stand for that, how you want to be perceived and positioned in your in your world. So I have a variety of stories that come about that I could explore based on the conversation I'm having. But they all wind up having an overarching theme, a core message, a core value, core stance that I deliver based on the hidden entrepeneur and where I've been and who I am and where I'm going. So you could learn about me so you can relate to me. So maybe you can like me enough to say, I want to I want to get to know this person more, see what else he does, Joe: Mm Josh: See Joe: Hmm. Josh: What he's about, and then we can explore each other's worlds together. So that takes a little bit of time to do, but that's sort of what we do. So if you're asking which I think you're asking, like, how would somebody like you who doesn't yet go on shows, where do you begin? Is that sort of what you're asking? Joe: Yeah, Josh: Like Joe: I mean, I Josh: Maybe Joe: Think. Josh: Right now? Everybody has a story where you you had a a life affirming or confirming incident that we can all write like I don't think I did necessarily, but I have enough of a story to make it interesting, relatable, compelling write. These are all things that are learnable skills, but they do start somewhere. Joe: All right. Josh: So you I read your website. So I know generally about you wanting growing up. You wanted to be a drummer, Joe: Mm hmm. Josh: Right, for the Stones or with the Stones. And so so broadly speaking, even if you started there with like a dream lost, never fulfilled yet, you know, where was the struggle there? I could spend five minutes and really dig into how painful did that get? What were some of the the turn how close did you get if if at all? What were some of those moments when you were behind closed doors in your own head? And then where are you today and how did it all go? Right. How did it all lead? OK, that could be a very compelling story that people can relate to. Of course, not everybody wanted to be a drummer for the Stones, but we all have our own version of that. So that's all you're tapping into, making it intriguing, making it compelling. And everybody has fascinating stories that they can put pieces together with and share them with the people who want to hear it. Joe: Yeah, that's great, I it's just that you think about it and you go and I think a lot of people feel this way, right? They're like, Josh: Nothing happened, right? Joe: My my story is not that interesting. Why should I tell it? And I don't necessarily feel that way. I've gone through a lot of iterations Josh: Right. Joe: And I have a lot of experience. And besides podcasting and our YouTube channel, you know, I run a seven figure booking agency here in Phoenix and Scottsdale. So I'm a successful entrepreneur. But again, this is the selfish thing for me is like I Josh: Yeah. Joe: Like meeting people like you and learning these kinds of things and sharing them before you. And I can help one entrepreneur out there with our show or what Josh: Yeah. Joe: You do with Cognex. That's a great thing, right? If it's just about and that's what I loved about this interview with you, is that you were very vulnerable and the way you spoke about yourself and it and it's refreshing to have someone to do that and not come and go. Oh, yeah. Well, yeah, I ran I did this and I was running these huge corporations. And then I had all this money and I figured I didn't need any more money. So I decided to start a fight or whatever. I mean, it's just it's nice to hear that you and I went sort of through the same kind of thing Josh: Mm Joe: And Josh: Hmm. Joe: It was refreshing to hear. So I appreciate you doing that. I wanted to say thank you earlier when you were doing it, but the momentum was going. But it was very, very cool that Josh: Great. Joe: You were that real about all of that stuff. So thank you. Josh: You're very welcome. Joe. Joe: So what is the cost for the August next? Josh: We have three ticket levels that you could you could explore on the site generally there between under a thousand, up to two thousand. Joe: Ok, and. Josh: Depending on how you want the experience to go. Joe: Got it and all of that up there, they click on that button and they'll have those choices there. Josh: Mm hmm. Joe: Is there a deadline? Josh: Yes, one week prior to the event, tickets, clothes, whatever, whenever you're hearing this, if it's one week prior to the very next event, tickets, clothes, because that's when we have to do the match ups and get all the information out to the attendees. Joe: What's the date and August again? Josh: August 27. Joe: Twenty seven. OK, is there anything else that I missed that you wanted to touch upon? Josh: No, you've Joe: Wow, Josh: Been thoroughly thorough. Joe: That's beautiful. OK, great. So the links that you got work for you in order for people to either contact you in regards to the hidden entrepreneur, contact you in regards to Pod Max, what's the website, you URL, all of that stuff so we can make sure and then I'll have it all in the notes anyhow. But if anybody's listening, I want to I want Josh: Mm hmm. Joe: Them to hear it. Josh: That's great. Well, the business side is Pod Max Dot CEO, and then on the personal side, which will lead you to all kinds of forks in the road that you could explore. It's Josh Carey Dotcom. Joe: Perfect. OK, well, this is been great, man, I really appreciate it. I was excited to hear about Max. I will also check out The Hidden Entrepreneur. I appreciate you coming on here and sharing this with the audience. And hopefully we'll get a bunch of people that will attend and maybe some new host and guest will come out of all of this. But I appreciate your time today, and it's very, very nice to meet you and very interesting to hear what's going on with Max. Josh: Likewise, I appreciate it greatly. Thanks so much. Joe: Thank you, man. I'll talk to you soon.

The Joe Costello Show
Tim O'Brien from The Healthy Place

The Joe Costello Show

Play Episode Listen Later Jun 30, 2021 56:01


  Tim O'Brien along with his wife Becki, have created a unique vitamin, supplement and nutrition store that is more about helping people than it is about margins and commissions. As Tim says" Souls before sales!"   It was a pleasure sitting down with Tim to learn more about The Healthy Place and what products and services they have to offer.   After Tim educated me, I'm definitely going to lean on him and his team in the future, to help me make better and more educated decisions when it comes to my health.   I hope you enjoy this episode and you walk away with at least one snippet that either helps you in your entrepreneurial journey or with you health in general.   For 30% off, please use our affiliate link as it helps us to generate a little income to produce this podcast...thx so much!   https://findyourhealthyplace.com/?rfsn=5901087.08b0f6   Thanks for listening!   Joe   Tim O'Brien Founder - The Healthy Place Website: https://findyourhealthyplace.com/ Website: https://livelyvitaminco.com/ Website: https://wildtheory.com/ Instagram: https://www.instagram.com/applewellness/ Facebook: https://www.facebook.com/thehealthyplaceTHP YouTube: https://www.youtube.com/channel/UCYQVVKB58mGd_YgxAL0LMGA/videos LinkedIn: https://www.linkedin.com/company/apple-wellness-the-healthy-place/about/ Email: tim@findyourhealthyplace.com Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.libsyn.com Subscribe, Rate & Review: I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to: https://joecostelloglobal.lybsyn.com Follow Joe: https://linktr.ee/joecostello Transcript Tim: My guest today is Tim O'Brien, the founder of The Healthy Place, an e-commerce store for healthy products. They also have for brick and mortar locations, one in Madison, Wisconsin, one in Fitchburg, Wisconsin, one in Middleton, Wisconsin, and one in Sun Prairie, Wisconsin. Tim's passion is health and wellness, and he has spent the last decade sharing his passion with the world on a personal side. He is married to Becky and together they have three children. In this conversation with Tim, I expressed how much health and wellness is important to myself and how convoluted the marketplace is and very difficult to trust who you buy from and which products you buy. I was excited to have Tim on the show so that I could learn more about the difference in what the healthy place offers over buying products at other places like GNC, Walgreens, the vitamin shop and obviously Amazon.com. So sit back and listen to the education that we get from Tim on how to buy better and healthier products in the health and wellness space. Joe: Hey, Tim, welcome to the show. Tim: Hey, hey, how you doing, buddy? Joe: I'm doing great, man, happy, what is it? Wednesday, I lost track, I just got Tim: Yeah, Joe: Back into Tim: It's Joe: Town. Tim: Hump hump day of the week, man, and Joe: Beautiful. Tim: I'm doing this to say thank you for giving me a chance to be on your show. Man, this is cool. Joe: Yeah, no, that's my pleasure, as as I mentioned before, we actually started this that I have, you know, I know that literally health is everything. Like you can have everything in the world that you ever, ever wanted. And without your health, it's just, you know, it's it's unfortunate because I know people go through things that had nothing to do with them not being healthy. They just got delivered a bad hand, Tim: Yahav. Joe: You know, so that's a different story. But those of us Tim: Jerome. Joe: That can make sure we stay healthy, there are things that we can do. But before we get into all of that, and as a lot of my listeners for the podcast and the viewers of a YouTube channel, now, I'd like to get the back story because a lot of the people who listen to the show are my hope is that these entrepreneurial spirits that are trying to figure out what they want to do are there in the midst of doing it. And they they need ideas from people that are being successful doing it. So I would like to go back as far as you're willing to go back to allow myself and the viewers to understand how you got into what you're doing today. What Tim: I love Joe: For? Tim: To share that. Yeah. Joe: Yeah, like what triggered the fact that you're now in this world of, you know, Tim: Supplements, Joe: The health world Tim: Natural Joe: And. Tim: Alternatives, Joe: Yeah, Tim: Yeah. Joe: Yeah, yeah. So I'd love to hear that and then we'll get in, Tim: I'd love to. It's Joe: Ok. Tim: A cool story, I kind of like telling it because it's just cool to see how things can work together to sort of bring you to the place that you're at. And it's sort of confirmation in some different ways. So I love to share it, man. I'd be happy to do so when my when I was like five or six years old, my mom fought through thyroid cancer. And I remember her like going through the chemo radiation and losing the hair, like seeing her at the hospital. I have four siblings, so just a lot of fear in the home, worried about mom. And then I remember this time where she came home and she was sort of like excited and sort of like filled with a little bit of hope because she had gone into this health food store in a little town called Muskego, Wisconsin, just this tiny little town that had a health food store. And she talked to this guy named John for like an hour and a half. And John shared with her all these natural alternatives that had some good science and some good reason to believe that it could help her in her process recovery, treatment of the thyroid cancer. And so she would like go in there like once a week, whether it was a refill for some supplements or whether it was some more education, because there was a lot of literature that this guy handed out as well, like books that he gave her. Tim: And I would go with her. And through this whole process, she she was benefited quite a bit from these natural alternatives that helped her and her recovery process. So I remember hearing about that as a little guy. And through that process, she got a job as a manager at this health food store. And she was there all the time, 40, 50 hours a week kind of thing. And us kids were home schooled. So we would go with mom often sitting in this back room of this health food store, doing our math problems, doing our schoolwork. And I watched over the years these testimonies produced of people coming in with chronic pain, depression, sleep issues, other folks that battled cancer, that my mom held their hand through the process, educating them. And so that was like my whole upbringing. And it really got into my DNA that there is natural alternatives out there that work and the general population just doesn't know about them, because the way our medical system set up pharmaceutical medications, you know, we have some of the best doctors in the world. And, you know, you go to them, you get a prescription, you don't Joe: Mm Tim: Necessarily Joe: Hmm. Tim: Get a natural alternative recommendation. So I got a bit passionate about that in my late teen years. So I got a job at a GNC franchise and worked for the owner who invited me to move out to Madison, Wisconsin, to manage some of his GNC stores after a little while. So I was like, man, OK, my boss thinks I'm good at this. I really enjoy helping people, encouraging people. I just happen to like like people in general. So it was it was sort of a fit. Like I got this passion for this natural alternative thing. I feel like I'm helping people. I'm impacting the world. I want to make a difference. And I was managing these GNC franchises in Madison, Wisconsin. Well, there was a corporate takeover, dude, in twenty seven where everybody lost their jobs, like corporate took over these six franchises that my boss owned. And it was like, OMG, like, what am I going to do now? And so I determined, you know, hey, I want to do something. And that's natural alternative space. I have always been sort of passionate about business in general. I had like three paper routes when I was 11 and I hired my sisters for a quarter a day. I was making bank Joe: Right. Tim: And I was so I tried a network marketing business for a little while that was suppliments and that was brutal. Multi-level marketing can be really hard. And I was like, OK, I don't want to go that route. Maybe I should open my own health food store. And at that time I had just met dating, married Becky, my wife. So we're prayerfully like thinking through this. Should we do this, put the house on the line, open up our own health food store and risk everything. And we decided to take the plunge. So our first brick and mortar store, 2010, was in a town called Fitchburg, Wisconsin, which is right outside of Madison, Wisconsin. And then twenty fifteen, it was store number two in the Madison area and then twenty nineteen with stores three and four. So that was going well. We then moved towards ecommerce where like, hey, if we're making an impact and a difference here locally, which is really exciting, we really enjoy it together. We work as a team like let's let's hit the nation. That sounds fun. And so we started to see a little bit of success there, especially ones covid hit of last year because our in-store traffic took a hit. So our pivot as a company, like a lot of smart companies, was, let's focus on e-commerce. And so that really helped us talk about a blessing in disguise, really helped Joe: Mm hmm. Tim: Us figure out the e-commerce space a little bit. So really exciting. In December, January of this last year, we got our little warehouse. So now we have a warehouse in Madison and we're shipping packages out all over the United States. And that's the story. And the mission is about impacting, empowering and educating as many people as we can to just like, learn, grow and create a lifelong foundation of health and wellness. It's like a fanning a flame. You know, somebody already just has a little spark. You know, they're putting the cigarette out outside my store, throwing the McDonald's bag in the trash and like, I need something for my chronic pain all the way up to the health enthusiasts. And no matter what, to me, it's so encouraging to just fan the flame of someone's health and wellness. Because you said it earlier, life is a gift and people need to remember that. Joe: Yeah, and so have you always, based on the background of sitting in that store with your mother and seeing what the proper nutrition and supplements and things like that did for her? Did you always pretty much lead a healthy lifestyle? Tim: Funny is Joe: Don't Tim: No. Joe: Tell me you're a fast food junkie. Tim: No, I wasn't. Yeah, I was, and I always felt very bad if I was going through that fast food line, but my diet really didn't really take a huge impact until I married Becky. So for whatever reason, I would I knew a lot about supplements, really passionate about natural alternatives. But I was I was not the guy who is eating ultra clean, raw, organic, clean. I was like, OK, I'm going to eat a basic diet cleaner than most know what kind of excuses that. And then I'd lean on supplements for nutrition. And so when I met Vecchi, this is two thousand eight, she's like, wow, this doesn't even make sense. Like you can't go eat at pizza, frozen pizza, you know, and then go take your supplements. And so she really convicted me. And it's been a pretty cool team because that's always been her passion is very clean eating. And she didn't understand or know about the supplement natural alternative thing. And my passion has always been for my mom's story of natural alternatives and supplements can change a life. And so then getting married and working together as a team to educate Madison and our social media platforms and on YouTube, it's like there has to be a marriage between nutritional deficiencies, making sure we don't have them eating well, eating clean exercise. So we should work together. And I've improved since meeting, Becky. Joe: Wow, so are you actually telling me that she was already before you guys even met, she was interested in this sort of thing or she was she was Tim: Yeah. Joe: A healthy, clean eating person. Tim: Yes, she was Joe: Wow. Tim: A health enthusiast, yeah, I mean, just health, and that's part of what drew me to her is like, man, this girl's got discipline, like extreme self-control. For me, that's been an area of struggle, just like in general, like discipline waking up early. I'm the guy that would, before I met Becky, like stay up till one and then sleep till nine till I had to quit, get to work. And, you know, he's like, man, we got some work to do. But, yeah, she sure inspired me and a few of those areas. Joe: Ok, so without prying too deeply then, because now you're really piqued, my interest is the fact that you guys are lying so well. How did you meet? Tim: Yeah, so we there was like a young adults meeting through it, through church called Metro Believers Church in Madison, Wisconsin, you know, I'm a Christian, she's a Christian, and in my early twenties, it was like, hey, I really enjoyed finding people like minded. And I think in the back of my mind, I'm like, I'm searching for a life, you know? So I would go to a couple of these different churches, young adult ministry meetings, whatever, 20 something groups. And we just started hanging out. So it was like a group of like six or seven of us. And I was about six months in. I pulled her aside one day after church and said, I still laugh at what I said. I said, Hey, Becky, I've taken a shining to you and I'd like to continue on to marriage. And she's like, oh my gosh. Like, OK, I'm kind of like you, too. It was weird way to ask, but OK. Joe: It's also that's Tim: Yeah, Joe: Old school, Tim: I don't do it right. Oh, yeah. Joe: But also Tim: Oh. Joe: All right, cool, well, that's that's great. So how did you change or why did you change the name from Apple Wellness to the healthy place? Tim: Yeah, really good question, you know, Apple Wellness was a good name, you know, in the sense of like Apple a day keeps the doctor away and we just had too many people thinking we are the Mac Apple store. So I literally get calls, at least weekly, Joe: Wow, Tim: And Joe: That's so subtle. Tim: At least I know, and then I'd see my employee across the way and he'd be talking to somebody and he'd be like, well, try turning the phone off and then turn it back on, you know? Joe: Oh, my Tim: So Joe: God. Tim: Especially after he got the e commerce thing going, I started, Becky, as the graphic designer and kind of branding expert within our company for a long time. She's like the Apple word's taken. That's just gone. And I should have consulted with her a little bit more before we chose the name. Joe: Uh huh. Tim: And so she's always kind of wanted it changed. But then I found out that Apple, the company, has an Apple wellness program Joe: Oh, Tim: For employees Joe: Of. Tim: Like it's trademarked. I mean, so I figured it was just a matter of time before I end up getting some sort of litigation letter from Joe: Yeah, Tim: Apple. Joe: Yeah, well, OK, that's interesting. Tim: Yeah. Joe: So you stole one of my questions, but it was perfect because it was actually in line with what you were talking about. But I want to go back to it because Tim: Sure. Joe: It's important, again, for like the entrepreneurs that are listening to this and what we just went through with covid, you talked about shifting. They're not shifting, but literally adding to what you've already established. Right. So you were Tim: You. Joe: You were a retail store, people walking in foot traffic. That's what you counted on to make a living. Right. So when covid hit, obviously, everyone stayed home. So there goes all the foot traffic. So did you already have the e commerce portion of this set up before this happened when you said it was a blessing in disguise? Were you already ready to go the moment like that? Tim: Really Joe: The Tim: Good. Joe: You know, Tim: Yes, Joe: The doors. Tim: Yes and no, I Joe: Ok. Tim: Mean, it's like we had the website, we had the ability to set up ship products out. We had maybe three hundred out of the four thousand products that we have in our stores on the site. So we were ready in certain ways and then not ready for a lot of things. And we had no idea on the digital side of marketing, Google ads, Facebook ads, SEO optimization, email marketing. We hadn't done text messaging. We hadn't done very much of that, very basic and each one of those areas. So it was all of a sudden like pedal to the metal once March hit, where it was like, OK, we have some of these basic fundamentals. And I always tell a business owner like you, if you don't already, you have to have a website like I mean, covid showed us all that pretty quick, like Joe: Yeah. Tim: Have to have a website and you can get free ones are very inexpensive. Wick's dotcom. I'll tell business owners, like even if you're not a photographer, don't don't try to be don't don't get some real basic a white posterboard. Put the product right over it. Just take a picture by a window. Don't don't try to get real clever with it because Vecchi tells me that it can end up looking really bad if Joe: Mm hmm. Tim: You're trying to do so. Basic things like get a website, get a social media, you know, ask your grandkid if you don't know how to set one up sort of thing. So we had all the basics, but then for us it was like, OK. Let's get live chat on our website, because we are one of our difference makers, is consultations Joe: Huh? Tim: With we change lives because we ask questions and we figure out the best products and forms and brands for their specific issues, problems. So let's get a live chat on our website so we can have those conversations. Let's get free shipping. Let's make it really easy. Even if we lose money on maybe one out of five orders, let's just like make it easy, reduce friction in any way that we can. Let's get on Google ads and Facebook ads. So we hired a digital agency for that and it's pretty cool. A year later, we had 30 percent overnight of our foot traffic was just gone once we were able to stay open, thankfully. But that 30 percent in one year's time, we were able to build that on our e-commerce platforms. We were able to replace what was lost. So I'm still head spinning, so thankful for my team able to bring that together because it's quite the operation and it takes a lot of work. Joe: Yeah, did you did you keep the stores open themselves or did you? Tim: We did Joe: You did OK. Tim: Not. Joe: Ok, Tim: We Joe: And Tim: Were Joe: Was it. Tim: Scrambling in the beginning of if we could be classified as essential or not, and my belief is that the immune system is something that can really be strengthened. I'm more passionate about terrain versus the germs so we can strengthen our terrain, strengthen our immune systems, both defense and offense. I mean, there's incredible science behind simple nutrients like sand, mucus from elderberry. The University of Sydney showing the prevention which with elderberry prevention of viruses entering the cell. I mean, it's some pretty cool science. So at the beginning of the covid thing, it was like, OK, I'm not going to tell anybody I can cure or prevent Joe: Mm hmm. Tim: Whatever, but I'm sure as heck going to yell it from the rooftop that you can strengthen your immune system and a strong immune system. Strong health is the best defense against any disease, virus, sickness anywhere. So I got pretty passionate about that a year ago. Joe: Cool. Yeah, that's great. So I'm normally pretty good at not bouncing around, but in this case, I want to go back to when you decided to do this. You know, obviously when when someone gets released from a corporate environment and they're like, oh, my gosh, I don't have control over my own destiny because these people Tim: The. Joe: Just literally rip the rug out from underneath me, which is another thing that a lot of entrepreneurs know because this is how they got to where they are there that happen to them. Like I'm not letting someone else dictate how my life is going to turn out. Right. So Tim: Yeah. Joe: But what's really crazy is I don't know if it if in Wisconsin or the places where you have these stores, obviously we know that you already brought it up at GNC is a big brand around the country. There's also where we are. There's the vitamin store. Right. Are the stuff that one of those Tim: Yeah, Joe: Is a vitamin Tim: Yeah, Joe: Shopper. Tim: Yeah. Joe: So there's a lot of these places. So it's almost like you saying you and Becky going, oh, yeah, we're going to create the next pizza delivery like pizza Tim: Now, Joe: Delivery Tim: There's already Joe: Franchise. Tim: 10 right around Joe: Yeah, Tim: The corner, Joe: Right. Tim: So let's see number 11, yeah. Joe: Right. It's we're going to be the next Pizza Hut or Papa John's or whatever. It's just like that that industry Tim: Yes, Joe: That's it takes a lot Tim: It's Joe: Of guts. Tim: So competitive. Joe: Yeah. So when you thought about it, as all entrepreneurs, do, we always come up with these ideas and then we sometimes will kill our own ideas without our spouse or partner or someone will say they'll be the sensible one and say Tim: Right, Joe: That's Tim: Right, Joe: Never Tim: Yeah. Joe: Right. But then you have all these outside influences of of friends and things. And, you know, at any moment, if you would have said, hey, we're thinking of opening up a vitamin supplement, healthy sort of Tim: John. Joe: That people would look at you. But what about all of these major brands? So tell me about how you got over the hump to make to pull the trigger. Tim: Yeah, do that's such a good question and, you know, to identify and I had some friends who opened a coffee shop, you know, and a year later, you know, the coffee shops not doing so well is unfortunate with covid timing and everything. And it's like the supplement thing where you, like, hear this and you're like, oh, I don't know, you know, I wish him well, but I don't know if that's going to work because it's just like there's a hundred of them, you know. Joe: Right. Tim: So I think for me what happened was I worked for GNC for, I don't know, five years. And you start to see good stuff. You start to see bad stuff, you start to see their model. They were purchased by China a while back. So, OK, it's all sourced from China. Forms of nutrients are in their synthetic forms or not so absorbable forms. And you start to learn like, OK, a better product would help this person more than this form of curcumin that's not absorbing into their system from China or wherever, you know, so you start to see where you could make a difference and you sort of start to see your difference makers. So in the supplement world, there's two veins of supplement stores. There's the type of stores that are all about muscle gain and weight loss, you know, weight loss, thermogenic high caffeine, ephedra, and then trim and tracks Hydroxycut. And a lot of that isn't super healthy for Joe: Hmm. Tim: People to be taking steroids or pro hormones, you know, not super healthy. So that's like one vein of supplement stores. And then there's another vein of supplement stores that just they sourced from China. They use synthetic nutrients. It's a little bit more about margin and profit than it is about quality and making a difference. And so that is something I realized pretty early on. And there's not too many supplement health food stores that have a lot of knowledge where you walk in. And there's not just like a high schooler selling the huge jug of protein because it gets a two dollar commission on it, you know. Joe: Yes, I do know. Tim: Yeah, yeah. And there's just not a lot of those out there. So then all of a sudden starting to dream about, you know, originating from my mom's story where somebody really helped her out, where I can really make a difference, because if I open my own stores or store at the time, I can bring in some of the best brands in the world. And pretty quick, in any industry, you find out, good, better, best. And I want to be in that best category. And all of a sudden you're working with some of the best brands in the world and you have the knowledge to be a to guide somebody with Crohn's disease. Let's just Joe: Mm hmm. Tim: Talk over asthma on natural alternatives that really work. And if you impact them, if you help them, if you change their life a little bit for the better, now they're going to keep coming back forever. And they tell everybody they know because there's such a vacuum, such a desperate need in this day and age for knowledgeable resources in the natural alternative space. We have a ton of medical, we have a ton of pharmaceutical drugs. We just don't have information coming to the general public on natural alternatives that work. And I get to be that resource in Madison, Wisconsin. So I think that's why we have done well in our brick and mortar stores. And I think that's probably why our attention is higher for our e-commerce is because of that customer service, that knowledgeable resource, that going the extra mile to impact their lives. And I'll give you an example. A lady might hit our live chat from California and say, hey, I'm looking for a V12. Can you give me a recommendation? And then we might ask the question like, absolutely. Here's a couple of options. Do you mind if I ask while you're while you're taking V12? Oh, my doctor said because I have really low energy, I have nerve pain and my mental clarity and focus, I get like foggy brain all the time. So then all of a sudden we say, awesome, OK, I'm actually going to encourage the method in form of V12 because it absorbs much better than this sign form that I first sent you, because I really want you to feel the difference. And since you're feeling fatigued, a little brain fog, I'd love for you to consider this adrenal boost product that has adapted genic herbs in there, like Atul Gawande wrote Rodeo Mocca because ninety two percent of fatigue is related to your adrenal glands. So then you recommend that product. They get it. And this lady two months later goes, Oh my gosh, my energy is a little better, my focus is better, my stress is reduced, which I didn't even bring up. But that adrenal product helps with stress, too, I guess. Joe: Mm hmm. Tim: Then all of a sudden they're leaving a review like, wow, that wellness consultant, Ryan, he's one of our our wellness consultants. He really helped me out. And so it's a very different sort of dynamic than a typical GNC store, health food store, vitamin shop type experience. They're Joe: Huh? Tim: All great stores. I mean, I love Natural. Anywhere you can get them. So that was like our difference maker and that's why I thought I could make a go out of it. Joe: Ok, cool. I have so much to ask you now, because you keep opening up like Kansas. So. So before again, I, I want this stuff to be helpful for the entrepreneur. And then then we're going to help the consumers that listen to this. So how when you decided on doing this and said, OK, and let's pull the trigger, how did you figure out the place where you're going to open up store number one, that you do all that extensive, Tim: Oh, Joe: You know, Tim: Good question, yes. Joe: Traffic, you know, what's going to pop up around us? What Tim: You know, Joe: Is, you Tim: Find Joe: Know? Tim: Find a good broker, a real estate broker that can find you spaces. So I had a guy named Kent in Madison, Wisconsin, and he you don't have to pay these guys. You know, it's the landlord that pays them. Joe: Right. Tim: And so as a young entrepreneur about to, like, risk everything you had, that was really important for me to know. Like, I I still am shocked by that. Like, you can just call one of these guys, try to find a reputable one, find somebody that trusts that can make a good referral. And they do all this scouting for you. They send you all the reports and you don't pay a penny. You know, I am a bottom line at the end or something, but you don't pay a penny for this. They get paid from the landlord. So he was bringing me idea after idea after idea. And he had been in the industry for a long time. So he knew the city really, really well. And he was able to guide me through, hey, this has a really strong anchor. The anchor in Fitchburg was Joe: Yeah, Tim: Target. Joe: Yeah. Tim: It was a super, super target. So I was like, oh, learning about anchors are important, Joe: Yeah. Tim: Really important. So I tell you, if you're listening, like, look for some strong anchors, because that's really going to help you for traffic. Joe: And just for the listeners and the people that don't like it, like when they talk about like a small strip mall or a plaza or something like that or even in a in a mall small, an anchor is an anchor store. That is when they go in, there's a really good chance they're not going away like they are a big thing like Target or Wal-Mart Tim: Exactly. Joe: Or Nordstrom or whatever. So I just wanted to clear that up because I didn't know at one point. But I know when you're looking at retail space like that, you want to be surrounded by an anchor store that has been around forever and is not going away. Tim: Yes, and just to further drive that point home, we have for brick and mortar stores and the one that's doing like the worst is the one that doesn't have a strong anchor by it. So just get one with a strong anchor and then look at price points and definitely negotiate. So we had that broker that was able to help us out. He was able to negotiate tenant improvement. Our big deal when you're opening a store, because you you could use money towards the build out and you can ask landlords for that. So if, again, if you have a good broker and you tell them your story, what you're trying to build out, a lot of times you can get a number of things paid for by the landlord because they're about to ask you to sign a five year lease. Joe: Mm hmm. OK. So at this point, the four locations that you have, you are in a lease situation Tim: Yes, all for you Joe: At Tim: And I've Joe: Any Tim: Looked into purchasing. Joe: Ok, so there is yeah, that's my question. It's like when do you pull the trigger on saying, OK, I want to actually start to own some of these buildings are these spaces. And that's a huge job. That's that's really put your Tim: Yeah, Joe: Neck out. Right. Tim: So in all four, I looked at them and each one has a different story, the first one I looked into though, at the Fitchburg location, the buildings were not for sale. So I was like, all this is so cool. So I looked into it and it was seven million dollars for these two buildings because it's in a strong anchor, high traffic area. So it is difficult to buy the spot by the strong anchor Joe: Maha. Tim: Because it really it would have been risking I couldn't I couldn't do it. But then the idea next idea is like, well, maybe I should move locations now that my name is established, if I can buy a strip mall down the way or something like that. So that Joe: Te. Tim: Idea is in the back of my head. But then you move away from the strong anchors. That's Joe: Right. Tim: Been called me back. Joe: Right, cool. See, that was perfect because that was like all of the things that you have to consider and Tim: Right. Joe: It's yeah, that's a tough decision, man. That's a lot of money. Tim: It is, Joe: Yeah. Tim: Dude, I Joe: Yeah. Tim: Know and I have a buddy who owns a dentistry office and he Joe: We. Tim: Was able to purchase his location and it's awesome. He's about to pay it off after ten years. And I'm super excited. So Joe: Yeah. Tim: It is depends on the situation. Joe: Yeah, OK, so now let's get into what I consider in the world that you're in and I'm a huge fan of natural like I is, it's a there's a difference between naturopathic or is. Right. Is that pronounced correctly? Is that they say it Tim: Yeah, Joe: Now Tim: Naturopathic Joe: Or Tim: Medicine Joe: Or homoeopathic. Tim: Homoeopathy yupp homoeopathy Joe: Right. OK. Tim: And integrative medicine is kind of like medical and naturopathy together. Joe: Yep, yep, so Joel and my life partner went through a battle of breast cancer where she had some lymph nodes and luckily, you know, Tim: Giese. Joe: Through through chemo and radiation, she came out on the other side and everything's great. But Tim: Good. Joe: The big thing that she also had was she had a naturopathic doctor Tim: Hmm. Joe: That went that came from the cancer world. So the advantages is that he understood the treatment that was happening with the normal medicine and he knew what to give her to not take away from what she was doing with the chemo and radiation, but at the same time helped to keep her system built up and not offset any of that. So there was a perfect marriage between the two. And Tim: That's. Joe: I swear to this day, I feel like that was the reason that she was Tim: Wow. Joe: Fairly, fairly normal through the process, like we were doing 90 X and she was in the middle Tim: That's Joe: Of chemo Tim: All Joe: And radiation. Tim: Right. Joe: Yeah, it was ridiculous. So Tim: Dude, that's Joe: So Tim: Awesome. Joe: I'm a big fan of the naturopathic side of things and natural remedies and all of that. So Tim: Not the. Joe: So that's why this was a cool episode for me, because it's hard to talk with somebody that is in this niche that you're in without it being the big stores. And so my first question, because I got so many of them Tim: I Joe: First question and the first Tim: Love Joe: Question Tim: It. Joe: Is how do you become with all of the misinformation that's out Tim: The. Joe: In the world? Right. And this is what confuses all of us as consumers. You go to Amazon and you say, I need a B vitamin of Tim: Right Joe: Some B supplement. Tim: Now. Joe: And the habit is you you click on the five star rating, things that you want. You think that's going to be the best because people are taking their time to read it, which Tim: Yeah. Joe: I think there's enough Tim: What Joe: Conversation Tim: Did he. Joe: In the world that says that's not necessarily true. Tim: Right. Joe: And then you literally are just like throwing darts at a dartboard with Tim: I Joe: A blindfold Tim: Know that, Joe: On. So. Tim: I know. Joe: So how do you get through all the misinformation that you feel so confident enough that when you when you suggest something to a client that you haven't been taken advantage of by the misinformation, like Tim: Yeah, Joe: How do you get through Tim: Because. Joe: All of that stuff? Tim: A great question and even the reviews, if a company markets really well and they're incredible at marketing, they can get a billion, five star reviews and they can be like synthetic sourced from China, not NSF certification. So over the years, you start to be able to read between the lines and you start to be able to say, hey, this is B.S. over here. This is marketing. Only not met with quality. And like any industry, you start to learn the good, better and best. So there's a few things. So first and foremost, I think everybody needs somebody on their team. Like your wife has that naturopathic doctor now as a resource that she can probably shoot an email to or make an appointment with and ask these questions. I think everybody needs somebody on their team because most people have a medical doctor and beyond that and they might have a pharmacist. Right. And they're good to have on your team, but we need somebody with. Expertise, knowledge, history in the supplement space, because even a naturopathic doctor, they know way more than I do about the human body, about maybe. Yeah, just just how to treat maybe disease. Tim: Right. When you're in the supplement space, there is you get to deal with hundreds and hundreds of brands. And over the decades, which I think 18 years now, you start to find out what brands are good and trustworthy and which ones aren't because the FDA doesn't regulate all the supplements. So you can say whatever you want on the label about me, your romantic drink here, but you can say whatever you want and. FDA isn't going to necessarily nail you if you're lying, if your label is making false label claims and this happens, there was a clinic in Milwaukee, Wisconsin, where not real clinical, but where they took products from a number of stores, GNC, Walgreens, Wal-Mart and Target. They took supplements from those four stores and then they had them tested at Chavannes and it was Chavannes Labs. And all four of them had discrepancies with what the label said and what was actually in the capsule. And one product was an Asia product, which is good for the immune system. And it had zero percent echinacea in there and a little bit of garlic like Joe: Oh, Tim: What Joe: My Tim: The H Joe: Gosh. Tim: Now? Yeah. So that exactly what you said. It's shooting in the dark. Is it marketing that's producing these reviews? Is it quality? Is it going to help me? Is it a waste of my money? Am I being sold. Right. So there's all those questions and the privilege that I'm so thankful for is just being submersed in the supplement world long enough. You learn a couple of things. So sourcing is vital. Where is it coming from? There is vitamin C that you can get our China, that there's some concerns there with chemicals, heavy metals, arsenic, or you can get vitamin C from Scallan, which happens to have a really rich ascorbic acid form of vitamin C clean, great place to source it from. So where a product is sourced from is really important. Number two is does the brand have NSF certification? So NZDF C, GMP grade facilities that they work with, which they're paying money to NSF to a third party test and ensure that they're having all of these practices that are healthy for supplements, they're sourcing their cleanliness. Has it been tested? Is it clean? Those questions? And NSF doesn't care about the company. They care about the reputation. So there sure as heck going to just that's a good certification is trusted in the supplement world to ensure that what's on the label is actually in the product. Tim: So sourcing No. One, NSF, GMP certification, number two and number three, which all of these take some sort of expertise or having somebody on your your team. You know, that's why I say to have somebody on your team first. But number three is the forms of nutrients. So E 12, which I gave the example earlier, Psion Kabalan and B 12 is synthetic. So your body has to convert it and you lose a lot of the content in that conversion versus a methyl form B 12, which is the natural form that your body absorbs really, really well. So four items, number one and two, saucing and NSF, you can have a very clean form of sign Kabalan and B 12 source, very clean. You could have NSF facility ensuring that you have that 50 micrograms of cyanide Kabalan B 12 in the B complex. But then it would take some expertise to know, like, OK, that's fine, that's good. But we would prefer a methyl form would be 12 because it absorbs so much better Joe: Mr.. Tim: And every single nutrient. This blows my mind because every single nutrient has good, better, best. You know, whether you're talking about vitamin C, ascorbic acid, sodium ascorbic calcium ascorbic B 12, which I'm talking about the six paroxetine hydrochloride versus toxified phosphate turmeric. You can get the the turmeric that colors your Indian curry orange and you can take that capsule and it's good for you. It just doesn't do very much for inflammation unless you extract the curcumin out and then even that doesn't have a good absorption rate. So blending it with the turmeric, essential oils and the sunflower lecithin launch the absorption where it's literally absorbing two hundred to five hundred times better than the turmeric Indian spice that you started with. And that's the form of ninety five. That's the form that Baylor University of Texas is using to literally treat cancer and chronic pain with incredible results. I mean, the cancer story is very cool. Inflammation is the root of the root system of cancer. Joe: Mm, huh. Tim: So that's an example where it's like oh man form so saucing, NZDF, GMP, great facility forms of nutrients. Those are the big three that you want to look at to know quality. Right. So that's what I always tell somebody, find somebody that you can trust. So for you guys, it might be your your doctor that your wife worked with for in Madison, Wisconsin. A lot of people trust the healthy place to help guide them, know we don't do commission so that we can just recommend what's best so Joe: Right. Tim: People can use that live chat feature on our website to just ask those questions. But find a health food store maybe that is trustworthy in your home town, that you do meet a job like my mom met John Joe: Mm hmm. Tim: Or find a store like mine that you can connect with and you can go to when health strikes, health problems strike because everybody has some conditions, some problem, something, even if it's something as simple as fatigue, you know. Ninety two percent of fatigue is related to your adrenal glands. You can strengthen your adrenal glands and you can have more vibrant energy every day. And people just don't know that. So they keep reaching for the coffee or the soda or the caffeine pills, what have you. So get somebody on your team that you can trust. Joe: So go. So you said at one point in this conversation that do you have over 4000 Tim: Products, yeah. Joe: Excuse now, right? OK, so let's just take that as an example. It's a full time job for someone like you to be the Tim: Yes. Joe: Gatekeeper Tim: Yeah. Joe: Of your of the healthy place. You have to be the gatekeeper to say, yes, this comes into our door and gets put on ourselves or in our e-commerce store or Tim: The. Joe: No, this doesn't meet the criteria. So to me, it feels like it's continuing education and literally a full time job for whoever that person. Let's just say it's you at the moment that Tim: Yeah. Joe: Is the person that says yay or nay on these products. So it's just mind boggling what is out there and what you have to do to sort of educate yourself to to say, yes, this makes the cut, not only doesn't make the cut, but it's in a product. It's not a product and not a C product, you Tim: Yeah, Joe: Know what I mean? Tim: You're Joe: So. Tim: Absolutely right. And it's like reading a book, though, you don't want to minimize what I do, it's like it's not hard for you to read English, you know, after you've learned it. But if you're learning a new language, it looks like totally confusing. Overwhelming can take me forever to learn this language. And it might take some years to learn it. Once you have that language mastered, it's just like reading a book, you know, Joe: Yeah. Tim: You just check the boxes, right. OK, where is the source from NSF? GMP, what's the forms of these nutrients? Because you start to learn and then you have experts that you follow. A lot of people smarter than me that I follow. Dr. X, Dr. While, Dr. Whitaker, Dr. Northrup. And you start Terry Lambrew and you start to follow these gurus in the southern industry that have been there for 40 years, that know so much more than you. And you're reading their literature, listening to their podcasts. They're the symposiums around the planet that are going on for this breakthrough, that breakthrough. You get the subscriptions right to the. So I just tell everyone, get plugged in at least where you're getting encouraged on a regular basis to own your health, build your terrane strength in your health and all the ways that you can inspire yourself on a regular basis and then get somebody on your team that you can trust to help guide you in the space, because it is a new language, right? Joe: It's nuts, it's just it's so frustrating. Did a three month vegan plan Tim: Nice. Joe: Because Tim: Yeah. Joe: I'm not vegan, but I loved it like it was good for me. But I Tim: Yeah. Joe: Actually I actually, in the process, lost a lot of muscle mass because I was also going always going to the gym. But all of a sudden I started to shrink both, Tim: Right, Joe: You Tim: Like, Joe: Know. Tim: No. Joe: So, yes, I'm like, I'm doing all this hard work. And it's just I needed to get on a B 12 vitamin of something. And it's funny because I don't even know what I'm taking, but it's something that I got from Amazon and Tim: Your Joe: I Tim: I can do it. I've been assigned to general Joe: I'm sure. Tim: Check that Joe: So Tim: After Joe: I'm going Tim: The program. Joe: To look when yeah. When we're done, I'm going to look and then I'm going to and then I'm going to say I need a direct line to Tim in Tim: There Joe: The Tim: We Joe: Chat Tim: Go. Joe: Room. Tim: Yeah. Joe: So have you ever thought of franchises? Tim: I have, I Joe: And Tim: Have. Joe: And I'm Tim: You Joe: Just interested you don't have to you don't have to Tim: Know, Joe: Say to. Tim: I'm so I am very interested and I have been kicking that ball around in my head for a long time because we are we specialize in education, right. So you got to find ways to duplicate yourself in a franchise. And so we created a three month curriculum that our wellness consultants have to go through. They have to pass quizzes and tests and they have to get certifications from this company, this company and MKB certification, all the enzyme certifications to understand the industry, know what questions to ask customers and how to make recommendations. So that's one of the hardest things that we've done that would make it more easy to duplicate the knowledge side of our company and our brand. And as I've talked to people who have created franchises, the the legal side to it is one hurdle and then enforcing them to actually maintain your model as representing the healthy place. What we have created is the two big unknowns for me as far as difficulty. So then the choice came, should we just keep adding brick and mortars in our own territory? Right, right. In the Madison area and then put all of our energy and focus into our brands that we've created and our website because there's infinite you can do in the business world and you kind Joe: Mm Tim: Of Joe: Hmm. Tim: Have to choose. Joe: Yeah. Tim: So we decided to park the franchise idea for now and really go after lively vitamin CO. This is one of the brands that have been borne out of our brick and mortar stores. So now we're selling that to other health food stores around the country. And the number two is build find your healthy place dotcom, because just like Amazon is a freakin mammoth, there's so much opportunity to impact and power and educate everything that I'm passionate about on that website. So currently with four kids, we are chilling on the franchise idea. But I think it's brilliant because there's not there's not the option out there, which is why it keeps coming back to me Joe: Yeah, Tim: Like Joe: Yeah. Tim: There's not that many health food stores out there that really care. Soulsby for sales. You know, as one of my Joe: Mm Tim: Saying Joe: Hmm. Tim: That, Joe: I Tim: I really Joe: Love that, by the way, I love that. Tim: Thank you. Thank you. There is a time I was praying and it was like not I it going to make my friggin mortgage. When I first opened the store, I was praying to God for sales and I was like, God to declare bankruptcy here is brutal. And it was like an arrow is like, do you care about their soul as much as you care about the sales? Joe: Yeah. Tim: And it was kind of striking. So, yeah, there's not that many stores out there that really care about the human that have knowledge to help guide them and a model that works to help people, you know. So it's still an idea that keeps coming back to me. So Joe: Right. Tim: We'll see. Joe: Yeah, well, good luck if it happens, I'm sure it'll be great. Tim: Thank you. You see one popping up next door, you'll know where to get your V12. Joe: There you go. So you hit upon this a moment ago with the whole franchising thing of how to actually create this template and create a strict thing where where the people that are talking to your customers are very educated and they're giving the right information and asking the right questions. So how have you done that with the people that are at your current stores and how have you done that with the people that are on the other end of the chat? When somebody files in to ask these questions, Tim: Yeah, so. Joe: How do you get something like when is somebody OK? You're ready to take a call, you're ready to be on the chat, you're ready to to advise a customer in the store, like, what's that process? Tim: Yeah, Joe: And you don't Tim: So. Joe: Have to go too deep. I just Tim: No, Joe: I Tim: No, Joe: But Tim: That. Joe: I'm sure somebody is going to say, like, hey, Tim, super educated on this. So every time I talk, like I just said, you know what I call him on the chat, I want him, you Tim: Right. Joe: Know. So Tim: Right. Joe: How to how do you duplicate Tim so that everyone that's coming in on the chat or walking in the store says this is just a clone of Tim like he may. He's already run them through the ringer, you know? Tim: Yeah, that's so the three month curriculum that we created is our pride and joy. I'm so thankful for that. It was brutal to create. So I created one hundred videos, having a five minute conversation where I'm explaining different parts of the world and explaining brands and what to look for and how to explain it. And then we'll go through they'll have to pass quizzes and tests based on each module. So there's nine different modules to this curriculum. They have to go through trainings with specific companies. They have to do a number of roleplaying activities with our managers where they pretend to be the customer Joe: Mm Tim: And Joe: Hmm. Tim: Coming in, hey, I'm looking for some CBDs. What do you got? And so they get tested there and they have to get these certifications from each of these brands, so they have to pass it. So there's one guy who got to the end and he is like, OK, dude, we got to rewind because you're not retaining this stuff. So either you did the last minute cramming for this quiz the night before. And like I didn't I did that in high school. Joe: Ok. Tim: And then you don't retain it, right. Joe: Yeah. Tim: So do you really care about this or not? So he had to start over. He had to go through it again. So it's a team. We have a leadership team of five. And so we have these nine modules, the quizzes, the tests. They have to pass them. They have to do the role playing. And then the leadership team of five will say, OK, this person's ready or they're really not ready. And there's still a couple of parts of our team where we're like, OK, where they can be a wellness consultant in the store, but we don't think they're ready to be on live chat. So then we'll wait maybe six months until they have a little bit more experience, because where our team learns the most is from the customers coming in asking the questions and they don't know the answers of how to treat colitis Joe: Mm Tim: With Joe: Hmm. Tim: Whatever. So then they have to go find out to get back to that customer and then they learn something. So right now, I'm proud to say our live chat feature on our website, if you go to find your other place, dotcom lower, right. You get that little live chat bubble, the seven different consultants that you might run into over there are, I wouldn't say clones of Tim because I think they're smarter than me, but they are really well equipped and able to match, kind of hit the mark of where they need to be. And they all know and are passionate enough about helping people to not. One of the first things that I'll tell them is, dude, never bullshit. Joe: Yeah, yeah. Tim: That's a real thing. And I came from a I won't say anything negative where it's just more about getting the sale, about getting that commission. And and that's part of why we don't do commissions. So it's a fun process for intense. Joe: Well, that's great, man. Yeah, so I want to respect your time. We're down to the wire. I want to make sure I didn't miss anything that you want to talk about. So you have four stores in Wisconsin. Tim: Madison, Joe: Correct. Tim: Wisconsin, the. Joe: Ok, and you have the website Tim: Find your healthy place, Dotcom. Joe: Buying your healthy place, Dotcom. Anything else that I missed that is important that we talk about? Tim: You know, dude, I mean, as I was thinking about this program and your followers, like what your mission is, you're trying to encourage entrepreneurs, trying to encourage people to be thankful for life. You don't Joe: Mm Tim: Take Joe: Hmm. Tim: To treat life like the gift it is, you Joe: Yep. Tim: Know? So I did want to offer your followers a coupon code. If they don't have you know, if you have a health food store in your own home town, that's great sport. Those guys, if you have somebody on your team, that's awesome. That's my main passion. And if you need a resource that you can trust, if you go to find your healthy place dotcom and you get something type in coupon code, Castelo, and that'll give 30 percent off the full price on anything on our whole website, we have thousands of products. So anything from V12 to something more intense. And regardless if you buy something or not, use that live chat feature to ask questions. You know, I've had people call my cell phone bill. Hey, Jim, you know, I'm in Wholefoods right now and I'm looking at three different multivitamins. Like which one do you think I should get? You know, and I get to tell them and it's fun and you can share the love. And so use that live chat feature as a resource, because more than ever, dude, we need natural alternatives. We need some education we at least need to know about, like Joel and your Joe: Yeah, Tim: Life partner. Dude, Joe: Yeah. Tim: What if she didn't have that naturopathic doctor that gave her some natural supplements through one of the most intensive crisis's that she ever faced in her life? Like, you know, in your gut that that helped her in a dramatic way because you watched her do P ninety three, the cancer experience. Joe: Yeah. Tim: I mean, that's a miracle, dude. And it took somebody reaching out and it took a resource being willing to respond to create that miracle, you know. And so that's what I want for people. Joe: Yeah, it's I can't stress it enough that Tim: Right. Joe: What I saw before my very eyes every single Tim: Right. Joe: Day and it would and then I see people that are going through cancer of some type and they're only being treated, Tim: As Joe: You know, Tim: A medical doctor, yeah. Joe: And they're their body is just being crushed. Tim: Yes. Joe: And there's and there's nothing, no nothing helping to offset the chemicals and all of the harshness Tim: Know. Joe: Of that treatment. And so. Tim: Right, and let me say, you know, you saw it with somebody you loved very much, I saw it with my mom when I was five or six. And since then, I'm getting goosebumps. I have seen it for thousands of people through the last 11 years that the healthy place has been a company, thousands of people, not always cancer, but but we're talking depression, chronic pain, Crohn's disease, asthma, like people suffering like megacorp. There's so much suffering going on Joe: Mm hmm. Tim: In the world and there is natural alternatives that people literally don't know about. They have nobody in their world telling them. So they just listen to whatever mainstream media or their medical doctor Joe: Yeah. Tim: Or their pharmacist. And there's a lot of good people with good intent in those areas. It's just there's not the voice of natural alternatives. So we need to know about this stuff. We've got to get the word out. Joe: Yeah, it's great, man, I love what you're doing, and this Tim: Think. Joe: Was exciting for me and and I think I actually have your personal email, so I'm just going Tim: That's Joe: To I'm Tim: Awesome. Joe: Going to go I'm going to go ten. I need Tim: You Joe: More Tim: Should. Joe: Energy, Tim. I think I think I have inflammation. And I'm going Tim: Yeah, Joe: To be like. Tim: I know you should, and if anyone's listening to and they because sometimes, you know, they just have a trust factor or whatever, Tim at Find Your Healthy Place Dotcom. I am happy to take emails. This what I get to do all day, dude, and it's just fun. It's so rewarding. You just get to point people in the right direction and help them out. So I love it. Joe: I wish you all the luck in the world, this is a Tim: Thank you. Joe: This is a great thing that you're doing. It's nice to have somebody who is, like you said, it's it's Soulsby before sales. It's a great it's a great way to do it. And I think Tim: Thank Joe: You'll be Tim: You. Joe: Rewarded continually be rewarded for doing Tim: Thank Joe: It that Tim: You. Joe: Way. I'll put everything in the show notes. Thank you for the coupon for the listeners Tim: Now. Joe: And I'll make sure I have all the correct links. So find your healthy place. Dotcom is the website. The company's name is the Healthy Place for locations in Madison, Wisconsin. You eventually might franchise someday, Tim: Yes, Joe: But Tim: And people on Facebook, you know, Joe: Yeah. Tim: The healthy people on Facebook, my wife's a genius as far as really caring for our community there. So you'll find a lot of good content and Instagram as well. So thank you, dear. This Joe: Yeah, Tim: Is. Joe: Tim, thanks so much, man, I really appreciate your time today and thanks for all the insight and I really do wish you the best of luck. Tim: Any time, brother, and wish the same to you. Joe: Thank you, Matt. Tim: I hope you enjoyed this episode, and I want to thank you for listening to my podcast. I know you have many options to listen to various podcasts, and I'm honored that you chose to listen to mine. I would love it if you were to rate my podcast Five Stars and write a nice review. It really helps to bring up the rankings of the podcast. Other listeners, once again, thank you so much for listening to the Joe Costello show. I appreciate you very much.  

The Joe Costello Show
Mike "C-Roc" Ciorrocco

The Joe Costello Show

Play Episode Listen Later May 26, 2021 48:57


Mike C-Roc Ciorrocco is the CEO of People Building, Inc., and the powerhouse behind the "What Are You Made Of?" movement. He is a performance coach, author, dynamic public speaker, visionary, and thought leader. He has been featured by Yahoo! Finance as one of the Top Business Leaders to Follow in 2020 and is on a mission to build people. He is driven to inspire others and he measures his success on how he is able to help others achieve greatness. C-Roc had a fire lit in him at an early age. That fire has ignited him with a fierce desire to compel people to see the greatness inside themselves using past life events to fuel their fire. Past hardships can be a powerful gravitational force that keeps you down and forces you to think small. To get out of orbit you need Rocket Fuel. Mike "C-Roc" Ciorrocco shows you how to convert past adversity into ROCKET FUEL to break free from the negative pull of pain and despair. In his new book, C-Roc offers life-changing lessons in personal transformation by asking yourself What Are You Made Of? This powerful question will ignite within you a thrust to greatness! Learn how to overcome painful past obstacles and achieve a fulfilling life where you're in command of your future. If you're ready to shoot for the stars, C-Roc says, "Thrust is a must!" Strap in and get ready for the ride of your life. Mike's latest book: https://amzn.to/3wwkTX5 CEO - People Building, Inc. C-Roc's Website: https://www.mikecroc.com/ Instagram: https://www.instagram.com/mikeycroc/ Facebook: https://www.facebook.com/mikeciorrocco YouTube: https://www.youtube.com/channel/UCGWHuKojqZfcXmvGCAi_t1Q LinkedIn: https://www.linkedin.com/in/michael-ciorrocco/ Email: info@peoplebuildinginc.com Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.libsyn.com Subscribe, Rate & Review: I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to: https://joecostelloglobal.lybsyn.com Follow Joe: https://linktr.ee/joecostello Transcript Joe: Ok, welcome, everybody. Today, my guest is Mike "C-Roc" Ciorrocco. I'm really excited to have this talk with him and I know you're going to enjoy this. Mike, thanks so much for coming on. I appreciate it. Mike: Thank you, Joe. I'd like to start every interview that I go on with gratitude and just really express that to you for allowing me to come on and share with you. And thank you to your audience for listening and showing up. Joe: Absolutely, man, I love that gratitudes a huge thing in my life, so I'm right there with you. I appreciate it. I think it's important that everyone has their back story makes up sort of what they've become in life. You know, it doesn't define who they become. But there is something about what has happened throughout your life leading up to where you are now that has molded this person that you've become. And I Mike: Right. Joe: Am interested in that. And and I always start with this, just like you always start. What is it? What are you made of? Right. That's what you Mike: They Joe: Start Mike: Had to turn your head sideways, I love Joe: perfect! Mike: It, you know, now, you know, I came from a broken home. I don't remember my parents together, Joe. I grew up around a lot of broken people, alcoholics, drug addicts, people suffering from anxiety, depression. My grandmother committed suicide after taking too much anti anxiety or depression medication. You know, a lot of things I went through as a kid just watching just destruction. And, you know, I think that decisions we make and Focus's that we have either go towards living and surviving or destruction. And I was seeing the destruction part and I wasn't OK with that. And I didn't want to accept that. So I would always try to help people switch around even from a young age. I was just not OK with what I was seeing. And, you know, my mom when I was three or four years old, I just remember her always telling me that I inspired her and I was going to be a leader. And I think subconsciously, subconsciously, she was doing that because she knew what was going on in the family and knew that I was gonna have to deal with some things. And so I had that programmed into me. So I was always just looking for people to help, looking for people to show them a better way and not buying into what they were telling themselves. And so, you know, that's just something I experienced at a young age. And really when it came down, what lit my fire and what I made of, I would say, is rocket fuel. Because when I was eight, my mom was moving on to her third marriage and I wasn't really up for going into another man's house and learned another man's rules Joe: Hmm. Mike: And but decided to give my dad a try who was moving on to his second marriage. And at that time, you know. I broke my mom's heart by doing that. I didn't know that at the time, but she told me later on that, you know, she cried herself to sleep at night when I left and I was our first child, you know, and when I moved to my dad's, everything seemed fine at first. But after three years, you know, during that three years, there was a lot of conflict. You know, there's a when you had step parents into the mix, any time that stuff happens. The kid is the only link between the past relationship and so a lot gets taken out on the children and anybody that's been in a broken home that dealt with child support, custody battles every other weekend, things that parents jealous, things like just everybody that's been through that knows what I'm talking about. And so a lot of that time they're in from eight to 11 hours, experience a lot of emotional, psychological abuse threats, things like that that were really probably not directed towards me, but came my way. And at nine years old, I would sleep with my baseball bat a lot of nights Joe: Wow. Mike: Because I was scared. And no kid should have to go through that, through that, of course. But that's what went into making me look. I went through these things. I went through court, child psychologists, to see if I was mature enough that at a young age to figure out who I wanted to live with, like all that kind of stuff Joe: Make Mike: And. Joe: Your own decisions, all of that, that crazy. Mike: Yeah, Joe: Yeah, yeah, Mike: Yeah, Joe: Yeah, Mike: And seeing parents fight Joe: Yeah. Mike: And, you know, just just not not happy environment, and so that's what went into me. But the thing is, is that I was always on the right side of the track. Thank God. I was always looking at how can I be better not being accepting of it. Let me look at the bright side of things. Let me look at, OK, what is this doing and how can I take advantage of using this to a better life? So one weekend I was coming home from my mom's house Joe: And Mike: And Joe: So Mike: I Joe: I don't mean to interrupt. Was this Mike: Noticed Joe: All Mike: For. Joe: In Maryland or all back on the East Coast or. Mike: This is in Pennsylvania, outside of Philly. Joe: Ok, cool. Mike: Yeah, Joe: Ok. Mike: So so my mom was living in Maryland, and you know what, I got to about 10, some 10 years old, give or take. I was coming home from my mom's house one day, one weekend after being there and my stomach was in knots. I was anxious. I don't want to go back. And my mom was saying something was wrong. She questioned me and I told her, you know, when you go through abuse, anybody that's been through abuse, you can probably relate to this. That one you don't just like to share because you're afraid that people won't believe you, too. You kind of you're so accustomed to going through it, you're not sure how bad it really is. Somebody on the outside would be like, holy cow, you're dealing with that really. Joe: Yeah. Mike: But as you're going through it, you just think it's ordinary. Another thing, maybe you're embarrassed that you let it go on for that long. And then the weirdest thing is that you're actually concerned with your abuser. You're like, what will happen if I share this to them? Joe: At. Mike: You know, just a weird thing. So I finally came came to the realization that I need to share that my mom said, you know, I'm going to get you out of there. I'm going to file court papers. You don't need to be going through that. That's not ordinary. You need to, you know, in a better situation, she said. But if you do if I do this, you need to stick to your guns. You've got to be like really, really firm because they're going to try to talk you out of it. And in life, when you believe in something, you've got to stick to your guns, man, because people will have agendas and they're going to try to talk you out of it, move one way or the other. And at the end of the day. If you do that, you're not going to live the life you want to live, so she reminded me that, you know, 10 years old, you know, filling my head with great stuff, you know, and I went back home that day and waited and waited weeks went by and waited for those court papers to be delivered. You know, I just knew it was going to happen. And I didn't tell my dad about it, of course. And then finally, one day I come home from school and the tension in the house, you could feel it like it was something was up. And I knew what the deal Joe: Mm Mike: Was. Joe: Hmm. Mike: I had to feel the first. I thought I did something wrong. You know, I'm looking around like, what did I do today? He had his papers in his hand. My dad did. And I knew, like, oh, here we go. And he told me to go to my room. Now, my dad was my hero. He had a successful masonry business, very hard worker, big forearms, rough hands. Joe: Yeah. Mike: You know, you tell he's a hard worker and he always cared a wad of hundred dollar bills in his pocket. And I thought that was the coolest thing and had a rubber band around Joe: So Mike: It Joe: Did Mike: And. Joe: My partner, it's so buddy. Mike: Yeah, yeah, it must be the last thing Joe: Yeah, and. Mike: He would always show me the money, and I thought it was a cool hundred dollar bills, Joe: Yeah. Mike: You know, so he came back in front of me and I didn't get into the discussion with him because my mom said, stick to your guns. So he proceeded to tell me how my mom would have guys coming in and out. Why would you want to go there? You have it made here. You have everything you need. They're poor. They don't have anything. You know, my mom was I mean, we look at the houses. Twenty five, thirty thousand. Our house broken down cars in the driveway. You know, we went on vacation to the Jersey Shore. Joe: Yeah. Mike: But we stayed in a rundown motel, one room for kids, two adults, and we were I just remember just the other day, we were actually able to bring some friends with us sometimes, which just makes it like just I don't even remember how that worked. And we would take black trash bags as a suitcase. So, you know, share my story. By the way, back in the day, I was kind of embarrassed by that. I just didn't like to share that, you know. Joe: Yep. Mike: But I started to realize that the more you share your story, the more impact you can have and the more people that can relate to it and maybe change your life for two Joe: Yep, Mike: Or millions, Joe: Yep. Mike: You know. So I started sharing that. But just to wrap it up real quick, so when I did confirm that my dad took that wad of hundred dollar bills out of his pocket, peeled one off, crumpled it up and threw it at me and said, if that's the case and you want to move there, you're going to need this when you're living on the street with your mother one day. And I remember that 30 some years I lived off that spark that was lit right there because I'm stubborn, my shirt that I think is, say, Joe: And. Mike: Stubborn, perversely unyielding, it's a good thing when it's on the right thing. But, you know, I was like, I'm not going to let that happen. And so 30 some years, I was driving off that spark until two years ago. I really subconsciously I was doing that. I really realized two years ago, wait a minute here, there's something magical that's going on. My life keeps going on its upward trajectory. No matter what happens, no matter screw ups, let downs, disappointments, what is happening here and what I found, which I wrote in my book that's coming out Monday, May 3rd on Amazon Rocket Fuel, I was taken everything that would stop normal human beings or slow them down, store it in my fuel tank instead of my truck, would weigh you down and converted it into rocket fuel for my future to become unstoppable. And I found that and I realized, wait a minute, this is not just a concept. This is an this is a law. If you do this, you really are unstoppable to live in the life of your dreams until you're plucked from this planet. So that's why I decided to write this book that Grant Carter wrote the foreword because it was so powerful. I got to get this message out to people. So that's a little bit about the story. There's you know, that's the short version, actually. Joe: No, that's all good. That's exactly what I wanted, the only piece that I still need to figure out is what did you do? How did you figure out what you wanted to do in life in that middle section of where people go to college or they get a job? Or what Mike: Yeah. Joe: Did you do during that time? Mike: Well, I played football and I didn't drink any alcohol or party all through high school, I played football, baseball wrestled, but football was my love Joe: Mm hmm. Mike: And I just I always thought about I want to go to Ohio State, play football, because I just love their team. I watched them play Michigan all the time growing up. And I never grew tall enough, never grew fast enough Joe: I feel your pain. Mike: That. Yeah. So five, six and three quarters, you got to be really, really fast if you're five, six Joe: Yeah. Mike: And three quarters. So I decided to go to Division three. I played football in college study business. But when I got to college, Joe, I lost my focus and I started chasing girls and party in which I never did before. And it was like Disney World first, you Joe: Yeah, Mike: Know what I mean? Joe: Yeah. Mike: And I just lost, man, I four, five, six, seven years in that range. I was just it's all I cared about was parties where the girls at and I need to be around people. And so that's that's the lead up to that. And then eventually I met my wife, who just the commitment to my wife straighten me up. And I was off to the races. I think that my thing with my wife right now, I joke with her all the time, is I have to outsource. I have to earn her spending on Amazon and deliveries to the house. So it's constantly like this. The other day she's like, I look I go up in the kitchen and there's a piece of decking, like the composite decking. Joe: Oh, you know Mike: We Joe: That Mike: Have Joe: That's Mike: A wood Joe: Going Mike: Deck. Joe: To be redone. Mike: And I'm like, I already told you, oh, not right now. It seems like I already had somebody come over measured Joe: Oh, Mike: On my car and drive back down into the cave. Joe: That's Mike: I call this my studio, my cave. I got to go make some money now. Joe: That's so Mike: A Joe: Funny. Mike: Great motivator. Joe: That is awesome. All right. Well, that's where and was college. Mike: Salisbury University in Maryland. Joe: Ok, and then ever since you've stayed in Maryland, Mike: Yeah, Joe: But Mike: I Joe: Now Mike: Moved Joe: You're Mike: To Joe: In Mike: Connecticut Joe: Ocean City, Mike: For a period of time, Joe: Yep, Mike: But we moved to Ocean City Joe: Yep. Mike: Now. Yep. Joe: Which is beautiful. I love it there. OK, cool. Yeah. And I'm Mike: Thank Joe: On the East Mike: You. Joe: Coast. I'm originally from New Mike: A Joe: York. Mike: Cool, Joe: So. Mike: Cool. Joe: So this leads right into the question that since you're going to do the decking, are you still doing. Are you still in the mortgage business because that's your. Mike: Yeah, Joe: Yeah, Mike: Yeah, Joe: Ok. OK. Mike: Yeah, we have a have a division that I run with three best friends, they take care of the day to day operations Joe: Yep. Mike: And it's a large division under our nation's lending. And we run it like our own business. And it's great people, great culture. It's just phenomenal. Joe: And Mike: So. Joe: You've been doing that quite a long time, right? I've saw Mike: Yet. Joe: You've gotten rated as number number one in Yahoo! Finance are right. I mean, you have. Mike: Yeah, so 2006, I got into it and started as a loan officer and just went from two employees and started a branch and vision and two employees up to 40. Joe: Wow, that's incredible. OK, cool. So when did you make this shift of and you talk about this in one of your videos about sharing your story and you share. You also mentioned it when you were giving your story, how important that is. And when did you make this when did you allow yourself to say, OK, I have this business and I have great partners and people to run this business? When did you decide to at least start your company now with what you're doing with your podcast, in your book and everything? What was the trigger for that? Mike: Yes, so early, twenty, nineteen, my stepfather, George, she took over from my dad when I was 11. He was a great guy and he passed away in twenty eighteen and a heart attack suddenly. And I wrote about this in the book, the story about how he found out and everything. It's it's you know, but but at the end of the day, he had a passion when he was passionate about something like football, baseball, hunting, fishing. He would get up and just go nuts, like deep voice, like everybody couldn't, like, really understand him. He was like so passionate, like they would be taken aback by him. And when he passed away, you know, a couple of weeks after he passed away, I had this passion or energy, something spirit come inside of me. Like, I just felt different. And I realized that I wasn't playing a big enough game in life. You know, I was doing well in the business and the mortgages and all that. But it just that's not the game that I was designed for. I was playing small and I started to realize, wait a minute, I need to open myself up to other opportunities, because if I just focus here, this is where I'm going to stay. And I was having truths that I was telling myself and beliefs that I was telling myself is that this is it for me. This is I'm stuck, you know, Joe: Mm Mike: And Joe: Hmm. Mike: I don't necessarily love the mortgage business. It's great and all that. But the end of the day, I just had a bigger, bigger calling. And so I started trying to figure out, OK, how can I get known in this calling of building people? Because that's what I actually do at the mortgage business. It wasn't the mortgage business. It was I was building people. I was helping develop people. And so I said, how can I get known more in a bigger, bigger scale mystate instead of just my town? Then I was like, that's not big enough. I'll come up short. How about the country and then the globe? And then I was like, you know, what? If I start really expanding my mind, I'm like, if there's aliens, which I've never seen one, but if there is, let me see if I can get aliens to know who I am and really go for that and then come up a little short and I'll be all right. And that's the way I started thinking about things and started trying to impact and share my story with tens of millions of people, hundreds of millions of people. How can I do that? And I started to obsess about that. And that's when the podcast came. The book idea came and and I just started networking like an animal and going on. You know, I've done three hundred interviews in the last year. Joe: Oh, that's crazy. Mike: So just really lean into it and that's how it all started, and then now I'm into tech, into the tech world where I'm developing a tech product. I co-founded the company. And also we have other we're creating a tech portfolio of other co-founders, non tech entrepreneurs that have ideas that think that they can never do it. They usually go to the grave with those Joe: Mm Mike: Things. Joe: Hmm. Mike: We're bringing them into the world and giving them the resources they need to actually co-found their companies and creating unstoppable people. Because my mission, Joe, is all people are unstoppable to live in the life of their dreams. And so everything I do, I filter through that mission. Joe: It's so cool, man, and it's so funny because you hit it right on the head with with the same thing with me, it's like you don't have a successful business. But I know it's not my calling. It's not what I was put here to do. And and everything that I do should be so much more impactful and so much bigger. And I've had this I had the conversation with David Meltzer. And at the same Mike: Yeah. Joe: Time, he brings you back in focus and he's like, yeah, but you should know that you you have everything you need. You just got to get out of your own way. It's not a matter that you should focus on wanting more. You have it all. You're just Mike: Yep. Joe: You're literally getting in your own way of getting it done. Mike: Yeah, and that's the thing, it's the truths that we tell ourselves we're living an illusion, we let the illusions that we have based on our beliefs and past experiences, and we let that affect us and limit us and block us. And really, at the end of the day, you know, we'd rather explain our life instead of actually intervening in it. We'd like to explain with excuses, you know, and justify things and, you know, at the end of the day, man, we just tell ourselves what we can tell ourselves that helps us survive. And to me, that's not good enough, because you're going to always come up a little short, so why not thrive and really go after it? And, you know, there's not everybody that's going to be able to do what we do. So why don't we take it up a notch and get get really abundance, like go after abundance so that we can help other people and distribute this information to other people. So that's the kind of things that I started thinking. I started hanging around people that coach and mentor me the right way, thinking big, you know, also, you know, still like Dave Meltzer talks about, you've got to be happy now. It's not like later, Joe: Yeah, Mike: So. Joe: Yeah, so I don't want to go down the current path, I follow him, I love the stuff that he does. I know that it fits the mold for a lot of people that are in the real estate world. And but Mike: Yeah. Joe: I also know that he's doing a lot of other things. But how he wrote the foreword to your book, which is amazing, how how much did he influence you making this jump to doing what you're doing now? Mike: So when George died, my stepfather, my brother was read in the next room and he said, Mike, you've got to read this book, this guy sounds just like you. I'll take a look at it. I started I saw Grant before and like pictures, but I thought he was like a real estate. Joe: Yep, Mike: I thought he trained realtors, Joe: Yep, Mike: I wasn't even sure, Joe: Yep. Mike: Right, so I read the book and I'm like, holy cow, this guy speaking to me, he's going through similar situations that I've been Joe: Yeah. Mike: Through. Like, I can totally relate. And I but but the big thing was about it was I've always had this big think, but I got cocooned for a while by people that I surround myself with that were broken thinkers, broken mindset, people, people that didn't fit my culture, but they produce. So I kept them around and people that quit on me. And I let that affect me personally. And I got into this situation where I was invalidated, me myself. I felt invalidated on being the animal that I actually am. And so when I was reading that book, I'm like, wait a minute, this this shows me something. I'm not the crazy one. Those people are the crazy ones. I have an animal. So I did unleash it. So I was able to unleash the beast and that's what it did for me. And then I just immersed myself in this content, hung around with all these people, build relationships inside his company, because I just want to be around those types of people. Joe: Yep. Mike: Great, great friendships. Like I said, Jerry Glantz, a friend of mine, I just you know, I'm proud to have them in my in my circle. And so when when I wrote the book, the book actually came from an idea that I got while I was interviewing grad on my podcast about I asked him the question, what would it take to get into outer space? Not like literally, but figuratively speaking, getting away from all the gravity and negative suppressors of people and things that can mess with you. When can you get that amount of money or that amount of whatever it is? And he said people aren't ready for that discussion. He said that's just something the answer doesn't people don't like the answer to that question and I'm like, well, what would it take? You know? And I started thinking about rocket fuel. Rocket fuel is what it would take. Take it all that stuff, converting it and fuel your way up there. And then once you do that, you remove all that stuff out of your way. There's nothing to stop you and you become unstoppable and indestructible. And that's the thought that started going through my head and I started obsessing about it. I'm like, I got to write this. So when I did that, I'm like the only person that would make sense to be writing the forward for this book is Grant. I don't know if he does afterwards. I don't know if he charged me. I don't know anything. I'm going to make it happen, though. And that's what I started thinking all the time. I just dwelled on it, wrote it down and. Book is almost done, and I made a phone call and there are some details that went into doing that and I just got done and his name is on the cover of the book is for Written Joe: Yeah, Mike: By Grant. Joe: Yeah. Mike: So that adds to credibility that I may not have had before, but the content in the book is just so powerful, man. It's just I actually can be honest with you about something like like I'm always honest, but like just totally transparent. I read that book over and over again during the editing process. Right. And I got so sick of it and because I've read it so much, but then I haven't read it in a while and I went back and my team, we go through in the morning and we'll pick a passage to read out of it just to see what what we come upon. And I don't even remember writing some of the stuff. I'm just like, wow, this is like this is really good stuff. Joe: That's cool, Mike: So it's a weird Joe: Yeah. Mike: It's a weird mind game when you're writing a book and then to see the actual finished product. It's a good time. Joe: That's really cool, yeah, I look forward to reading it, I it's, you know, just talking with you, I can tell we're in sync on a lot of this stuff. You're ahead of me because you wrote a book and I haven't done it yet, but I know that it's a good process to go through. Where did you figure out where you wanted to start in the book in regards to your life? Mike: So, you know, I started share my story that I share with you and I have other parts of my life in there, too, that are just crazy, blew people's minds. But I really what I did was I started writing in my phone while I was on airplanes and I would just write ideas in my phone and and I would write stories that happen in my life. And then my podcast, we transcribe the podcast episodes, the first few that were a monologue style, and we just created a framework. And then it doesn't look anything like it started. That's how I got started with it and just started, you know, what kind of what went into me, what am I made of? And I just went into that and started sharing it. And then the lessons that broke off from each of those things, because, you know, a lot of people have been through there's people that have been through a lot more than I have. But my story is pretty crazy. Like there's some stuff that happened to me that nobody could imagine going through. But I'm still here, brother, and I'm still going hard. Joe: I hear you. I see that and you brought up a good point and one of the videos that I watch where you said people discount their story, right? They don't think, why would anybody care? It's not that Mike: Yeah. Joe: Special. Well, when were you able to actually take your own thoughts as part of your own story and make that switch where you said, wait a second, you know, what I've gone through is important. If it can help one person in the world, that's value enough. I mean, when did you or did you not ever doubt that your story was powerful? Mike: No, so I would I never shared it and I saw Pete Vargas share his story on the 10x growth conference stage in twenty nineteen, I'm sitting there watching and this is the first big stage, I think, that Pete was on. He was nervous and scared and his face, you could tell, is sweating and he would tell you this. I'm friends with Joe: Mm Mike: Him, so Joe: Hmm. Mike: It's not something I'm talking about. Joe: Yeah, no, no. Mike: But I thought to myself, I'm watching that. I don't know who he was at that time, but he was telling a story about his father and he was like really connecting with me and the relationship and how he grew up in a rough spot. And then they came back together and how it all worked out. And I'm like, wow, this is just like powerful. I felt like everybody else disappeared in the place and it was just him talking to me. And I'm like, I need to learn how to do that. And if he can do it, I know I could do it. That's what went through my head. And I told the guys I was with when we got in the car afterwards, I'm like, I'm going to be on that stage. I'm going to share my story one day and I know I can do it. And so then I started sharing the story of one person, two people, five people. And they were like, that's all. I really can relate to that. Then I said, Well, shit, I need to go to ten million people Joe: Mm hmm. Mike: If I could do it and how can I do that? And that's when I started obsessing about getting known and sharing that story. And, you know, I was able to talk to Pete after that and actually learn from him how to share your story. And but I shared that that that story about seeing him in the audience and how everybody just disappeared and how he connected with me. And so it's pretty powerful stuff, Joe: Yeah, Mike: Man. Joe: That's really powerful, but that's got to be a little eerie to just be sitting there Mike: The. Joe: And all of a sudden it's just like a movie where everything around you blurs out and it's just Mike: Yeah. Joe: The two of you. Yeah, Mike: Yeah. Joe: That's incredible. Something real light like question I have for you. The logo is it is a logo. And I'm going to take a guess and I'm probably going to be wrong. And you're going to say, well, nice try, Joe, but does it have anything to do with the Lynch? Mike: So the sirocco, the blue. Joe: Yeah. Mike: Yeah, so it's just upside down, see, and in two hours that are, you know, for Cerak and then it just has a little dude in there holding up the world, if you can see him. That's what it has now. It doesn't. I Joe: Ok, Mike: Didn't see that. So linchpin, Joe: Only because Mike: Huh? Joe: When I read some stuff from you talking about, you know, in some of the verbiage that I read about you and on your website, you mention Mike: Yeah. Joe: The word linchpin. I can't remember the context, but it was. Mike: Yeah, no, you know what, I. Joe: And then when I looked at a picture of a lynchpin, I was like, wait, it is Mike: I Joe: Round. Mike: Got to Joe: And Mike: See what a picture of a linchpin Joe: You Mike: Looks like Joe: See Mike: Because Joe: Now Mike: Because, Joe: I have Mike: You know, Joe: You thinking. Mike: Like that's. Yeah, I got to look at this because maybe maybe, yeah, maybe it does, Joe: The. Mike: So I didn't design the logo myself I had professionally done, and maybe he had that in mind as well. Joe: Only because it's mean you could kind of say it a little bit. I don't know. Mike: Yeah, yeah, I see what you're saying, Joe: Right, Mike: Yeah, Joe: It's Mike: No, Joe: Round Mike: I didn't Joe: With Mike: Have Joe: The Mike: That. Joe: With the thing through it, and I'm thinking, OK, well, maybe it's kind Mike: Yeah. Joe: Of hinting towards it and and I Mike: Now, Joe: Said, Mike: It was really just the sea Joe: Yeah. Mike: And the two hour and holding up the world and helping lift up the Joe: That's Mike: World, Joe: Cool, Mike: That's what Joe: That's even cooler, so you can Mike: The. Joe: Throw my idea right out the window, Mike: Now, Joe: But Mike: I Joe: I Mike: Like that, I like that. Joe: Do I do some upfront investigation of the person I'm talking to in the life and all of that stuff. And I saw that, you know, because you're doing your mortgages. And I saw that Jennifer is in real estate and I don't Mike: Yeah. Joe: Know if she still is, but. Mike: Yes, yes. Joe: So that's a really cool synergy between the two of you, first of all, I think that probably works really well. But just for the people in the audience who had a great relationship with their significant other, how important has that been in the balance of your life, especially what you went through as a young, you know, a young man being able to have that support in and you found the love of your life and it's you know, there's that whole synergy there between you. Mike: Yeah, I mean, it's it's everything, I mean, like I said, I made a joke about trying to earn her spending with that, but then on the day she does a great job, she did she was a stay at home mom for a while until our youngest was in school. And then I said, you know what? I'm going to try to you know, we've got to figure out something because I'm giving deals away Joe: Uh huh, Mike: To people. Joe: Yep. Mike: And, you know, it would be great if you get a license and she ended up doing it. And she's just the type that if she gets into something, she goes hard with it. And she did great the first two years, just fantastic. I didn't even realize how much money she made last year until I saw ten ninety nine. I'm like, wow, you did great. But she's just phenomenal and aligns well with our business. Obviously I don't do mortgages much anymore. Joe: Yeah. Mike: I don't do it all. I just I work on the business maybe an hour a day. My team runs the day to day. They do a fantastic job. And so but it aligns well, obviously in a lot of our people, their spouse got their real estate license, too, because it aligns so well. Joe: Mm hmm. Yeah. Mike: So, yeah, but but at the end of the day, we are you know, I'm very clear with what I'm trying to do, my dreams. And she is clear on the fact of her dreams and the fact that she's willing to support me and run through fire for me. And Joe: Yeah. Mike: It's just a great feeling because I can't do it without her, obviously. Joe: Yep, yep, I just wanted to sort of bring that up, because I think it's important I have the same sort of relationship with Joel Mike: And Joe: And Mike: It's Joe: My significant Mike: Awesome. Joe: Other. So it's Mike: Yeah. Joe: To me, it's super important. And with what happened with covid, you know, a lot of things just stopped. Right. And Mike: Mm hmm. Joe: Changes were made. And so she got furloughed from doing her day to day job and has not been brought back. But she's always had this dream of doing photography. And so now I basically have said to her, you are not going back and you are going to from this point forward until whenever the world ends for you, you're going to follow your dream. So I Mike: Awesome. Joe: Think it's important. Right. And to Mike: Yeah. Joe: Support each other and it's nice to see that you have that same relationship. Mike: Yeah, so, so, so important that it aligns I mean, so much conflict comes from just not being aligned with the mission, Joe: Yep, Mike: You know, Joe: Yep. Mike: And I think that people need to realize that their personal dream, their mission, I call it their purpose, their mission. It's it's more important than anything when it comes down to it really is. Joe: Yeah. Mike: And that's why it's so important to share that with your partner, to make sure that they're on the same page with you. Joe: So let's talk about that. I'm sure I'm probably older than you at this point, but we're Mike: Yeah, Joe: At Mike: Definitely, definitely. Now Joe: The. Mike: I'm 40, I'm 40 for some, I'm Joe: Oh, Mike: A Joe: My gosh, I'm so Mike: Young Joe: Old, Mike: Pup, Joe: I can't. Mike: But I am going on 18 years of marriage. This May so. Joe: Congratulations, that's awesome, yeah, Mike: Thank Joe: Joel Mike: You. Joe: And Mike: Thank Joe: I Mike: You. Joe: Are 20, I think, at this point. Mike: Ok, cool, congrats. Joe: Yeah, I turned fifty nine this past February, so, Mike: Oh, man, I Joe: You know. Mike: Can't tell. I really can't Joe: Yeah, Mike: Tell. Joe: Well thank Mike: Maybe Joe: You. Mike: That's why that's why you shave your head, because that way you can't see any Joe: That's Mike: Gray hairs. Joe: Exactly, exactly right. They got my eyebrows Mike: Hey, Joe: Are still dark, Mike: Look, I'm with you the way the. Joe: So do you ever look at where you are now and you look back and go? I mean, and I think we've talked about this with some of the great people, like, you know, we can bring up David Meltzer again because he's just he's like one of my mentors. I love the guy at the Mike: Is Joe: Death. Mike: Awesome. Joe: You know, what is what's the saying? Something like the the teacher. The teacher appears when the student is ready, Mike: Yeah. Joe: Right? Mike: Yeah, yeah, yeah, teachers. Joe: Yep. Mike: Yep, exactly. Joe: And it's the same thing with life. Like things come when the time is right. And some people would argue against that. Some people would say whatever. But you just started on this path now, right. Something flipped when you're 40, when your stepfather passed away, it said there's you know, and you might have felt that your whole life because you people like you and I always were pulled towards something. Right. We're entrepreneurs. We've always worked towards a greater goal of whatever. Do you ever look back and go, God, I wish I had started this sooner? Or is it like, no, it's this is the time. This is the right time. It's happening now. You know, I'm interested in what your thought process is on that. Mike: Well, I'm curious, asking the question, you must have felt some kind of feeling about that in the past, maybe. Joe: I constantly go like I had, I chased another dream up until this point, and that Mike: Yeah. Joe: Dream didn't happen for me and I openly admit all the time that I didn't put in the work to make that dream happen. I'm Mike: The. Joe: I'm a trained you know, I went to college for music. So my whole life has been surrounded by music. And one day I was going to tour the world and be this famous drummer for and I always use the example because I love his music. John Mayer. Mike: Yeah. Joe: That never happened for me because I know now I can look myself in the mirror and go, You didn't put in the work. You didn't put in the Mike: Yeah, Joe: Tent. Mike: The commitment, Joe: Yeah. You Mike: Yeah. Joe: Didn't do the ten thousand hours. You Mike: Yeah. Joe: You would rather had gone down to the college campus bar and had a bunch of beers and chicken wings with your buddies Mike: Yep. Joe: Instead of going back into the practice room and spending another four hours at night. So I am fine with I get it now, but now Mike: Yeah. Joe: I'm trying to take like the rest of my life and make it amazing and live much Mike: Yeah. Joe: Bigger. And so I am at the stage right now doing that change, shifting Mike: Mm hmm. Joe: My my frame of mind. I know the world is abundant. I know that everything you know, I just have to look towards the good of everything. And the more I focus on the good and the abundance and the gratitude, more of it just keeps coming in. In the last two months, it's been incredible for me. And so and it's I always was the oh, woe is me. Like I work my ass off. Why am I not getting that? Why am I not Mike: Yep, Joe: Doing that? So Mike: Yeah. Joe: That's why I asked you this question Mike: Yeah, Joe: When that, Mike: Yeah. Joe: You know, was the shift with your with Mike: Yeah. Joe: Your father, your stepfather passing away and you just saying when you said you felt it in your heart, you were like, I need to do something bigger. Was that the pivotal point for this? Mike: Yes, it was, and I did look back and be like, man, I cannot believe when I started finding out things and becoming aware of things, I cannot believe I didn't start this sooner. I didn't know that. Like, I just felt like I had wasted I went through a period of time where I felt like I wasted time and time is so valuable. And I said, you know what? I don't know how much longer I have on this planet, but you know what, at this point, the window keeps shrinking. I got to pick up my urgency. I got to move faster. I got to demand more and be louder and be more impactful and be just more intense than I would have had to if I started a long time ago, that's all. And so at first I did look back and with some regret. But then I quickly got out of that and said, OK, what have we got to do to get this done in the window that I do have left? So, yeah, I definitely and that was the pivotal, pivotal point, of course, working towards it my whole life, not knowing it. Joe: Yeah. Mike: You know, there's a story in the Bible and they made a movie about it with Steve Carell about Noah's Ark. You know, it was told over some years he took to build this big arc and he didn't really know why he was doing it, he was just being told to do it by God. If you believe in God, Joe: Hmm. Mike: Which I do, or if it's intuition or whatever. And he got these animals and people were laughing at him and discouraging them and he just kept doing it anyway and building a ship in a place where there's never rain. Joe: All right. Mike: And did it make sense, it didn't seem to make sense at the moment, but he kept doing it and he kept being committed and doing it and doing it and doing it before you know it. The rain came, washed everybody away, and he survived with all the animals that he had and his family. And so I look at that lesson and I started to see this now. I started to see that the things when I'm committed and obeyed to my purpose, my mission, and I filter things through that, whether it's the people I hang out with, my actions, my words, my thoughts, my environment, when I start to filter through that mission. I'm obeying what I'm supposed to be doing and things just magically work out and I start to see opportunities everywhere, but when I don't do that, they're missing. And so you don't need to know what the end game is necessarily. You should be shooting for something, but just be looking for the opportunities. As long as you're obeying your mission and filtering everything through your purpose or mission or whatever you want to call it. Joe: Yeah. All right, well, that makes me feel good that I'm not the only one that had some regrets, so thank Mike: The. Joe: You for being vulnerable and saying that because I definitely have gone through it and I have like I said, I'm older than you. So I think, you know, think, Mike: None of us are alone, Joe. None of us are, you Joe: Ok. Mike: Know, I've anything that you go through, there's somebody else out there experiencing it for sure. Joe: Right, and I think that's what you're a lot of what you talk about is it's so important to share your story because it literally could help one person, which would be a huge help. You never know where they are in their state of mind. And if it lifts them, that's awesome. But imagine being able to help tens of thousands of millions of billions of people. Right. So I understand that's what the goal is for people like us who want to do that. So I I wish you the best of luck in doing that. And and same Mike: Thanks. Joe: With myself. Mike: Yeah, Joe: They've Mike: You, Joe: Got Mike: Too. Joe: To get it done. Mike: That's right, Joe: Ok, Mike: That's right. Joe: So you said something earlier about the book, which is the name of the book is Rocket Fuel. And you said it's May, May 3rd. Mike: Yeah, May 3rd, Monday, May 3rd, it's coming out on Amazon, and, you know, it should be a best seller based on we have we presold it. So I'm thinking that it's not going to have a problem being a best seller, number one best seller. Joe: Yep. Mike: What we shall see. But I'm going to do a bunch of lives that day, Instagram and Facebook lives, and just have some fun with it Joe: Cool. Mike: And celebrate. Joe: Ok, cool, so let's talk about it a little bit. Mike: Sure. Joe: You said something earlier that I thought was really cool, which was taking you said something about taking whatever comes in and not putting in it in the trunk, but putting it in the fuel tank and making rocket fuel. So explain Mike: Yep, Joe: That again Mike: Very Joe: To me, because Mike: Good. Joe: I I loved Mike: Yeah. Joe: It when you said I was like and I didn't even write it down. Mike: Yeah. Joe: I was like, no, that's got to go up here in my brain. So I would love to Mike: Well, Joe: Hear that again. Mike: Well, when you want something in life and things come your way to stop it or slow you down, if you remove a one thing, obviously that's going to help. But removing is not good enough for me. So I take all that stuff. Haters, people that discourage me laughed at me. What I'm trying to do, screw ups of my own people trying to screw me, all that stuff I just stored in my fuel tank. And usually people put it in their trunk and that weighs them down. You know, most people quit on their dreams because other people are talking Joe: Mm hmm. Mike: About them and saying, no, you're not the same. Why are you doing that? In all kinds of different things? I take all that and say, you know what, like here's an example, by the way, I stored in my tank, my fuel tank, to convert it into rocket fuel rather than my trunk, where it weighs me down. And some of the people closest to me, you know, like some of my business partners and friends and they know who they are. I talk to them about it. And I said, you know what? You keep saying the stuff like, hey, why don't you go do your podcast? Hey, you know, just this stupid digs like that, right? At the end of the day, they're trying to get at me, but they're really just talking about themselves, reflecting upon themselves and the fact that they should be doing that and they're not. And so I know that. And I tell people, you know, you want to say that, great, you're not going to achieve what you think you're going to achieve because all you're doing is giving me more fuel and I'm going to push it even harder. So when somebody says that to me, I'll do it on purpose, where I'll push harder and then I'll show it up in their face a little bit more to about. They're seeing so many posts on Instagram, I'll make sure I send it to them in a direct message, because that way it shuts them Joe: Yeah, Mike: Up Joe: Yeah, Mike: For Joe: It's weird, I don't Mike: Not Joe: Understand, Mike: Being. Joe: I don't understand, like people want to bring you down to their level, right? We deal with that all the time. And and social media has done so much to expose those people. And I just don't understand why they can't be happy for you. But they. Mike: Well, they can't because so I've already realized this in my mind now I know this, it's not them personally, it's their mind. And what it's happening is they just the subconscious mind just justifies where you are. It's trying to justify the truths that you told yourself and when something comes in to threaten that. You have to basically there there things fire off to protect their subconscious beliefs, and so it's not really them personally that's doing it and that's why you can't take it personal. You need to understand it. And then when they're doing it, you need to lay it out to them and let them know, hey, listen, I know what's going on here. I get it. You're where you are and you're trying to justify where you are. And you're saying this stuff to me. I don't take it personal, by the way. I use it as fuel. So thank you. And if you want to say more, continue to give me fuel. Great. But I would rather be able to help you. On break the like, just open up your truths and change them, change your beliefs. And expand your mind and see what you can achieve instead of worrying about what I'm doing and that's the way I handle it, I don't really get fired up or angry or take it personal. It's just a situation where they're going through it. And I think we've all been through it Zoom. I think I'm more understanding of it, Joe: Yeah. Mike: But I will not. But if they don't listen to me when I talk about that, I will not spend time with them because I'm not going to spend time with people that don't align with the mission. Joe: Totally agree. So the book Rocket Fuel coming out May 3rd on Amazon, who is this book for? Mike: Specifically, this is for people that have gone through things in life. And they feel like they keep getting held back or slowed down by things are stopped and they're just they're just done with it. They're they're at the point right now where they've had enough. They're getting sick of where they are and they want to do something about it. And they are looking for that breakthrough that that that superpower, because really it is it's like John Maxwell, House leadership, because this thing is so powerful. And I validated it so, so thoroughly that it's a law, it's the Rockefeller law. And so it's for people that are just sick and tired of being where they are. And they want to advance. They want to have a better life, life of their dreams. And I believe, like I said, my mission is all people are unstoppable to live in a life of their dreams. And so that's what's for. Joe: Yeah, and I saw that it seems like part of the focus is about past pains and obstacles and how you you basically help with the book to to change, take people and turn it around and say, you know, like you're saying, use those things as rocket fuel to get you to the next level. So don't lean on them. Don't have them in the trunk, don't have them as baggage, but instead take what you've learned, take what has happened and convert it to rocket fuel by doing whatever you talk about in the book. Mike: Yeah, Joe: Right. Mike: Yeah, the magic, the magic, here's the magic, right? The magic is when you have something happen and you get that feeling in your chest, that's where it hits me, by the way, like something Joe: Hmm. Mike: Bad happens and like this speed to which you can recognize that and convert it and look for opportunity. That's when you master the Rockefeller law. That's what it's all about, the longer time it takes, the more doubt creeps in, Joe: Yeah. Mike: A more negative energy creeps in, the more victimhood creeps in. And the missed opportunities happened during that period. So you want to shrink that window to as little as short as possible because we all feel it. We're all going to still feel it when something bad happens at first, but recognize it as fast as possible and start to look for the opportunity, not play the victim role, take responsibility for everything. Joe: Yeah, that's great. OK, I want to honor the time we have that we so we're going to do an hour or so. I want to just go through this real quick. So you have your own podcast, which is what are you made of? Which is on the wall behind you, where you interview. I assume, you know, other entrepreneurs and people that have amazing stories to tell and share. You release one week, twice a week with a human. Mike: Well, it started out once a week and then I had so many that I was doing, I had to do two weeks. Right now we're on a two week schedule. Joe: Ok. Mike: So, yeah, I just load up. I go hard, man. Like, if I see somebody I want to show, I go after him like an animal. I get them on the show and I don't care how many I've already had in the can. I just still just keep loading them up Joe: That's awesome. Mike: And uh. Yeah. So. Joe: Ok, cool. Besides that, you are you do some performance coaching, correct? You do some coaching in general, you Mike: Yeah. Joe: Are doing some speaking. You're going to continue to to build that Mike: Yeah. Joe: That part of your career. You're going to be on stage with Grant one of these days. Mike: Well, yeah, but so the coaching part, I want to do, the coaching part of switching that into, you know, I still have a couple of clients, but really focusing on the tech side of things and developing these entrepreneurs and young entrepreneurs into this tech world and using my specialty performance and business coaching and what have you into that, not getting paid directly for it. But but from the companies that I'm developing, Joe: Yeah. Mike: I'm really focused on that. And then I was on a 10x growth stage this past March. Joe: Oh, congratulations. Mike: Let me tell you, it took me two years to step on that stage. Joe: Hey, Mike: Thank you. Joe: That's awesome. The tech thing is it is there more that you can tell us about it or a way that people can find out about it or a. Mike: Yes, so the best thing to do, really, I mean, if you if you message me and follow me on Instagram, you're going to see all kinds of stuff coming out here very shortly on it. But I have a tech product called Blueprinted. It's being printed. This is my the one I co-founded. And this product basically, I looked at digital training and video training and I saw, like, how ineffective Joe: Mm Mike: It was Joe: Hmm. Mike: And the fact that only 20 percent of people actually complete the courses. So that means the people that are marketing these courses that are good at marketing are making money without concern for the Joe: Correct, Mike: Success Joe: Yeah. Mike: Of their student, their clients. And I thought that was an ethical problem. And I looked at why people get bored. They don't finish it, they get distracted, they don't retain the information. Or when they get done, they're like, what's the next step? Like, what am I supposed to do? Where do I put that Joe: Mm Mike: And Joe: Hmm. Mike: Where where do I take that and how long do I do that? And so I thought to myself, what if there's a way to have a project management based software technology that has a marketplace where people that have had success can come in and algorithmically step by step, put the success steps to what they've done, whatever vertical, Joe: Mm Mike: And Joe: Hmm. Mike: Build that blueprint in our platform and then sell it on the marketplace to to people that want to know how to be successful in that area. So it could be anything from a business to a podcast to digital marketing agency, whatever it is. Because if you look if you're going to build a house, you wouldn't want to watch a YouTube video. And on building that house, Joe: All Mike: You'd want the blueprints. Joe: Right. Mike: So this is a market disrupter, industry disrupter. And I can also see another industry being created from this, like there's web designers when websites came out. Well, there's going to be a lot of people that don't want to build their own blueprints. They want to take the content and give it to somebody and have them do the blueprint for Joe: Mm Mike: Them. Joe: Hmm. Mike: So there's going to be a whole industry just on blueprints. And so, yeah, this is a phenomenal thing. And it's coming out hopefully in the next 60 days, give or take. And I'm just fired up to get it in people's hands, man. Joe: That's great, man. You got a lot of irons in the fire. I like Mike: Yeah, Joe: It. Mike: But Joe: That's Mike: Thank Joe: Awesome. Mike: You. Joe: All right. So I want everybody to go and check out your podcast. The book is released on May 3rd called Rocket Fuel. Get in touch with you on on any of the social media. What's the best way to get in touch with you Mike: Instagram, Joe: On. Mike: Instagram, Twitter, LinkedIn, either one, but Instagram, it's Michy Cerak. Joe: Like you see rock on Instagram. Mike: Yep. Joe: Perfect. All right, man, this is a pleasure for me. I love talking Mike: Metohija. Joe: To another person Mike: Yeah, buddy. Joe: And it was great. And I really wish you a ton of luck with the book. I'll make sure when this episode gets released, I'll have a cover of the book. This will also go like you do on your podcast, will go to the YouTube channel so people will Mike: Thank you Joe: Be able to Mike: To. Joe: See it. I'll put the link to the Amazon in there. Anything else I can do to help? Let me know. But it was a real pleasure to speak with you. I appreciate Mike: Well, Joe: Your time Mike: Thank Joe: And. Mike: You. Thank you, Joe, I appreciate it was a great interview. Great questions and I really enjoyed it. Joe: Thank you, ma'am. You take care. Good luck with the book. Good luck with the podcast. Good luck with the tech software and Mike: Thank Joe: Everything Mike: You. Joe: Else. And just have an amazing year. Mike: Thank you, you, too, bye. Joe: Thank you.

The Joe Costello Show
JM Ryerson

The Joe Costello Show

Play Episode Listen Later May 19, 2021 62:33


JM Ryerson is a Mindset & Performance Coach that provides top level virtual and in person Coaching on Mindset, Performance, Leadership, Business, Team Building & Career Development. He believes in a work life balance, providing athletes, teams, sales executives and individuals the tools that lead to success at work, at home and in life! You and your team will gain skills, tools, strategies, and practices that can be used for many years to come. Let's Go Win together!! I hope you enjoy this conversation with JM Ryerson and as always, thanks so much for listening! Sincerely, Joe JM Ryerson Top Level Coach and Keynote Speaker for Athletes & Executives Website: https://letsgowin.com/ Instagram: https://www.instagram.com/letsgowin365/ Facebook: https://www.facebook.com/letsgowin365 LinkedIn: https://www.linkedin.com/company/letsgowin365/ Twitter: https://twitter.com/jm_ryerson Email: lisa@letsgowin.com JM's Books: Let's Go Win: The Keys to Living Your Best Life - https://amzn.to/3eX0N2s Champion's Daily Playbook: https://amzn.to/3bDzwQv Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.libsyn.com Subscribe, Rate & Review: I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to: https://joecostelloglobal.lybsyn.com Follow Joe: https://linktr.ee/joecostello Transcript Joe: Everybody, thanks so much for joining me once again. I'm so honored that you're listening to the podcast today. I have a special guest. His name is J.M. Ryerson, and I'm very excited to speak with him about all that he does in the field of mindset and coaching and various other things and his books. We're going to get to it also. J.M., welcome. JM: Hey, thanks for having me, Joe, appreciate it. How are you doing, brother? Joe: I'm doing great, man. I'm excited to talk with you, I have a bunch of sort of casual questions to ask up front. You have your own podcast. And I was able to listen to a couple episodes in preparation of this. And the intro to your podcast was awesome. Is that you in your in your radio voice? JM: No, I wish I could do that. No, Joe: That was. JM: It's not me that is a gentleman with a very deep voice and he I don't know where they found him, but I thought he did a pretty nice job. Joe: That is it is so cool, when I heard that, I was like, wow, that's amazing, he can actually change his voice that much to do those intros. It's like I'm jealous about it. It was really cool. And it was funny because I happened to listen to the one where it's you and your wife. And she actually said, you have a really great radio voice which what you do. But she didn't say too much about you being on TV, so I'm not JM: You know, I think that the same way you did, I'm Joe: Ok. JM: Like, I'll take that as a compliment, I guess. Joe: Right. OK, good. I was wondering I just want to make sure it's even another sort of personal casual question. How tall are you? JM: I'm six five. Joe: Man, in the pictures, you're obviously, you know, your kids are in it and then your wife, but it feels like you're towering two feet over everybody. JM: Well, being that my wife is five, too, and maybe it's Joe: Ok. JM: Not even use five three when I married her, but regardless, you know, do smaller Asian gal and I'm a tall white dude. So it just kind of Joe: Yeah. JM: She always jokes, if you see the family photo of her side, one of these doesn't belong to the other because I do stand out pretty Joe: Yes, JM: Significantly. Joe: Yes, absolutely. I was like, oh, my gosh, how tall is this guy? OK, I would like to go back to the beginning as far back as you want to go, because I like setting the stage for people that might not know you yet. I like to give them a foundation of who we're speaking to and how you got to do what you're doing today. And I think it's important because even the work that you do, it's helped those people to say, OK, what was the transformation from whatever he started doing to where he landed today? Because I think that's helpful for the listeners. Most of my listeners, I think, are really startups, entrepreneurs, people that are there trying to figure out what their passion, their bliss, their purpose on the earth is. And so it's nice to hear how people land, where they are and what took place before that. JM: Sure, I mean, if we're talking professionally, I once I graduated college, I moved right to California, which is I'm a kid from Montana that I never thought I would leave Montana. I love Montana. But somehow I landed in California, went to work and went to work for a great company. But it wasn't corporate America wasn't my gig. And I kind of knew that. I guess it took me three and a half years, but I got a lot of great experience. And so I was looking to do something else and I was very fortunate. I met who ended up being my business partner for many years, almost 15 years, and I didn't know it at the time, but just I jumped into financial services and I, after one year, decided to start a company with the gentleman that had hired me. And we had an amazing run. We built three companies together and I just kind of became entrepreneurs. What I enjoyed well, along the way, I made a ton of mistakes and I made all the mistakes that I didn't want my kids to make. And so I finally decided, you know, there's something here that I should probably I want to write a book about. And it's not about me. It was more about the authors I had read, my parents, my grandparents, the mentors I had had. And so I literally decided, you know what, let's write this book. JM: And so I went through this process of writing in the galley, working with me at the time said I didn't think of you as a selfish person. I said I didn't think I was selfish either. What are you talking about? She said, if you share this book with only two human beings. So my two boys, Trystan and Tradin if you share it with only these two human beings, you're selfish. OK, lesson learned. Won't do that. So it just kind of started on the path of, you know, let's let's talk about what let's go win is all about. And that went into the company, which went into a podcast which dove into more coaching. And so I don't know that I planned it all out this way. It just kind of happened. And I'm so blessed that it did because I get fulfilled every single day. And I guess the last thing I'd say to her is, let's go win. The whole idea is not wins and losses. It's quite literally setting you up to win. But that doesn't guarantee success means that, look, we're going to do our very best to put our best foot forward. But that doesn't mean we're going to win. That means we could fail on. I fail every single day. I'm great at it. I'm a great failure. I fail all the time. Joe: So am I, so my. JM: There you go, so and so that's but the whole idea is to set people up for the greatest, you know, so that they can succeed. And so that was the whole idea of the book. And it's just been kind of a whirlwind, but it's been beautiful. I've met so many amazing people. I work with so many great people. So it's just been awesome. And I've loved the journey. Joe: So I want to go back even further because I feel that, again, I'm going to I'm going to reference your size that I have a feeling you are in sports. And I also read a small clip somewhere about how you were and like I am. And like many entrepreneurs and people that have that a type personality or whatever, that were really hard on ourselves. So I have a feeling that you were really good in sports. You were super competitive and you were super hard on yourself at an early age. And so the piece that I read was you sort of giving yourself grace as you got older saying, I need to I need to lighten up on myself. I need to lighten up on my family. I need to lighten up on the people around me. And and so I want to hear more about what that was like. Again, I'm making this assumption, I assume that you were athletic at a young age. So can you tell me more about that and how that had that transformed to where you are today? JM: Yeah, it's a fair assumption, and if you were to ask my parents, neither of which were super athletic, I my mom, she doesn't have a competitive bone in her body. My dad did play some athletics, but kind of threw his shoulder out early. So they were never pushing myself or my brother or my sister. And all of us were very, very athletic, very competitive. My sister swam in college. I played basketball. So that was something that we always did. But growing up, we played every sport. Joe: Mm JM: I mean, Joe: Hmm. JM: I played basketball, football, baseball, swimming, soccer. I mean, you name a sport. If it had a ball, I probably was chasing it or something. But to your point, I'm being hard on myself. There was a moment I was 10 or 12, I can't remember. And I was going for the state record for swimming and not one state record. I was going for eight, which I think at the time no one had ever broken more than five. And for whatever reason, I just got it my head. I'm going to break eight state records. I can do it. I see the races. I can do this so much so that at the point that I was getting out after the sixth record I broke, I couldn't move. And and imagine my dad is watching this kid get out of the pool. He can't walk because he is so physically exhausted and dehydrated. And my dad said, why are you doing this? Please stop. And I told my dad I I'm doing it because I can. And so it was always interesting. My folks never pushed me that way. They've just loved they they they just, you know, supported as best they could and said, you know, whatever you're going to do, you're going to do. But I was I was always hard on myself. I always wanted to perform at my very best, whether I did or I didn't. JM: And so the greatest part of that, I don't think the competitive drive has gone away. What I've what I've really learned is I guess it would be a growth mindset versus fixed. It's like, look, I I'm going to compete. I'm going to give my very best. But that's where it ends. That's you know, I'm not going to judge myself harshly. The only way I would judge myself harshly is if I didn't put my best foot forward, if I didn't play completely full out. And I will say, looking back, I always did. I always gave 100 percent effort, but I was hard on myself if I didn't succeed. Now, if I give 100 percent, even win, lose or draw, it doesn't matter to me. I can rest on my laurels, knowing I gave everything that I had to give in that moment and it's OK. And so I guess that has been the progression or maturity or whatever you want to call it, because it has shifted. But yes, athletics has been it's still an integral part of of my my life because both my boys are very competitive in what they do and I love it. But I'm kind of taking the role like my parents. I just want them to try their very best. I want to support them. I want to love them, and I'm not going to put additional pressure on them. Joe: The cool thing is, is that you have this knowledge now to share, like each generation, they used to be like old school, right? It's like, you know, you felt a lot of pressure to do to do well. And I think the cool thing about how things are shifting is parents and people in general are becoming more loving and caring and they're not putting that pressure on their kids. At least I hope, you know, the people I talked to seem to be going in that direction. I'm sure there's still that that little league that out there JM: But Joe: Just. JM: There's a lot of them, and typically what I found, Joe and I am totally generalizing, but my wife and I talk about those that are really pushing their kids hard, typically are they're living their sports dreams through their child. Joe: Yeah, yeah. JM: And I think it's awful. It's look, if you played any such level, whether it's college or even some pros, you notice they're pretty laid back. You know, they're like, whatever, man, give your best. And one of the things that has been interesting, I will say being a mindset coach and I work with athletes professionally, there are times with my son who plays very competitive tennis and I am his mindset coach. But there are times where I have to remind myself I'm just dad. I just want to give him a hug and tell him I love him. And that's all that's all that needs to be said. I don't need to talk to him about his mindset. That's been an interesting thing to learn for myself even recently, because, again, yes, I'm a mindset coach. Yes, that's what I do for a living. But in his eyes, I am dad first and foremost the way it should be. And so sometimes I have to do remind myself to just love them. And it doesn't matter that they didn't perform their best, even if they didn't give their 100 percent effort. They want to be accepted and loved. And so that has been kind of an interesting journey. Joe: And I wonder if just your behavior there's a an unspoken thing that you do that's just helping them, but you're not having to work at it as a mindset coach. It's just them observing you in life and hearing things that you talk about. And they just absorb that because. Right. Kids, their minds at this age are super absorbent. So they're probably getting a lot just from being around you and you're not having to be that person forcing ideas and things on them. So it's interesting that just letting them watch you and see what happens. So, JM: Yeah, it's one heck of a social experiment, isn't it, being Joe: Yeah. JM: Trying to give your very best. But, you know, I had my my son's baseball coach say he is an absolute pleasure to coach. He's a good human being. And that at the end of the day, that's what I care about the most. If he ends up playing to whatever level, I don't really care. But if he's a good human in this world, that's what we're looking for. Joe: Yep, yep, so can we while we're on the subject of sports, can we talk a little bit about and you don't have to name names, you can name names. I don't care. It's up to you. But I want to know the progression of you. Are you out of financial services altogether at this point? Is this your main being a mindset coach and an author and a speaker? Is that your main focus at this point? JM: I am juggling both balls in the air right Joe: Ok. JM: Now, so it's interesting because the mindset coach I've done for so long, I just didn't have a label on it. And just because I was in financial services, Joe, you probably know a heck of a lot more. You know what, 90 percent of your listeners know more about financial services than I do Joe: Yes. JM: In 18 years of in the industry. It's just it was never my focus. So to answer your question directly, I do both, Joe: Yep. JM: Really. I'm doing what I've always done and that's build teams and work with them on performance, whether it's in sales or leadership. Joe: Ok, now you mentioned you hinted at the fact that you've worked with some athletes, so can you talk a little bit about that and how you you've worked with them in the past, the ones you might be working with now and anything that you can tell us about that? Because it's interesting to me. JM: I can't tell you names specifically just because a lot of Joe: Yep. JM: It's just confidentiality, but what I can tell you is golfers, for whatever reason I've been thrust into that world, maybe it's because I'm passionate about golf. I truly love golf. I love to watch it. I love to play it. I love the whole idea of you're out there on your own. And and truly, it is a test of the mind Joe: Mrs.. JM: As much as any sport out there. Tennis. My wife played in college. Like I told you, my boy plays competitively. So so far it's been more on the individual sports that people have been referred to me, and that's the ones that I've taken on. But you know, which is interesting because, yes, I grew up playing both, you know, individual and team sports, but I'm more attracted to team sports than I am individuals. And here's the crazy part. There is not a sport out there that truly is individual. What I mean by that, yes, when a tennis player goes out there, typically, unless he's playing doubles, he is all by himself Joe: Uh. JM: Or golfers, certainly by himself. But the team that surrounds them is why it's so intriguing to me. They have a golf swing coach, they have a dietician, they have a mental coach mindset coach. They have a physician. Maybe they have a chiropractor and they have all of this is a team that is helping put their best effort out onto that field or golf course. And so that's been kind of an interesting thing to realize is, yes, it's an individual sport, but there's a whole team of people behind them. Joe: Yeah, it was funny because I was sitting in a buddy of mine, I just went skiing in Utah this past weekend, spring skiing. I have been skiing in twenty five plus years. And I went with my oldest, oldest friend from elementary school, junior high, high school. And we ski start skiing together at seven. And he was going out alone. He's like, come come on out with me as I called. And I was literally nervous all three days because, you know, I'm getting up there and the last thing I want to do is break something. And it's a pretty steep mountain. We went to Snowbird in Utah. I did great. I'm still alive. I have all my limbs, everything's working. But we were just talking about all of that sort of stuff and oh, F1 team sports. So he's looking so he doesn't know anything about F1 and I know very little about F1. But I was like, I think, Larry, they're like 80 people behind that driver JM: The. Joe: And it's just like all of his own stuff. Like you talked about his own physical things and all the things and then diet and then all of the engineers and then all of the pit crew. And it's just like this monstrous team of the most expensive sport in the world. And he's like, do they make any money? And I'm like, it's all bragging rights. I don't think anybody makes any money in that sport. But that's an example is a super extreme example. I wanted to ask you about how things have changed now with the fact that I grew up as an entrepreneur, my father owned businesses, and then I got into the corporate world a little bit after college and the whole world was essentially going to these office spaces. Right. We were all working in these corporate buildings as teams that you could see touch here at any moment, jump up from your desk and go and do whatever. So when you're working with companies now, there's a huge shift that people are working remotely. So how has that changed your business and your style of of coaching these, let's say when we go to the team part of this, you know, in a corporation says, hey, Jim, come in, we want you to work with the sales team. We want them to be more cohesive. How have you been affected by cope with the remote people working? JM: I mean, everybody is lacking in the same thing, and that's connection, I don't care, it's just the world needs that. We need it badly. We need to get it back. And so, yes, the world has shifted in terms of people are working from home. Far more good news. You're spending less on overhead, which means you can reinvest in your business. Your top line, you know, looks even better because now you're not spending maybe so much. But I will tell you this, having that cohesive unit, having that culture that has not gone away. And so what I think people have really had to get more clear on is how are we going to provide that same environment, that same feel, the same clarity that we had, but working remotely. And that has been an interesting challenge because, again, you and I are sitting here on a Zoom beautiful thing about it. We probably weren't doing it this way. I wasn't going to see Joe's face prior to it. But most Joe: Ok. JM: Of the time, right before you're in Arizona, I'm in Florida and we can do it. So that is a form of connection. However, the real piece of people being able to connect, because every time there's a layer in front of us, a computer screen, something in the way we lose that heart to heart connection. So I don't have a great answer for that specifically because you can't really replicate being in the same room. If you and I were sitting together, it would be a different conversation to a degree. We'd be having a cup of coffee or a glass of wine or whatever we were doing celebrating this moment where now, yes, we get to celebrate. And yes, it is a form, but it's just different. So I think everybody is adjusting to that. And that's been something I get to facilitate a live event on Thursday and Friday of this week. And I can't wait because it's walking through the door. It's actually getting the the ability to hug someone and say, you know what, I deeply care about you. That physical connection piece, I don't think that's ever going to stop. So I think what companies are starting to do as the world opens up, as more vaccines happen, as people are more comfortable, they're starting to adjust and say, look, you can work on your own, but we're going to have gatherings. And you know what? We are going to value those gatherings far more than we did before. It's not just another quarterly meeting. It's not just some boardroom meeting. This is a form of connection. This is our bond. This is our tribe. And let's respect that time. So I think there is some beauty in what's happening in that regard. It's taken what we took for granted. And we're Joe: Yeah. JM: Starting to say, wow, that was really unique. That was special. And, you know, unfortunately, as human beings, we have to have that perspective. Sometimes we have to have something, you know, happen to us for us to realize that was really cool when all of us were able to celebrate together, come up with these incredible ideas together before it was like, oh, I got to go to that quarterly meeting again. Well, at least will have a couple of free drinks Joe: That's JM: At the happy hour. Joe: Right. JM: I mean, I've heard people say this now people are clamoring to get together again. Joe: Yeah, and I think it's because, like you said, as humans, we we have to have that physical connection, right. It's important to us. And then the other thing is we give off this energy that it can't be translated through a screen. And so, like, you talking to going to do these live events, I don't know if you're a keynote speaker or you're giving you know, it's a meeting or whatever it is, but you're going to walk into the room and there's going to be an energy. Right, that you don't get now. And that's what's missing. And I think people are so over it and they so want to be out. It's like I have an entertainment booking agency here in Phoenix and I book all the entertainment for all the high end resorts and then all the big corporate events that come. And all the hotels are at 100 percent capacity. It's just because people want to get out and socialize with other people. So they're either coming into town, just stay, or they're doing suffocations, but they they just cannot stand it any longer. It's incredible. JM: Yeah, it's it's been an interesting ride, I mean, this this group that got together at the end of January, we actually were in Scottsdale and six people, including myself, went home and had covered Joe: Oh. JM: It. Now, here's what's interesting. And thank goodness everybody was healthy, everybody was fine. And this is not to get on that whole. You know, I respect where everybody feels on this. I do. But all six human beings that got it, they're all they can't wait to get back together again. Now, many people have been vaccinated and the world has shifted that much in literally, what, three, almost four months that now we can do this a little bit better. But to your point, Joe, people need this connection, man. People they we as human beings, the energy that is such a real thing. I wish I could know your energy that much better than just over a screen. You can feel it a little bit, but it is tangible. You don't have to say a word. If Joe walked through the door, I could feel, oh, that's really good energy. I'm not so sure. But there's always an energy. And that is something that you cannot replicate over these, you know, you know, doing it virtually. Joe: Yeah, so I want to talk about the books in order of how they release before we do that, how has this changed the way you do your work with these individuals, these corporations? I mean, you you know, we've all had, like, people come to me and say, hey, I want to do a virtual event and can I get and I really didn't jump on board to the virtual stuff because for me, entertainment has to be life. I can watch a magic show on TV and say, oh, that's cool. But there's nothing, nothing, nothing like being in an audience in a life situation. So I just I used my energy in other ways, you know, started a YouTube channel podcast of the things that filled my soul. So how have you had to shift your coaching business to deal with those questions that come up, for example? You know, maybe they need to help people stay more positive not being around people, you know, so they come to you and say, hey, Jim, you know, we want you to work with our team. And we think the biggest thing that's lacking is just it's just like motivation or their mindset because they've been alone for almost a year. JM: Yeah, this one was actually pretty easy, unfortunately, because so much of the content shifted and maybe it should have always been there. But the truth is what was happening is there was so much negativity. If you woke up and you turned on your TV, boom, it's right there. If you picked up your phone and social media boom, it was right there. So there was so much negativity being fed into most people's brain. So they weren't actually running their own agenda. It may have been CNBC, Fox or Facebook, Instagram, whatever platform. And again, this is not I don't care which one you watch or listen to. That's not the point. The point was people started losing who's running their agenda. And so that really was the focal point of what I worked on is, hey, you used to get up and you had a routine and you were whether you were meditating or working out or just hopping in the shower, brushing your teeth, it didn't matter. But it wasn't so in your face. His death and there's death everywhere that you're listening about, this amount of cases followed shortly by death. And so what was happening is so many people, whether they realize they're not their lens became extremely negative. JM: And so a big part of what I did is, hey, don't forget your routine. Let's make sure you run your agenda first. That doesn't mean barrier head in the sand. Absolutely not. Not be informed. You need to be you need to know what's going on in the world. I'm cool with that. However, let's not make it the first thing that you do in the morning. Let's not make it that you just haphazardly are just scrolling on your phone or watching TV for hours on end, because what was coming out is really cynical human beings seeing the world in such a negative way. And there was so much going on in the last year, not just covered other things that were creating some of this tension. And so a lot of my coaching just went to that. Who's running your agenda? And I probably should have been asking this question earlier than that, but it became so prevalent. And so in my face, I was like, who's running your agenda? And that's been the majority of my coaching with individual clients, with with teams, with companies. Who's running your agenda and is it serving you? Joe: Yeah, and it's like so many people that are in the same arena that you and I are in with being an entrepreneur and trying to help people just guide them on the knowledge that we've gained over our years and things that we've read and just trying to be helpful that we've heard so many times when the morning you win the day. Right. So it's that I don't know if people understand how important that is. And you can see so many people just will turn on the news while they're making their coffee and just it just like this downward spiral. And the funny thing is, I used to live in New Jersey, commuted on the bus through the Lincoln Tunnel because I had an office on 30th Street and Broadway. And that's when I own my own company. And all the people on the bus would get in, settle down and then open up their newspaper and just sit there. And so I get it, like a lot of these people were financial people down on Wall Street. So they they had to get caught up with the day. But I used to get to the office and feel so I felt like, OK, I have to do this to like all these smart business people and I have to, you know, get to the office and go, oh, God, that was the most depressing hour I just spent. And from that day forward, I never do. I don't watch the news. I don't read the newspaper. I do like I do me. I do what I can do in the world. And I don't know. Yeah, you have to stay somewhat informed, I guess. But I stay away from that like the plague, not just. JM: Well, as long as you're monitoring it, as long as you're making sure it's not running your agenda and you can do that with filters, one of the beautiful things about these devices, you can filter pretty much everything to just get, you know, the important news of the day and not have to scroll through everything. So there are ways to set it up. But to your point, when the morning when the day it's so true, that's never been more true than it is today. Joe: Yeah. JM: Absolutely. As a leader, in order for you to lead anyone else, you have to lead yourself first and take care of yourself. It is probably the biggest thing. And I'm going to generalize, especially with my female clients. I am like, you are not being selfish by taking care of yourself. You're being selfish. If you don't, you're being selfless by working out, taking care of your mind, your body and your soul every day, because then you can take care of your kids the way you want to show up as the mom, the sister, you know, all the hats that that they're wearing. I'm like, you have to take care of yourself first in order to serve all these people. Joe: Yeah, and it's so funny because I think the same thing I grew up with a feeling that wanting money, right. Was this greed thing and wanting to to maybe become wealthy. And it's the same thing with money as it is with health is like in order to take care of you, you have to make sure that you make the money. You need to take care of you and then your immediate family and then down on from there and then do whatever you can. So it's the same thing with health. Those two things are and I always put health first. I don't. For me, it's always been the main thing. I thank my lucky stars every day that I don't deal with any health issues or take any medication. But I worked at it. You know, I go to the gym pretty much every day and it's the only way for me to survive it. Actually, mentally, my mind shifts. If I don't on a day that I don't go, it's not only do I have this mental thing happening where I just it's like I'll you know, but I also think there's a little bit of guilt I put back on myself. Going I had to do is just plan it and do it. No one's running your own your life except for you. I don't you know, you have this feeling like someone still telling you where you need to be or you feel guilty about not doing something. And it's like you said, you have to plan this stuff out. So can you tell me what your routine looks like? JM: Absolutely, I wake up, the first thing I do is I say my daily affirmation, I say that in the evenings with my boys and I say it every morning. Then I set my intention for the day. What do I want to do today? I want to bring great energy. I want to be super productive. Whatever my intention is for that moment, then I will typically get into breath work about five to ten minutes. Depends on how long the exercise takes. Then I'm into meditation, then I'm doing my brain games. Then let me see here. Sorry, I usually have it all. Then I'm doing my exercise at some point. I'm reading my book journaling and then I'm off into the day. Now, what's been interesting with covid is it hasn't necessarily been as structured as it used to be. I used to wake up super early, get it all out of the way, then take the kids to school. Now, it's just been kind of haphazard in terms of I get them all done, but I might get two of them done. Then I'm dealing with kids, then I'm doing that, then I'm dealing with work. JM: So it's just been a little different, which has been interesting because I love my routine, but those are the basic things I take. I tell everybody to simplify it. If you take care of your mind, your body and your soul, it's the three things you have to do. Because you said something about about health. Health is wealth. I don't care how much money you have. If you don't have your health, you have nothing. And so you do need to plan that. And so those will be the three things I tell people, look, take care of your mind. What are you doing for your mind? Are you reading, doing the brain games? What are you doing for your health? Most people have that part down. I'm going to go workout, lift, run, whatever you do, it's it's up to you. And then ultimately, what do you do for your soul? For me, it's meditation. For some people it's reading the Bible. For some people it's taken on nature walk. Some people it's like, I don't care, but take care of those three things, fulfill those buckets and then go about your day. Joe: Yeah, and you know, what I think often happens is people feel they something happens maybe in the morning that that sets the morning off in the wrong way. And whether it's like you go out to your car and you want your tires is flat. And what they do is then they throw the baby out with the bathwater and they don't do anything they don't. So if you have those three buckets, you're supposed to take care of your health or meditation your mind or whatever. And you don't you can't get to one thing. They throw everything out. And so I have learned on days where I'm really tight on time, OK, I'm still going to go to the gym and I'm just going to jump on the treadmill. Normally it's cardio abs. I mean, it's it's weight lifting abs cardio. If I but I don't sit there and go, OK, I don't have time to do all three, so I'm not going to go do any I go and I jump on on a stair stepper and I still get the work done. So I think it's important to make set yourself up for success that you can get at least something done. Don't make it so hard that if you don't do all of it, you feel guilty. You know, it just ruins your day. And I think that's important to. JM: So that's a great point, Joe, because, look, I grew up an athlete, like you said, I played basketball in college. I was working out two hours a day in college, literally just lifting and playing ball and I mean, at least two hours every single day. Well, that's not how my world works today. So should I just do nothing? No, of course not. I changed my goals completely. I want to sweat once a day. That's literally my my workout goals this year. Sweat once a day. Sometimes that means lifting. Sometimes it means lifting and cardio. Sometimes it means playing. Pick a ball. That's actually the one I really prefer to do. But it it doesn't look the same as it did when I was 18, 28 or 38. It changes, but as long as you're taking care of that body one way or the other. And to your point, if it's not perfect, so what? Do something so. Joe: Yep, I agree. OK, keep promising about the book, but I still have one more question to ask you and it's probably going to tie into the book and it's probably going to tie even better into the new book. But I want to ask you about journalling. I want to know. I heard you on your podcast talk about I think you said or your wife said it's the cheapest form of therapy JM: It Joe: And JM: Is. Joe: It doesn't talk back to you and it doesn't judge you. JM: Right. Joe: But I have never journaled. And so many successful people that either know or talked to her had have on my I've had on the podcast like journaling such a big thing. And I'm like, well, why are you doing it? And what is it going to how many times are you going to hear it from somebody and not do it? So I would like to hear your perspective on it. JM: Well, you gave my my opinion is it is the cheapest form of therapy available to us all, whatever it costs for a couple cents and paper, let's say a dollar or so. But why is it beautiful as we have around 50000 thoughts go through our head a day? Some of those are crazy. They are nuts. Some are very negative. Some are very positive. The point is, is they're swirling around. And the reason I think journaling is so important, I'll give you I'll give you a story. So let's go win specific to the company. Back when I was 21 or 20, I don't know the exact time frame I had written about. Let's Go Win and had three circles, very similar to what my logo looks today. Now, I lost that journal. It got put in my memento box. I didn't think anything about it. And I was cleaning out the garage because we recently moved to Florida and I'm looking in and there's this journal. I'm flipping through it. Holy cow. There's let's go in. It's sitting right there. I had marinated on this idea for over twenty years now. The reason this is important, had I gone back through that journal, maybe I get to let's go in that much earlier. JM: Maybe maybe I don't. Regardless, it was a thought that I planted now or thought that was planted in my head that I then put on the paper. When you do that, there's something that happens. It allows you to get clarity. It allows you focus. It allows you to just have a brain dump. And so I don't know why people resist it, because to me, I love writing probably as much as, gosh, writing or reading. I'm not sure which one I love more, but they just fill my soul. And so I just like to write. I enjoyed the blogging part of it. I enjoy writing the books because it allows me to put all this stuff onto paper and some of it's crazy. I guess what the paper doesn't say, Jim, that's crazy. It just doesn't say anything. It's just literally captured what I've written. So anyway, if you haven't done it, it doesn't there's no judgment. Just try it and see how you feel. That's what I always tell all my clients. I'm like, just try it and then let me know how you feel. I've never had a client come back and say, that was terrible. Every time they're like, wow, that was kind of cool. Joe: Yeah. JM: Oh, you know what? I started I just was going to write like half a page and I wrote ten pages. And that's not uncommon because you have a lot going on up there and it's nice to get that stuff out. And again, no judgment. Maybe you don't even look at it again, but at least put it out there. Joe: So do you journal both in the morning and in the evening are only in the evening. JM: That's a good question. The specific journalling that that we're talking about just in the evening, but I write so much now from my occupation that I learned a lot in the mornings as well. So I don't know. I do my best writing times are about four a.m. I don't know why. Just as quiet as can be my brain. Actually, I do know 11:00 a.m. and four a.m. are the two times they say were the most creative. Not sure why that is, but I guess it's quiet. I guess our brains have officially, you know, opened up to that to that space. But to answer your question directly, typically I'm journaling in the Evening Times, unless I'm writing for work. Joe: So without giving anything personal, can you explain what it would look like if you sat down in journals tonight? Like what would somebody write? Like if I sat down, you sat down. How do you even start? How do you even know that you're journaling and not complaining or you're not starting a small book or your whatever? I don't know. Like, what do you what do you. Oh, I, I loved my lunch today. I don't know. What do you write. JM: Why not? That sounds great. So there's two main staples, I will tell you, I journal on two things frequently. I believe we are in complete charge and no one can affect these two things, our activity and our attitude. Now, I do write about that. It's in Champions Daily Playbook. That's why I ask people to do that, because I like to journal on how is my attitude. Today was an awesome did I show up and was I really someone bringing positivity to the world or did I suck today? And by the way, it happens both ways. Like I could have been better today and I just I'd write it down because what I'm really looking for is my patterns, my habits and what's really happening because of, let's say, seven days in a row, I had really crappy attitude. What's really going on? There's more to the story than just I had a flat tire. My girlfriend broke up with me. My dog ran away. You know, all the country song lyrics, something more is going on. And I don't like that. Nobody wants to show up and be miserable. People want to be happy. So to answer your question, I would write about whatever. But if you're looking for a guide, write about the two things you're in complete control of. How is my attitude? How is my activity? Because for my job, did I do a great job for my kids? Was I an active parent or was I slug on the couch watching, you know, looking at my phone? And by the way, we all do some of that at some point. There's no judgment. It's just talking to yourself to say, you know what, I showed up great today. Pat on the back. Great job, man. I up so good today. What can I do differently tomorrow? And that'll show you and really create some answers that can help you show up is the best version of yourself. Joe: How long have you been doing it? JM: Oh, man, I started after high school for some reason, I don't know why in college I studied abroad. So I remember I journaled a lot when I was in the Netherlands and on trains, I would read and learn reading journal. And then I did it all through my 20s and 30s. I just I've always written things down. Joe: Well. JM: I think mainly, though, is because I'm seeking answers just like anybody I want to show up. And in sometimes you don't have somebody that you can't talk to everyone about things without having some form of judgment. So instead, why don't you go to that piece of paper, just get it out there. I remember being really frustrated with a business partner had I set the vile things that came through my mind. Before I wrote it down and actually was smart about it, that would have probably cost a relationship, cost a business partnership, Joe: All right. JM: Instead I wrote it down and then I was like, whoa, that is crazy. But it was in my mind my mind had created something that wasn't even true. So anyway, to answer your question, I've been doing it since probably 18 or 19. Joe: North Korea, so, see, you're lucky because that's that's you know, you can see the value of it now and to be able to have started that long ago. So I'm jealous, but I'm going to take your I'm going to heed your words of advice and I'm going to do it. It might look really dumb at first, but I'll figure it out over time. And like you said, you hit it on the head. It was the perfect answer. Literally. You can't talk to anyone without some small amount of judgment. So to be able to just have you in that piece of paper has to be super helpful. So I'm definitely going to give it a try. JM: I've Joe: It's perfect. JM: Yet to hear how it goes, Joe. I'm excited. Joe: Yeah, absolutely. OK, so let's go in. That was your first book. When did that come out? JM: That came out. Oh, that's a good question, I should know that two years ago, I think Joe: Ok, JM: I really. Joe: I thought that's what it was, too, but I am fearful of always assuming what I read because I looked at so many pieces of data and I'm like, I don't want to say it. And I'd rather have you make the mistake then. JM: I think they did, but I think it was in the last two years, you know, it's almost like we lost a year with covid. So Joe: I know, JM: Was that five years ago or is that Joe: I know. JM: Last week? So I believe it's two years ago that that came out. Joe: Ok, so give us the overview of the you started to you hinted at early in this conversation about it, was you putting down your experiences in your knowledge and things that you thought were what you've read, things you've read, things you've studied just to share. Like, you know, we're hoping that everyone just shares what they can with the world to make it a better place. So give us an idea what that the initial idea behind that was. JM: Now, the idea was for my two boys, I wanted them to not skin their knees as much as their dad did growing up. And so the lessons I also wanted, the documented lessons that I learned from my parents and my grandparents so often get lost where they're no longer here. So these are I had the opportunity to ask the questions and my mentors and authors. And so imagine if you read, I don't know, 17 of 30 books a year and you can take some of that knowledge and hopefully make it really tangible, because for me to ask my kids to read that many books per year, that's probably impractical. But there's some really good nuggets that you can pull from some of these authors. And so the whole idea was to take all of that and put it into a very usable form. So where you could fly from L.A. to New York and by the time you land, you finish the book. I didn't want it to be overwhelming. I wanted it to be an easy read with tangible advice in each chapter. And so I broke it down that way. I just said, look, what are the 12 most important areas that I think people can really effectuate change? And that's how I started. And so it was the best six months of journaling I've ever done in my life was that process. Joe: And that was completely separate, that was you creating the the the outline of not the outline, but the the book coming to life you that was a separate journaling process that you did to create the book. JM: And Joe: Yeah. JM: I have somebody I worked with, and so when I would say an idea and talk about it, then we would talk back and forth and she would interview me. And it just became such a beautiful piece. I'm not saying it's the greatest thing written ever. I'm not saying that. But the way it reads, I want them to hear my voice. And I hope that it comes through that way, that it's it's not a judgment or anything. It's rather here's what I found. And I want my kids to know, like, hey, if dad got hit by a bus tomorrow, here's something that he can leave behind that hopefully, you know, helps them again, not not make as many errors, because just like any parent, I want my kids to to have the best opportunity. And so that was the whole idea. Joe: And I also think that it's the conduit, it's who's delivering the message sometimes that actually makes a difference to the person on the other end. So you could have written the same line in your book that was written in five previous books, and then those people actually read all of those five books. But the way in the context of the way you expressed it in your book with the surrounding text around it, all of a sudden it's an aha moment for someone. So I think it's it's that's why it's so important to share, because it might not make sense coming from the previous five people that they read it from. But somehow you've set them up for success in your book where all of a sudden they get to that one line that they know they've seen. They've heard it, they've read it five other times, never made sense. Now it makes sense. And so I think that's what's really cool about this sort of thing, is that, yeah, we you know, there's a lot of things that came before us. We're not inventing the wheel every day, but we are taking our experiences and our knowledge, putting them into a form that could actually help someone that they never got that help from earlier because it didn't make any sense to the. JM: And that's beautifully said, because there's a saying when when the student is ready, the teacher appears. And so that could be the case, right? Maybe my I don't know that my 11 year old has actually finished the entire book. And that's at some point he will and that'll be cool. And hopefully he will hear it and maybe he'll read it 20 years down the line and maybe he'll say, oh, yeah, I remember that. Joe: Yeah, OK, so then all of a sudden you just wrote the Champions League playbook, so I don't I haven't had the honor to to read these books yet. But I'm going to hear this is when I when I say I don't want to make assumptions about things, but but the gist by the title and where it's coming from, from the first book, it almost seems like it's more of an actionable book from what you originally did. So now you're given the overview and let's go win and you're giving all of the the different steps. But now it's kind of like you're holding people's feet to the fire and the second book and saying, if you follow through, here's all the things you need to do to really make all of this stuff happen. JM: Yeah, so I read a study that said less than 40 percent of the people you ever hand a book to will read Chapter one, and that was a pretty sobering statistic. So I thought, all right, why don't we create something that's one chapter long and the rest is literally a playbook. And I called it a playbook and not a workbook because I didn't want it to feel like work. For those of you that are feeling just like Joe, where you're like, how do I journal? I explain it, make it really easy. And the playbook, it's like ten bucks on Amazon. You know what? You've never journal before. Here you go. This is literally the the how to or you know, and it's not a journal necessarily, but it is it allows you that freedom to just say, OK, this this helps. I can do this. And it takes no more than like maybe five minutes in the morning. And usually it's far less than that and maybe five minutes a night. But again, if you go longer, cool. And so the whole idea is to literally something that you can do every single day to set yourself up to win, because I wish I had started doing this stuff earlier. I mean, I wish I had known this when I was my son's age, when I was 14 and 11. I wish I was doing these things, but I didn't know about all that. So my hope is that people can take it and apply it and say, wow, that was really helpful. Thank you. And when I get those, Joe, I'll man, it just makes you feel fantastic because you're able to help someone get that much further in life. And what what a unique feeling and so fulfilling because it's great if we do something cool ourselves. But how great of a gift. If you can have somebody else say, you know what, I did that, and it really worked. And you're like, that's amazing. I'm so glad. Thank you. Joe: So give us can you give us an an overview of of the latest book and what people will find in other you mentioned journalling. I would think there's a, you know, a bunch of things in there that are going to be super helpful. So can you give us an idea? JM: Sure. So I start the book off very simply with, you know, the basic setting goals because most people don't even write those down. Now you are 60 percent more likely to achieve a New Year's resolution a year later by simply writing it down. You're another 20 percent more likely to achieve it if you actually look at it every single day. So I said, well, I know the stats. Let's go ahead and put that in there. Then I put in four daily affirmations. Most people have never heard of a daily affirmation because they weren't taught to do that. And so my kids, since ev every day of their lives, they've said or heard the same thing. And that is. Are you a leader? Yes. How come? I'm confident, strong, intelligent, athletic, good looking, dynamic, popular talent and independent boy with a growth mindset. They have said that since they were 10 months old. Now, if I could go back in hindsight, I would have said Jamaica. I'm confident, strong and intelligent and leave it at that. But I didn't. And I created this long thing. But they love it. They won't go to bed without saying it to me. And, you know, he's 15 guys. He just turned 15. That's crazy. But anyway, they do that every single night. So that's the second thing is just doing a daily affirmation because the world's going to tell you you're not confident, you're not strong, you're not intelligent, you're not these things. JM: I want you to rewire your brain to say, yes, I am. Who gives a care what anybody else thinks? Yes, you are and you are. Whether you believe you are. You're not. You're right. So that's the second thing you're right is doing that setting that daily affirmation and then it's just a check in. Did you take care of the mind, the body and soul? Yes. OK, yes. No, whatever the answer is, then you have how's your attitude? How is your activity? Rank it, then you have a journaling section and that's pretty much the gist of it. But it's just laid out. And so for ninety days, if you can do this, because it takes the new study says sixty six days to create a habit. Well, if that's true, then let's let's say we miss a couple of days, we screw up. We forgot to let's try for those 90 days and let's just see what happens. What if we created for 90 days we followed this plan. How does my life look differently? Do I feel better? Am I showing up better? Is my business improved as my health improved? All these things should take place by just simply following that exercise. So that was my hope. I've had some amazing people say thank you, God, I'd never journal before. That was amazing. I'd never thought to do this. And that's what I'm hopeful for. Joe: That's great. So one last question, because I want to respect your time, and I know we're close, we have a choice every day when we wake up. Right. And the choice is that you can say to yourself and say out loud and whatever state of the world that I am thankful, I'm grateful, I'm happy, healthy. You know, even if you're not healthy, those words can almost change how you are. And so why is it and I listen, I am just as guilty or more than anybody on this Earth that for the longest time was like, woe is me. Like I bust my ass and I'm not getting the things that I expect to get. And things don't go my way and and always, always looking for the you know, I know I'm going to get there and there's going to be a long line at the store or I'm going to get to this place that I can't find a parking spot if that was me. And it's only shifted recently. And it's a completely different world. And it's it's like, why do we always choose the worst thing? Like we have literally have an equal down the middle. You can choose left, which is crap, or you can choose. Right, which is great. And we just seem to to always choose. And again, I'm not generalizing like the world. I'm just saying that when I see it now from being this other person that I've created over the past couple of months ago, we literally can wake up and just choose to have the most amazing, happy day. And we don't do that. And I it's just mind boggling. JM: Yeah, I don't know the answer why just you're right that many people do. There's an exercise everyone can do, take a piece of paper and draw a line right down the middle on one side, right victim, and then write out all the attributes associated with it on the other side. Write responsible, write all the attributes that go along with it. Now, we don't have time to do that today, but when you do this, you're going to find a couple of things. The reason people choose to be a victim is because you get empathy, you get sympathy. However, what else goes along with that is some really negative stuff. When you choose to be responsible, it's powerful, it's strong, it's in control. And there's a couple of negative, like you could be overwhelmed. You could be this. But the majority is it's very positive on one side and it's very negative on the other. The reason I have people do this exercise is for what you said and you said a beautiful word. I hope people heard it. You choose you get to choose to show up and have an incredible day. You get to choose to have, you know, the most beautiful sunrise. You get to choose that no one else gets to choose that. The moment you figured that out, Joe, now you're free. Joe: Mm hmm. JM: Because it is your choice, no one can make you feel any other way, only you get to choose that. I don't know how long or why or what it's going to take for people to understand that. But it is your choice. And when you do that, you have so much power and you start to create most people here manifest destination. You don't have to believe in it. I've witnessed it. You can read it and it is your choice. So I don't know, brother, I'm happy for you. That's amazing because you're right, you get to choose even having a mate. And I'm sure you have an incredible life before on top of that. But how much more beautiful is it now? Joe: It's it's insane and like you said, you know, I think the universe I literally do. I mean, it's like people might around me that know me now I have to hang with me, might get tired of me saying, yeah, the universe delivered again, but it did. And that's what I'm going to say. And that's just what it is. So sorry. It just it's. JM: The word energy early, rather, and that's I don't that is not where people look, the universe is full of energy. And so what you put out, it will it will reciprocate. If you're putting out nothing but negative, I promise you Joe: Yeah, JM: It is going to come back Joe: Yeah. JM: Because you're attracting that. You put out positive. You're going to recognize the positive. There's a crazy study in the UK where they had people walk down the street. Now, prior to that, they asked there was five and five. Five people said they're lucky. Five people said they were not. Four out of the five that said they were lucky saw the 20. It was 20 pound, not twenty pound note on the sidewalk, four out of the five that said they were lucky. One missed it. All five human beings that said they were unlucky did not see the 20 pound note on the cement. And they did this study again and again and again and kept coming back with the same statistics, so you don't have to believe it. But it is true. It is what's happening and you are creating that. So congrats show. That's amazing. Joe: Yeah, I'm right with you, I believe it. So, J.M., thank you so much, man. Did we miss anything? So the book. Both books I know are on Amazon. Is is there any particular way you would like people to connect with you? JM: Sure, they can go to letsgowin.com, I put out a blog that, you know, that's some of my journalling. Those are thoughts that you get you get to be a part of. There's a free work life balance on there that I take every month. So that's on the website letsgowin.com and then let's go in 365. Brother, any social media outlet, let's go in 365. I'd love for people to follow and check it out and I'd love to hear from them. Joe: And you have your podcast as well, right? JM: Do let's go. When is the podcast? It's so much fun, you guys, I think the the guests make the show. I love to hear their amazing stories, just like Joe did. And I think you did an incredible job. You'd listen. Well, you ask really awesome questions. I hope to do the same. But every time we're going to give it our all and we're going to have a great time. Joe: That's awesome. It was an honor. I love meeting people like you and I. I'm going to make this public promise to you that I'm going to start journaling because I betcha there's yet another step of magic there that I've been missing all this time. So I'm going to add it to my already awesome life to step it up another notch and and get all that stuff out of my head. JM: I love it, brother, I can't wait to hear about it. Thank Joe: All JM: You Joe: Right, man, JM: For having me. Joe: That. Yeah. Thank you so much for coming on. And I look forward to doing more with you down the road. JM: You too, brother. Thank you. Joe: Thank you.

The Joe Costello Show
Sean Swarner Interesting Facts

The Joe Costello Show

Play Episode Listen Later May 12, 2021 73:27


Sean Swarner Interesting Facts - Learn how Sean not only beat cancer twice but went on to summit Mt. Everest and the remaining 6 summits and the north and south poles. He now brings hope to all who have cancer and those who have survived cancer with his organization CancerClimber.org. I loved, loved, loved this conversation with Sean and my hope is next July 2022, I will join him to climb Mt. Kilimanjaro and add the names of my own loved ones, who have had to deal with cancer and either survived or lost their battle with this awful disease. Thanks so much for listening! Joe Sean Swarner Speaker | Author | Performance Coach Adventurer | World Record Holder Author of: Keep Climbing: How I Beat Cancer and Reached the Top of the World Website: https://www.seanswarner.com/ Instagram: https://www.instagram.com/seanswarner/ Facebook: https://www.facebook.com/sean.swarner LinkedIn: https://www.linkedin.com/in/seanswarner/ YouTube: https://www.youtube.com/user/seanswarner Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.libsyn.com Subscribe, Rate & Review: I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to: https://joecostelloglobal.lybsyn.com Follow Joe: https://linktr.ee/joecostello Transcript Joe: Ok, today, my guest is Shawn Swarner. Sean is an incredible human being, you're not going to believe the things that he has done already in his life. And I am so excited for this interview. As I was talking to Sean offline, I was explaining how the whole thought of summiting Everest is just in itself amazing. And then the way that it's been accomplished by Shaun and the adversity that he had to deal with growing up and just to to be this person that he is. So this is exciting, not just at a sports level or at a level of just doing all these amazing feats, but just just the human drive that this person has. So, Shawn, welcome to the show. Man, I am so excited to have.   Sean: I appreciate it. Thank you for having me. I'm excited to do the.   Joe: So I like to start and people that listen to my podcast hear me say this one hundred times that I like to start from the beginning. And I know you probably told the story a million times already, but I like to set a foundation of pollution is where you came from, how you grew up, the main health factors that happen early on, how you got over that and then become who you are today. So if you don't mind, if you could at least give us as much of the back on the floor is yours so as much of the back story that you want to give? I welcome it all.   Sean: I appreciate that and I'm going through my mind, and one of the things that got me through was a sense of humor, which we'll get to, but I'm assuming you probably don't want to go back. Forty six years with my mom and dad got together, then nine months later.   Joe: Yeah, that's got no so that we could start right there. That's what.   Sean: So I came into the world crying and screaming and kicking. And   Joe: There we go,   Sean: I remember it like it was yesterday.   Joe: Right.   Sean: No, I. Well, I guess my I was born and raised in Ohio, just a normal Midwest kid. I remember back in the day before toilet paper was hard to find. We would TPE the coach's house and across country in the house. And then he installed a motion sensor lights. So we had to be a little bit more careful. And I just I learned to. Do things I wasn't supposed to, but I never got caught because I learned how to not get caught. So I was a kind of a studious growing up. But everything was it was completely normal until I was in eighth grade. And I was actually I was going up for a layup and basketball things and I came down and something snapped my neck and it sounded like like, say, for Thanksgiving, you grab the chicken bone and you're pulling on the leg like the ripping the tendons in the ligaments and everything. That's that's kind of what my knee sounded like when I was hobbling over to the stage that to sit down my whole body the next day swallowed up so much. My my mom and dad couldn't even recognize their own son. So they stuck in the local hospital. Willard, Ohio, population was five thousand, I think is maybe five thousand three now. So it's not much just change. Maybe eight stoplights or something like that, but they stuck in the hospital, they started treating me for pneumonia and it's very it's very difficult to cure cancer by sucking on a nebulizer. So I wasn't getting any better. But at 13, I was thinking, well, you know, I'm going to soak up all this attention. I got the cheerleaders coming in. I got my friends coming out of balloons all over my room.   Joe: The.   Sean: It was fantastic. But I didn't know what was going on in my body, which was advanced stage four Hodgkin's lymphoma. And I remember my parents didn't tell me that I had cancer. They told me that I had Hodgkin's. And I can only imagine what they were going through when the doctor told them that I had three months to live. The doctors approach to my my parents said your first born son now has an expiration date. And no one wants to hear that, and I've heard that one of the greatest pains, pains that you can have is outliving your your son or your daughter. So I didn't want that to ever happen to my mom and dad. And I remember very vividly where I was on the bottom of the on my hands and knees in the shower three or four months into treatment. And because of the treatment, I was bald from head to toe. I was on my hands and knees sobbing, just absolutely weeping, pulling chunks of hair out of the drain so the water could go down. And I was also thinking because I was getting ready for school that day, and that's when my hair came up all in that one time in the shower. And I was thinking about what my friends may have been doing at the same time, getting ready for school the same time I was.   Sean: And they were probably worried about the latest hairstyles being popular. If things that in my mind, looking back at it now, were trivial, it meant nothing because there were nights I went to bed not knowing if I was going to wake up the next morning. I mean, can you imagine what it feels like being terrified to close your eyes and fall asleep because you don't know if you're going to wake up. And that's that's what I had to deal with as the 13 year old. So I grew up with a completely different perspective. And thanks to the miracle of modern medicine, family support, prayer just in a will to move forward. I guess if I walked out of the hospital, a hairless, happy, bloated young man and I, I went back into being a quote unquote normal teenager, I guess if there is anything that's that you can say normal for a teenager. But the remission was short lived because I was going in for a checkup for the first cancer when they found a second cancer completely unrelated to the first one. And in fact, on the apparently I'm the only person to ever had Hodgkin's and ask start. And the chances of surviving both of those illnesses is roughly the same as winning the lottery four times in a row with the same numbers.   Joe: Radical Krutch.   Sean: So I think I'm a living, breathing, walking miracle, without a doubt, and. I remember going in for a check for that first cancer in one day, they found a tumor on an X-ray. They did a needle biopsy. They removed a lymph node, put in a hip and catheter. They cracked open my ribs, took out the tumor, are put in danger and started chemotherapy less and less than one day. And they diagnosed me with a type of cancer called ASCAN sarcoma. And that's basically they gave me 14 days to live.   Joe: And this is at age 60.   Sean: 16, so 13, the first cancer, 60   Joe: Yeah.   Sean: Percent cancer, cancer, my my whole teenage years were just they were taken from me, from the cancer.   Joe: He's trying to just picture this in my brain of what happens during those years of like those prom, there's sports and it sound like you were active before 13 when you were first diagnosed. So you are definitely you look like someone that would be athletic. So you're missing all of that.   Sean: It's a green, it just makes me look like I'm.   Joe: No,   Sean: I   Joe: But.   Sean: Was I was I was incredibly athletic, and I, I think I because I was a swimmer, I started competitive swimming at maybe five or six years old. And I think I still have some records from the 11, 12 age group.   Joe: Still hold it.   Sean: Still   Joe: Wow, that is so cool.   Sean: Undefeated in the summer league, went to Nationals numerous times. I loved it, but I also think that's one of the reasons why I'm still alive, is because I looked at things differently from a competitive angle, and I pushed myself not to be the best, but I always pushed myself to be my best. And that's what I did, was going through the treatments, I I knew that when I was going through the cancer that I was going to have bad days. And I also knew I was going to have good days. So if today was a bad day, then I just I focused on tomorrow or the next day when I was going to have a good day. And I when I had those good days, I was I was truly living and learning how to be in the present moment.   Joe: Yeah, that's definitely one of the gifts that would come out of what you went through, which people struggle their whole life to eliminate the noise around them and to be present. Right. Because you literally only have this moment right now. So many people worry about what's on the schedule for tomorrow or the future or all of that. And some people even and I'm totally guilty dwell on the past. So I should have done that different. Where would I be today if I had gone left instead of right? So it's it's really hard to bring that in to be present and figure out how to do that. And I would assume that's a that's at least a good outcome of what you went through, is that it forced you to live every day the most that you could, knowing that this just this who knows what tomorrow will bring, if anything. Right.   Sean: Absolutely. I mean, one of the things that I do every morning before I even get out of bed, the instant I open my eyes in the morning, I don't I don't I never hit the snooze, because if you constantly hit the snooze over and over and over again, you're telling yourself subconsciously, I'm excited about the day. The day can wait. But if you turn it off and I actually have a smartwatch and just vibrate so it doesn't wake up my wife. So I turn I turn the alarm off and I lay there and I tell myself the past is done. There's nothing I can do about it. Tomorrow may never come, so no matter what happens today, today is the best day ever. And I have a choice, we all have a choice to make that day turn out however we want it to, and it starts with that morning intention.   Joe: Also, I don't want to get too far because I had so many questions. This is exciting. Like I said, I'm not going to let you go. So 16. So you're you were diagnosed and you're going through all of these treatments. When do you become and for lack of a better term, quote, normal where they say, OK, we've we've clobbered this thing, you're you're in remission and your hair is growing back. You're starting to feel like average every day. 16 year old, our seventh year, however long it took for you to become being normal.   Sean: That's a great question, and I was I was thinking, while you're talking and I honestly want to say that the answer is never.   Joe: Ok.   Sean: Because no one's ever had these cancers before. No one no one knows what's going to happen to me.   Joe: Yeah.   Sean: I go in once a year for a checkup and they obviously for the past 20, 30 years now, it's come back clean. So I literally see every time I go into to get my blood work done at my annual checkup, I see it as I have another year left. And I try to accomplish as much as I can in that year, so I don't think because of the way I'm looking at it, I don't think I'll ever have a normal life.   Joe: Yeah.   Sean: This is my new normal. And I've just adapted to I think because of everything I've been through, I'm comfortable with being uncomfortable. So when when things are going well for me, I'm like, oh, something's going to happen.   Joe: Yeah, so that was I was going to ask you that I just turned fifty nine and I don't envy having that fact for lack of a better term, that cloud hanging over my head, knowing that I went through something, I beat it.   Sean: The.   Joe: But there's always the chance that it'll rear its ugly head. And so people that have to live with that   Sean: And.   Joe: Sort of pressure on them, that has to take its toll. I would I would assume it has to take its toll depending on how you deal with it. Right. And with everything. When you wake up, you have the choice of saying this is going to be a great day. It's going to be a bad day. And for some reason and you can help me with this and hopefully the listeners will really heed your advice on this is why do we always choose the negative part? Like everyone, people just love to complain about how their job sucks so they don't have enough money or whatever the case might be. And if they and I listen, I've gone through my whole life having sort of this always this negative thing, like, why didn't I ever reach this goal or that goal or this accomplishment? And I'm hard on myself about it. And I also know I didn't do the work to potentially get to some of those goals. So I'm starting at this ripe old age admitting to myself, OK, you just didn't put in the time. But now I'm only in the past few months I've really shifted my frame of mind to say I literally have everything that I need know. I love my life. I I love the person that I live with. Joellen, my life partner I love. I have everything that I need. And why would I just complain all the time of all the things that I don't have? And our mutual friend David Meltzer says you literally have to get out of your own way and let the universe deliver to you the abundance that's there. And we actually get in the way of making that happen. So why don't people choose the negative? That's what I want to know.   Sean: Absolutely, and I honestly, I was thinking of a couple of things, one. We do have we have we do have a choice, and when people start to get anxious, when people start to worry about things, it's because of of two words. What if. What if this happens, what if that happens? What if this happens? What if I get cancer again? But you learn to to realize that for me, it was a it was a house of letters. It was a six letter word that that I was allowed to have power over me. So. And recently, it's funny you mention that recently you were thinking of this, that with because I'm doing the same thing recently, I'm realizing that this word cancer. Had so much control and power over me because I allowed that to happen. And then I realized, why am I freaking out over a word? I mean, don't get me wrong, I completely respect cancer and it can be deadly and it oftentimes is. But it's the word that's making me freak out when I go in for my annual checkups. It used to be smelling sailin that would make me think of all these traumatic things that happened in my past. But it doesn't mean it's going to happen again. So when I realize I'm asking myself, what if. I'm projecting into the future and I'm giving my brain permission to go crazy, to come up with any any cockamamie imaginary thing that I can come up with. So when I when I think of my my treatments or what I think of my annual checkup and I constantly, constantly ask myself, what if I realized, well, what if I get cancer, but what if I don't?   Joe: Yeah.   Sean: Perfect example.   Joe: Yep.   Sean: So I realized that the word itself means nothing. It's what I'm actually placing on that word and how I react to it. So when people hear cancer, they're like, oh, wow. But if this is what I did, I spared myself in the mirror and I said cancer about 50 times over and over and over again. And slowly it lost its power over me. And around thirty five or forty times I looked at myself laughing, what the hell this is? This is crazy. But it's lessened its power over and over and over. You just can't cancel. The more you hear about it, the more you get rid of it, you know, the less power it has over you.   Joe: Yeah.   Sean: And then why people are focused on on the negative so much. I think it's because unconsciously, people are allowing their brains to be programmed by outside sources. If you look at it, most people probably I would say 80 to 90 percent of the world, the first thing they do when they wake up, they grab their phone, they check their emails, they go on social media, whatever it might be. Either they do it before they go to the bathroom or while they're going to the bathroom. It's one of the. And what happens is if you're not paying attention to what you're consuming, because there's that old saying of you are what you eat, but in all honesty, it is you are what you consume.   Joe: Yeah.   Sean: So if people are constantly consuming this, this this false information from the media and with the media, let me turn on the news. You don't have to watch it for more than 30 seconds to realize it's going to be depressing   Joe: Yeah.   Sean: Because it's the same stuff all over and over and over again. You have to wait through, what, 60 different stories to see one positive story that takes a point zero five percent of the hour long program. So what people are doing is they're allowing their brains to be programmed by outsiders, outside sources. That outside source is just constantly bombarding their brain with negativity. However you can you have a choice to, like, wake up in the morning and have a positive affirmation, today is the best day ever. I write down my, my, my daily affirmation and I write down three things that I'm going to do and three things I'm going to try to do or and then at the end of the day, as opposed to turning on the news, I get my journal and write down five things I'm grateful for. So I'm essentially bookending my day on a positive note as opposed to, I would say, most of the world they book in their day on the negative note.   Joe: Yep.   Sean: So if you're constantly being bombarded in allowing negative thoughts into your brain, how do you think it's even possible to be positive?   Joe: Yeah, it's I don't know if you hit it on the head and it's just it's it's letting all of that stuff come in from the outside. You have a different perspective for what you went through. And and I think people just take for granted that they're alive and healthy and have a roof over their head and all of the simple things that we just don't we don't think about. And it's important to take a step back and look at that. And instead you take what if and you say, what if all of this stuff went away?   Sean: Now.   Joe: Where would I be right? Or what if all of this stuff tripled and double that? I had even more abundance because of this, this and this. But it seems like what you wish for, what you think about when people concentrate on the negative things, more of that stuff, it's just   Sean: Mike.   Joe: It's just naturally happens. And I was doing it for so long. And now that I've shifted, it's just completely changed. And it's I don't know if it's because it's so hard to understand that you can do that with your own brain and your own inner power to shift your mindset. And people, though, that's all that fufu stuff. And it's not. It's and I think that's why it's so hard to explain. It's so hard to get people to just give it a try. Just 30 days. Just think towards the most positive thing you can think of. And every day just try to eliminate as much negativity in your life will change. And   Sean: Right.   Joe: It's just really hard for people to understand, I think.   Sean: And I think that I mean, there are some there are a large percent of the population who think they're still positive when they're actually being negative to the brain and they don't even realize it. So a perfect example. You're walking down the street and you're telling yourself, don't trip, don't trip. You're going to fall on your face, but if you turn it around it from a different perspective and you tell yourself, stand tall, stand tall, walk strong. When entrepreneurs when people go into the stock market, whatever it might be, I guarantee you they don't think, oh, I don't want to lose money. No, that's state. That's that. People are thinking, I'm being positive. No, they want to make money to focus on what they want. And that's exactly what happened when I was in the hospital. The story of that 13 year old who was 60 pounds overweight in the bottom of the shower floor. Like I mentioned before, I didn't I didn't focus on not dying. I focused on living. I mean, can you imagine how it would have turned out if I kept telling myself, oh, don't die, don't die, don't die or climbing Everest. Hey, don't fall, don't fall, don't fall, don't don't stop. And same thing for runners and people doing anything athletic. I guarantee you people who are so don't stop, don't stop as opposed to make it to that spot. And then when you make it there, make it to the next spot. Same thing in life. People are saying never quit, don't quit your brain, just quit   Joe: Yeah.   Sean: As opposed to make it to that milestone, make it to the next milestone, make it to the next day. Make it to the next day. Keep pushing forward.   Joe: Yeah, that's a great point, and that's what I think really people should take away from this section of what we're talking about is that even when they talk about visualization, right, it's like you're you your body, your brain does not know whether or not you've accomplished something or not. Right. So why not tell it the best story you can write? Why not say that? I, I, I'm like, visualize you're on top of Everest. Like just visualize it until it happens. Right. It's just so you have to tell your own, your own body the best story possible. And I think that's this portion of what we're talking about should be a lesson to say your your body, your brain and your body is listening. So make sure you tell the right story. So can you take us back to your 16? You're going through all this. What's the next phase in your life?   Sean: A wild and crazy college life   Joe: Ok, where was that?   Sean: That was in Westminster College, and I think looking back at it, because my my teen years and my high school years were taken from me, have   Joe: You're going   Sean: You   Joe: To make up for   Sean: Have you ever seen a movie Animal   Joe: The   Sean: House?   Joe: Absolute.   Sean: There you go. And I was Bellucci. I had a wonderful time   Joe: Nice.   Sean: And I wouldn't change a thing. And I started off molecular bio thinking I was going to cure cancer by splicing genes. And I took organic chemistry and immunology. And it's it's pretty difficult to pass those classes when you don't open a book and study. So. So I actually switched to psychology because I was taking a an introductory psych course while I was going through the immunology class. And I really found it fascinating. And I started thinking, oh, well, maybe there's something here where I can help cancer patients and cancer survivors move on with their lives because it's not an individual disease. It affects everybody in the family thinking, OK, well, I have this great insight. Took the GRE, went to Jacksonville, Florida, to go to work on my master's and my doctorate. And then some things happen. I was working for different jobs, trying to go through my doctorate, which is just ridiculous. I mean, just to focus on education. Wow. So at some point I decided that I hadn't dealt with my own issues. Because of what I went through, I never even considered what cancer did to me and how I wanted to quit on the other end, because in college I just I left it behind. I didn't even bring it up. I mean, there I dated some girls and I was thinking, OK, well, how do I bring up that? I'm a survivor. It's not like, you know, dinner conversation. Oh, you know, how how how's your wife and how is your dinner? Oh, I had cancer. You know, he just   Joe: Yeah,   Sean: Can't do that.   Joe: Yeah.   Sean: So I was so worried about I didn't know what to do. I just I just I forgot about it. So then in grad school is thousands of miles away from Ohio. And it was the first time I actually stopped and looked myself in the mirror and ask myself those deep questions, you know, who are you? What do you want from life? What's your purpose? So I just did some deep, deep understanding of who I was, and then I realized, OK, I had been given a tremendous gift of the mind body connection, and I wanted to help and give back to cancer patients in the cancer world. And that's what I did, more research and more research and kept getting bigger and bigger and thinking higher and higher and like, OK, well, how about we use the biggest platform of the highest platform in the world to scream? Hope the guy. Great. Let's let's go climb Everest. Moved to Colorado just because, like the highest point in Florida is the top of the for the Four Seasons Hotel in Miami.   Joe: And   Sean: So I moved to Colorado, Rocky Mountains   Joe: I love.   Sean: Because I know I don't know too many mountaineers who live in Florida.   Joe: No, no, but it's also.   Sean: So I moved to Colorado and I trained in and literally nine months later flew over to Kathmandu, Nepal, and headed up Everest as the first cancer survivor to some of the highest mountain in the world.   Joe: So what year was this and how old were you?   Sean: Well, that was that was 2002, I actually submitted May 16th at nine thirty two in the morning. So night again almost 20 years ago, 19 years ago. I was twenty seven at the time. That's right.   Joe: And   Sean: Twenty   Joe: You   Sean: Seven.   Joe: Did this with nine months of training.   Sean: Nine months of training and when I first. Well, when I first moved to Colorado, I didn't even have any support. My brother came with me. We lived out the back of my Honda Civic and we camped in Estes Park for two months before we even got a sponsorship.   Joe: Oh, my gosh.   Sean: So we were I remember one morning we woke up, we were going to go climb, I think it's one of the Twin Peaks in Estes Park and we got about two feet of snow in August. And I was thinking to myself, because we're living in the car, that camping, it's like, the hell am I doing here?   Joe: Josh.   Sean: What did I get myself into? My my office was the library and a pay phone bank. So I was calling corporations like Ghatak and Karvelas in the Northeast saying, hey, I'm a two time cancer survivor with one lung and I'm going to go climb Mount Everest in 10 months and I need your help. Ninety nine doors closed in my face.   Joe: Really, that's   Sean: At.   Joe: So surprising that your story is so unique that that one that triggered people to say yes more often.   Sean: But they didn't think it was even possible.   Joe: I guess,   Sean: They thought   Joe: Wow.   Sean: It was physiologically impossible to do that with half your lung capacity, so they like, like I said, nine out of 10 people. I mean, hey, you know, this is my story. Click And I thought it was a joke. So   Joe: What?   Sean: I. I actually have both lungs, but there's so much scar tissue from the radiation treatment, there's really no oxygen transfer. Yeah. So   Joe: So   Sean: It's   Joe: There wasn't removed, it was just   Sean: Like.   Joe: It's just collapsed or   Sean: Now.   Joe: If that's the right term, but   Sean: That's   Joe: The scar tissue,   Sean: A perfect term,   Joe: Ok.   Sean: Yeah.   Joe: Ok, and this that was from the age 16 to one. A lot of the chemo and radiation was done. That's when it happened.   Sean: Exactly.   Joe: Did you have it? Did you also have chemo and radiation at 13?   Sean: I had chemo the first time and chemo radiation the second time.   Joe: Ok, and so it just affected the one long in the sense that it just created just the scar tissue over   Sean: Correct,   Joe: It where it wasn't. So   Sean: Correct.   Joe: It doesn't really work at all.   Sean: Not not really. In fact, in January, I had a little scare, they think it's a long term side effect from the radiation where I had some spots in my back removed and now I have another another starless by about six inches long where they had to go remove that. But if that's all I have to do, the first cancer, the second cancer is 16, 17, and the now 46 year old. Cut it out. I'm good.   Joe: Yeah,   Sean: Yeah.   Joe: Ok, so we are. You said what was the date again,   Sean: May 16th.   Joe: May 16th of two thousand and two,   Sean: Yeah.   Joe: And you were twenty seven years old, OK? And so you trained nine months before you decided you said, I'm going to go do this. So you you set aside nine months to get ready for this.   Sean: Correct.   Joe: Ok, so does the training. Is the training the stuff that I saw in some of the videos where you're you're pulling a sheet behind you and and whatever, your pull tire's up a hill and like, how did you figure out how to train for such as that?   Sean: So that was actually when I when I went to the North Pole a couple of years ago, but for training going up to up Everest, there's lungs Long's peak, which is 18 miles round trip, and it's it's fourteen thousand two hundred and fifty six feet. And I eventually worked my way up to climbing that peak once a week with 100 pounds of rocks in my backpack. So I would train myself and I'll go up onto that peak and into the Rocky Mountain National Park in a bad day, thinking that a bad day on Long's peak was probably better than a good day on Everest. And what I do a training for, for anything like the North Pole, the Hawaii Ironman, I did that. I train harder than I think the event actually event is going to be for two reasons. I get my body in shape, my mind in shape, but also I'm thankful I don't have to train more and I'm more excited about the actual event.   Joe: Right. That's crazy. So what is a normal when you're when you're training for something like that? What what would be a normal day in Sean's life? What time do you get up? What kind of stuff do you like? I can't even fathom something like this. I just   Sean: Well.   Joe: Got done skiing and snowboarding in Utah. I got home last night. I went with the old my oldest friend. We went from elementary and junior high and high school. And   Sean: Now.   Joe: Our families were friends and his father was my dentist. And so he said, I'm going to snowboard spring skiing. I haven't been skiing in twenty five plus years.   Sean: Now.   Joe: Like, come on, let's go. And I was a good skier a long time ago and yeah, I just can't imagine what it would take. My legs were shot. So what does it take. What's Seans the day in the life of of what you do.   Sean: Well, I'm going to challenge you again, then, what are you doing July twenty, Fourth to August seven?   Joe: I saw that and I was like, God, I want to do that. So   Sean: So.   Joe: Explain. So since you're talking about. Explain what that is before we talk about your daily routine. So   Sean: Well,   Joe: Explain.   Sean: Yeah, that would lead into it, because I everybody every year I take a group of Kilimanjaro as   Joe: That's.   Sean: A fundraiser for cancer charity, and what we do is we actually we pay for a survivors trip. And then it's the responsibility of that survivor to raise funds for next year's survivor, kind   Joe: Oh,   Sean: Of   Joe: Wow.   Sean: Paying it forward. Anyone can go. We just fund the survivors trip. And this year we actually have enough funds to send to survivors. So I'm hoping with those two survivors, there isn't. They raise enough funds to take three and twenty twenty two and then maybe five and twenty, twenty three and so forth up to. I'd love to take 15 people, 15 survivors for free every year at   Joe: Wow, that's   Sean: All   Joe: Incredible.   Sean: Costs. But for Kilimanjaro, let's say I would, I would wake up and about four miles from here we have a set of stairs that are pretty steep and there are two hundred and I live at I want to say sixty, sixty four, sixty five hundred feet. So I'm already an altitude which helps a lot.   Joe: Is   Sean: I   Joe: It?   Sean: Wake up in the morning before sunrise and eventually I will do that. That set of stairs 10 to 15 times with about 70 or 80 pounds of rocks in my backpack. So you're talking what, two thousand, maybe, maybe three, four thousand steps up and down in how many stairs are there? The Empire State Building. I think there's one thousand something so   Joe: Yeah,   Sean: Less than I did.   Joe: Right. Wow.   Sean: Then come back, wake my wife up, will do some yoga, eat breakfast, come here to do some work on my laptop, and then I'll probably either do it depending on the day, either rowing, lifting or running, and then on the weekends go out and do a 14 or something like that and a 14 year, a fourteen thousand foot peak. But I also have a sponsorship through a company called Hypoxic Go   Joe: Check.   Sean: Where there's this machine. I call it Arcudi to like R-2 because it's tiny and it actually filters out oxygen to simulate altitude. So I'll I'll do the yoga, I'll do the rowing machine or and I'm doing this because it's a mask of   Joe: For those of you who are listening, he's putting his hand over his face.   Sean: Just randomly. That's that's what I do. And I work out, I,   Joe: That's right.   Sean: I, I'll do those workouts at home on a mask that's connected to this machine and I'll end up doing these workouts at nineteen thousand feet. So what I'm doing is I'm pretty acclimatizing my body because I have to make up for the lack of my right lung because when you get into altitude there's less oxygen, you know, it's spread out, spread out further. And when you get to like if we left, if we went from here to the top of Everest, we'd be dead in five minutes just because of the lack of oxygen. So I treat it and I try to pre acclimatize myself. And when we go to Kilimanjaro, I tell people my training schedule and like, I could never do that. Well, remember, you're training for yourself. I'm training for me and ten other people.   Joe: Right.   Sean: So   Joe: Right.   Sean: This if you're interested, this would be my 21st summit of Kilimanjaro.   Joe: That's incredible in regards to what you eat, are you like a very strict like is everything that you do? Very strict and regimented.   Sean: Not not everything, I mean, I give myself some leniency sugar during the week, I don't do on the weekends   Joe: Ok.   Sean: On Easter. Yeah, I have those little malt balls, you know, the Easter Mother's Day. But for the most part, I mean, no sugar. See, what did I have just for lunch? My wife made a salad. We had some chick like a chicken, homemade chicken salad. We're very conscious of what we eat. We stay away from the sugars. No. And that means no white pasta, no white bread. I love I've always loved broccoli. I just eat healthy.   Joe: Right.   Sean: Every once in a while I'll have a burger or steak, but, you know, maybe once a month.   Joe: Beer, a glass of wine, no.   Sean: Oh yeah, yeah, yeah. I   Joe: Ok,   Sean: Like I actually I brew beer at home too.   Joe: Ok, OK,   Sean: Yeah.   Joe: Ok.   Sean: It's great because when I travel you know, I make the beer, I come back two weeks later I'm like, oh beer.   Joe: There you go. OK, cool.   Sean: Oh.   Joe: So were you afraid going Tavaris like, I can't I can't even imagine I'm telling you to sit here and talk with you about this. I I've watched like we've talked about before, we actually started recording, watched the shows, the different movies or documentaries about it and the getting frostbite and people getting pneumonia and their sister, their body shutting down. And they're having to have the tip of like my nose is red right now from being sunburned and windburn from Snover. And I'm like, I don't I can't even fathom all the things that must go through your brain. And then watching where you cross over on that, I don't even know what it's called. You think I know after   Sean: Remasters   Joe: Watching.   Sean: Have.   Joe: Yeah. The with the ones with the ladders. Right. I don't know how many of those you have to cross and I just I don't know. And then the spots where I don't even know if this is something people point out on the way up or on the way down. But that's where we had to leave so and so like at the all those things go into your brain and you don't want to be the weak link in the chain. Something happens to you and then all of a sudden other people have to descend, like, I don't even know how that works. So, I mean, arriving at base camp must have been just like incredible and scary as hell. I've been like, oh, my gosh, there's no turning back here. It is base camp. And I'm and I said, I'm going to do this.   Sean: I think for me, I obviously was focused on the summit, I wanted to get to the top like everybody else who goes over there, but I think I was more focused on enjoying the whole process because literally when I got to base camp, every step outside of base camp was my personal record for altitude. I had never been any higher than base camp. But so every step was higher than I'd ever been, so   Joe: What   Sean: I   Joe: Is   Sean: Am.   Joe: What is base camp at?   Sean: Seventeen thousand six hundred feet.   Joe: Ok, and you and you're saying this machine you use change you at nineteen thousand.   Sean: But I didn't I didn't have that machine before   Joe: Oh,   Sean: I.   Joe: Wow.   Sean: So the highest I have ever been was just around just below fourteen thousand five hundred feet, which is the highest mountain here in Colorado.   Joe: That's correct.   Sean: Albert.   Joe: Wow.   Sean: And when I got to the summit of Everest, I mean, it was double the whatever, the highest point I'd ever been. But I knew that I was so focused on, you know, you asked me about being afraid, there were times that those little. Negative seeds got planted in my brain, but I didn't want them. I didn't let them grow and I was very mindful and very aware of when those thoughts came in my brain, because looking back at the same analogy of that young boy on the shower floor, I focused on living as opposed to not dying. And when I when I was crossing the ladders on on the glass across the crevasses, I wasn't focused on, hey, don't fall in the crevasse. I was focused on making it to the next side. And when we passed the dead bodies, I stepped over a number of dead bodies. I just I tried to not ask myself the question, I did this when I got back down. Why did he die? Why would nine? And what's the difference, like, why would I why would I be worthy and he wouldn't be. But it's it's like anything in life where you just don't know sometimes. Why did I get cancer? I don't know. It's a whole question. Why me? Why me? Well, the fact of the matter is, it was me. So deal with it. Why not me?   Joe: Yeah, I've had this conversation with other people on the podcast who have gone through some adversity. I you know, I feel like that adversity has been given, fortunately or unfortunately, however you want to look at it, because the outcomes of things that you've learned through what you've gone through have created this person, this mental strength, and someone who is very happy day to day or other people, just no matter, they could be having the most amazing life and they still complain. But I feel like, you know, the adversity has been given to people with strength, and I'm not sure if that's true. It's something I made up of my own brain because I think I'm such a wimp that I cut my finger. I start like I don't know how I would deal with what you've gone through, what other people around me have gone through. So that's what's my own little story, I tell myself. So you just didn't choose me because he knew I couldn't handle it, so.   Sean: But but you never know what you can handle until you're put in that situation.   Joe: Right.   Sean: And people always say say things like that all the time, I don't. My God, I have no idea what I would do if I was ever in your situation. You don't know.   Joe: Yeah.   Sean: And you'd be amazed at how much you can actually handle when you are in that situation.   Joe: Yeah, that's incredible. OK, so you're at base camp and how many are you in? I don't know how you travel if there's 12 or 15 or whatever the number is. How many are there with you going up?   Sean: So, as you probably know, a normal Everest expedition could I mean, it could be 20, 30 people.   Joe: Ok.   Sean: A number of sardars Sherpas, you name it, and clients. I had my brother at base camp, a cook at base camp, two Sherpas and me, and that was it. We were I say I was we were on a shoestring budget, but we didn't even have shoelaces. So we.   Joe: Did   Sean: It   Joe: You end   Sean: Was.   Joe: Up ever getting sponsorship before you left?   Sean: I did in   Joe: Ok,   Sean: One of   Joe: Good.   Sean: Them was Ghatak, one was Capello's, and   Joe: Ok.   Sean: Believe it or not, I didn't even have a summit suit a week before I was supposed to go up for the top. And just my crazy luck. And I know it's not like it was by the big guy upstairs, but the north face came in with my my summit suit and it actually said Shantz Warner Everest base camp on the box. And it got to.   Joe: Wow, that's crazy.   Sean: It's like two or three days before I was supposed to go up in the sun at my summit suit came in.   Joe: That is nuts. Wow. All right, so when you start out, how long does it. How long should it take you or how long is like the most that you can spend up that high? Like, is there a period of time that you have the summit? And I know it's due to weather, too, right. You have to sometimes   Sean: At.   Joe: Just go. We can't make the attempt today. The weather is just not good enough. So what did it end up taking you from base camp to summoning Everest?   Sean: So a lot of people don't understand that when you get there, you don't go from base camp and go up to Camp One, spend a couple of days there, go up to camp to spend a couple of days there, three, four. Same thing from the south side. We actually there are four camps and then with base camp there.   Joe: Ok.   Sean: So we arrived at base camp April 8th and I summited May 16. So almost a month and a half. The whole time we're going from base camp up higher, establishing different camps and then coming back down so that that does two things, we go up with a full back, a pack drop off stuff and then go back with an empty backpack, go back up with a full pack your stuff and go back down. So, like I said, does two things. It actually transports the gear and material that we need to each camp, food, gear, whatever. But it also is getting our body adjusted to the altitude.   Joe: Ok.   Sean: So then we would go up and down, up and down, up and down after we established three and then four when when you get to camp for your before you get to Camp four, you pay attention to the weather. And there's a weather window because everybody has seen that that quintessential picture of Everest with the snow plume   Joe: Yep,   Sean: Blowing off the top.   Joe: Yep.   Sean: That's because that's because the sun is puncturing the jetstream, the just   Joe: Uh.   Sean: Tunnels, the summit, two   Joe: Huh?   Sean: Hundred three hundred miles an hour. So it's impossible to climb on that. So what happens is pre monsoon season, there's a high pressure system that pushes the jet stream north. And that's when people sneak up on top of Everest and come back down. So you see on I guess you don't look on a map, but meteorologists know and they give you a weather window like it's usually mid-May. For us, it was supposed to be May 15th where the weather window was good. But for whatever reason, that may on May 14th, we were supposed to move to May 15th and go up for the summit. I was at camp three and I was suffering a mild form of cerebral edema, which is altitude induced swelling of the brain. And I couldn't move. So every single other expedition who was on the same schedules, us went from Camp three, moved to Camp four and went to the summit that night. The next morning, the winds were howling. They came down the aisle retreat, and they lost their opportunity to climb. I slept on an oxygen that day. The next morning we went up to camp for summited on May 16th, a day later, and there was just a slight breeze in the top. We spent about 30 minutes up there to forty five minutes, which is unheard of.   Joe: Who's medically trained to tell you what's wrong with you or do you just have to know, like there's no one is like in your own little group, it's you just have to know what's right or wrong with you and how to fix it.   Sean: In my group, yeah, I mean, in other expeditions are expedition doctors, you know, everybody there were we made friends with some people from Brown University who were doing a study up there. And it was it's actually really funny. They're doing a study on how the altitude affects the brain. And they gave me this book and I became a volunteer to help with the study. And I was at Camp three when I was acclimatizing and not going up for the summit, but just sleeping at Camp three is going to come back down the mountain like a little Rolodex thing. It's like the size of an index card and you flip it back and on the front of it, you're supposed to pick out which object was was different, which which one didn't belong. And it was like a small triangle, a large triangle, a medium sized triangle and a Pentagon or something like that. Right.   Joe: So.   Sean: And so and each each are different. So big, medium, small square in a circle you pick out the circle. But it was funny. So I get up to camp three and I'm radioing down to them. All right. You guys ready to go? Yeah, we're good. So I flip it over and I'm thinking I'm going to have some fun with this.   Joe: All right.   Sean: So I go page one, the Penguin Page to the House, page three, the dog. And keep in mind, they're all geometric shapes. So   Joe: All   Sean: I think.   Joe: Right, to the naming of animals, as they say, oh, for.   Sean: It's like I take my thumb off the microphone and there's a long silence.   Joe: It's not.   Sean: And all of a sudden, Sean, are you feeling OK?   Joe: Right.   Sean: Like, yeah, why, what's going on? There are no animals.   Joe: That is so funny. Oh, my gosh, they were probably like, oh, we got to get a helicopter up there.   Sean: They were thinking, we need to get emergency up there and get him down off the mountain.   Joe: That is so funny. Oh, my gosh. So is it true that it gets backed up up there when people are trying to summit during a certain season?   Sean: It is now when I was there, it wasn't as bad   Joe: Check.   Sean: And also. A few years ago, there was a big earthquake and there used to be a section called the Hillary Step,   Joe: Yep, I   Sean: And   Joe: Remember hearing.   Sean: So it used to be a chunk of rock that used to hang out. And literally, if you took six inches off to your left side, you would plummet a mile and a half straight down. And there was that section where only one person could go up or one person could go down at a time, and that's where the bottleneck usually was. So with the earthquake, what I've heard is that there's no longer a Hillary step. It's more like a Hillary slope now because that giant rock has been dislodged. But from the obviously you saw a picture from a couple of years ago that just that long queue of people, apparently it's getting a little out of control.   Joe: And that's crazy. Would you ever do it again? Do you ever care about doing it again?   Sean: Well, as is my family or my wife going to hear this this time, I don't know if it calms down and it becomes less popular, I honestly would I would like to attempt it again without oxygen to see if it's possible to climb Everest with one lung and no no supplemental oxygen.   Joe: Who was the guy that did it with no, nothing.   Sean: Reinhold Messner, he's climbed, yeah, and then there's also a guy named Viscose who climbed the 8000 meter peaks. So it's been it's been done numerous times, but the first person who did it was Mesner. I believe.   Joe: No oxygen, it just all right. Yeah, I don't want to get you in trouble with your wife, so we'll just, well, not talk about it anymore, OK? I'm telling you, I can sit here and talk to you forever, and I want to respect your time. I don't want to run too far over. So besides everything you've done every day, the tallest peak on every continent at this point, is that true?   Sean: Correct. Still the seven summits,   Joe: Yeah,   Sean: Yep.   Joe: Ok, and then along with that, you have this series of books that you're doing. Can you explain what that's about, what people find when they give each one of those books?   Sean: Oh, sure, yeah, it's actually it's in the infant stages right now, but it's called the Seven Summits to Success. And I just signed an agreement with a publishing company. We're producing we're publishing the first one which is conquering your Everest, where it helps people bring them kind of into my life and understand how I've done what I've done, not just what I've done, what I've done, not what I've done I've done, not what I've done, but how I've done what I've done.   Joe: Yeah.   Sean: And it's also it's very similar to what I just I put together called the Summit Challenge, which is an online series of individual modules, seven different modules walking people through. Utilizing their own personal core values to accomplish things like self actualization, and at the end they essentially find their purpose and it came from the concept and the idea where after a keynote presentation, so many people would come up and say, that's a great story, but a handful would say, that's a great story. And then followed up with a question, but how did you do it? And then looking at Kilimanjaro again, the average success rate on the mountain is roughly forty eight percent, meaning fifty two people out of 100 don't even make it to the top. And like I said, this this July with my twenty first summit with groups and our groups are at 98 percent success rate, double that of the average. So I was thinking, OK, well what's what's the difference? And the difference is I've been subconsciously imparting what I've learned going through the cancer because my first goal was to crawl eight feet from a hospital bed to the bathroom, and then I ended up climbing twenty nine thousand feet to the top of the world. So all those little things, those little insights that I've learned, I've been imparting on people in my groups. So we do something every day that's different to help people get up there. In the main, the main understanding that they get is understanding what their personal core values are. Because once you hold fast to your personal core values and you have an understanding of a deeper purpose, nothing is going to get in your way.   Joe: So in that kind of brings us back to when you left college and you decided that you're you're camping with your brother and then you decide you're going to do this thing to Everest. Right. Was that the beginning of this this portion of Shawn's life where you're going to do these things? But now there's an underlying what's the word I'm looking for this an underlying mission, which is you're you're doing this, I guess, because you like to challenge yourself. Obviously, you just want to you're so happy with the fact that you have been given this chats with   Sean: Right.   Joe: With what happened to you. You're going to make the most of it. So here I am, Sean Zwirner. I am so grateful that I went through two different types of cancer that easily either one of them could have killed me. One of them ruined one of my lungs. I'm still living. Not only that, but I'm going to make the most of every day. So you go to Everest, you do this, you accomplish that, and then you say, OK, that that's that's it. You went for the biggest thing on your first run. You would start out small. You just like, screw it, I'm going to Everest. And then after that, all these other things would be cakewalks, and I'm sure they're not. But then you did all seven summits. And now, though, is it the underlying mission is that you are you are the voice of cancer survivors and and what you do and I don't want to put any words in your mouth, so stop me at any moment. But is it like you're doing this to to to provide hope for them to say, listen, I not only did it twice, but I am living at the highest level of accomplishment and and I don't know what there's so many words I can think of that you just you want them to all think the same way, just keep pushing forward, get the most out of life. And I'm here to support you. And look at me. I've done it. I'm not just spewing words from a stage. I've literally gone out and done this. So I want you to be on this journey with me, both mentally, physically, if you can. Does that make sense or that I just destroy it?   Sean: No, absolutely, I I wouldn't I wouldn't personally profess that I am the voice of survivors if others want to think that that that's great. But I wouldn't I wouldn't declare myself that. But I have found a deeper purpose. And it did start with Everest, because when I made it to the summit, I had a flag that had names that people touched by cancer on it.   Joe: Yeah, I saw that, yep.   Sean: And that was always folded up in my chest pocket, close to my heart as a constant reminder of my goals in my inspiration, and I planted a flag on the top of Everest. I planted a flag on the seven summits, the highest on every continent. And I also planted a flag at the South Pole and most recently at the North Pole. And I think it initially started. With the concept of I don't want to say infiltrating the cancer community, but getting there and showing them exactly what you said, you know, being up on stage and saying, hey, I'm not just talking the talk, I'm walking it as well. I know what it's like being in your situation. I know what it's like to have no hope. But I also know what it's like on the other side. And I also know what it's like to scream from the rooftops that there's there's a tremendous life after after cancer and it can be a beautiful life. So a lot of people who and like I said, it started off with cancer, but now it's it's reached out to anybody who's going through anything traumatic, which is with the state of the world, is it's everybody now. So with with any uncertainty, you can use that, especially with my cancer. It wasn't the end. It was the beginning. So what the world is going through right now, it's not necessarily the end. It's not uncertainty. How we come out of this on the other side is entirely up to us. And it's our choice. And we can use all the trials and tribulations and turn that into triumph of success if we want. It is all based on our own perspectives.   Joe: So you come off of Everest and then there's your life now become this person who is going to continue to push themselves for because you obviously want to live this amazing life and you don't you just do love the adventure. You love the thrill of the accomplishment. I'm sure all of that stuff that any of us would love, like I went skiing for three days of twenty five years. I'm glad I'm still alive. Sit and talk   Sean: They.   Joe: Because trust me, I wasn't the guy you were talking about walking down the sidewalk and say, don't trip down. I was like, you're fifty nine. You break a bone now you're screwed, you're breakable. And I'm going over. These moguls go, oh my gosh, why am I here? How did you survive? How does someone like that survive financially? How do you survive financially that you now did that? Does that start to bring in sponsorships and endorsements and book deals and speaking deals, or is it just the snowball that happens? And how do you decide that this is the path your life is going to take?   Sean: You would think so, and I've been approached by numerous corporations where the conversation went, something like me telling them, well, I really can't use your product up in the mountains and doing what I do. They say, OK, we'll just take the money we're going to give you by which you really use but endorse our product. So if I went if I went down that path, absolutely, I would be living the high life.   Joe: Right.   Sean: But because I'm a moral and ethical person, I think.   Joe: So.   Sean: It's not nearly what you probably think it is, I don't have people banging down my door for a movie. I don't have people banging down my door for a book. And I think it's because most of the media that we see on television is is paid for media. And every time I reach out to a production company or a marketing company or a PR company, they're usually the first question is what? What's your budget? OK, well, how about the story? How about helping people? Because like I said, every morning I write an affirmation down, in fact, or was it just yesterday was I will give more than I receive. I will create more than I consume. And I think most people who don't understand that think that you're living in a state of lack. And maybe I am. But I'm also incredibly grateful for everything we have. And do I want my story out there? Absolutely. But I don't need to make millions and millions of dollars on it. And what I what I want to do is take those millions and millions of dollars and take cancer survivors up Kilimanjaro every year. I'd love to do that three or four times a year. So I'm always looking for people who can who can jump in here and help me out and share my story with others to give back to help people and help them believe in themselves and help them find their purpose, their their inner drive, their inner.   Joe: Is this is going to sound so stupid, so forgive me, so when you do this, this trek up Kilimanjaro, you do it in July, right?   Sean: Yeah, yeah,   Joe: It.   Sean: People should arrive at Kilimanjaro International Airport July 20 for.   Joe: Ok, is it cold up there?   Sean: It depends. That's a it's not a stupid question,   Joe: Really,   Sean: But   Joe: I   Sean: That's   Joe: Thought   Sean: Like   Joe: You were going to   Sean: Asking.   Joe: Be like, yeah, it's it's it's however many thousand   Sean: Oh.   Joe: Feet. What do you think, Joe?   Sean: But that would be like me asking you, hey, what's it like in snowboarding? What's it going to be like in snowboarding? July? Twenty Fourth. Twenty twenty three. I mean, you have a rough estimate.   Joe: I.   Sean: So in going up Kilimanjaro, it's one of the most beautiful mountains I've been on because you go through so many different climactic zones getting up that you start off in an African rainforest where it can be a torrential downpour. It's always green, but it could be a torrential downpour or it can be sunny and the sun kind of filters through the canopy and you'll see these little streams of light coming to the camp, which is beautiful. And then the next day, it's it could be sunny or rainy, but it goes through so many different zones. You just have to be prepared for each one summit night. However, yes, it's tremendously cold. It can be zero degrees or maybe even minus 10. But with the right gear, you're going to be fine. I mean, there's there's no such thing as bad weather, just bad year.   Joe: Well, here's a good question, and if someone was to go on this is how do they get that gear that they have to buy all that stuff?   Sean: You can you can purchase it or you can rent it over there. I've used the same group of people for the past 18 months, and if you're if you're never going to use a zero degree sleeping bag again in your life, just rent it for 30 bucks. You don't spend three hundred four hundred dollars to buy one. Or if you do buy one and you're never going to use again, give it to my friends, the Sherpas of who use it all the time.   Joe: Right, so basically somebody's going on this could, when they arrive there, get everything they need to make it happen.   Sean: Well, except for your boots and your underwear, you probably don't want to rent me underwear.   Joe: The point well taken. OK, go. So I want to ask you about the Big Hill challenge.   Sean: So great, the big Hill challenge is actually an abridged version of the summit challenge, so some challenges this really in-depth twenty one week program where you take micro challenges and utilize something that you learn and just incorporate into your daily life. The Big Hill challenge is going to be a three week challenge where I take a group of one hundred people at a time and work them through three weeks of little micro challenges to help them along.   Joe: Ok.   Sean: And they're both based on understanding and utilizing your personal core values.   Joe: Perfect. And these can be found on your website.   Sean: Yeah, you can go to the summit challenge dotcom event eventually, you can go to the Big Hill challenge dotcom,   Joe: Ok,   Sean: But every   Joe: Ok,   Sean: One or dotcom.   Joe: Ok, great, because I'll put all of this in the show, notes and everything else, I wrote this question down because I wanted to make it clear that besides your website, Shawn   Sean: Like.   Joe: Swane or Dotcom, you have the cancer Climategate.   Sean: Correct.   Joe: Can you explain can you explain that site to me and what the goal of that site is?   Sean: So cancer climber, cancer climate Doug is actually the organization my brother and I founded that funds trips for cancer survivors to kill javu.   Joe: Ok.   Sean: And actually, if we raise, my goal is to raise about two million dollars to have a mobile camp for kids with cancer.   Joe: Wow. That's   Sean: Because   Joe: Incredible.   Sean: You there are camps all over the country, all over the world, but oftentimes you can't get the survive or you can't get the patient to the camp because of the compromised immune system. So I thought, well, what if there's a semi truck that brings the camp to the kids?   Joe: Hmm, that's interesting. That's a really cool. And the reason I ask about coming on being cold is because Joel in my my better half of 20 some years survived breast cancer. It was lymph node sort of stuff. So taken out and be like God. But she hates the cold like she I would be so cold to do something like this with her. She just literally I mean, I don't know if she would go the last section to the summit because her cold do not mix. She's so happy here in Arizona and she never complains about the heat. So   Sean: My.   Joe: That's the only reason I ask that. So.   Sean: My wife was born and raised in Puerto Rico,   Joe: Ok.   Sean: Forty forty years of her life, and she went with me.   Joe: She.   Sean: She did. She hated the last night, but she's so happy she didn't.   Joe: So it's really just the one night that's the   Sean: Yeah.   Joe: Coldest. So it's one night out. How long does it take to get from where you started out in the rainforest to the.   Sean: So the whole trip itself is a seven day trip up and down the mountain summit on the morning of the 6th, we leave the evening of the 6th, and then after we come off the mountain, we actually go we fly into the Serengeti and do a four day safari to the Serengeti.   Joe: And when you're staying on the way up to the summit, or is it just like caps right   Sean: But   Joe: There? Oh, so that's it. There it is.   Sean: The.   Joe: That's right. So the people that are listening to this on the podcast, you'll have to look at the YouTube video later. But he's showing me the actual   Sean: The.   Joe: Tents and. And is everybody carrying their own tent?   Sean: No, I actually, because I've been there so many times, we pay two porters per person to haul your gear up and all you have to worry about is your day pack some water, snacks, showers, your camera, sunscreen, hat, stuff like that. I don't want anybody carrying anything more than, say, twenty five thirty pounds up the mountain, but the sort of porters will actually give them the leave. After we leave camp, they'll pass us on the way.

The Joe Costello Show
Dr. Bill Dorfman

The Joe Costello Show

Play Episode Listen Later May 5, 2021 43:26


I had the opportunity to sit down with celebrity cosmetic dentist, Dr. Bill Dorfman. We chatted about how he came up in the world from childhood to creating one of the most famous dentist practices in Studio City, CA. On top of the practice he created, he also started Discus Dental with a dear friend of his, which was a global leader in professional tooth whitening products with brands such as Zoom®!, BriteSmile®, and NiteWhite® and they eventually sold the company to Royal Philips Electronics for millions. Dr. Bill has appeared on Larry King Live, Oprah, The Doctors and was the only dentist to appear on ABC's Extreme Makeover. Now with his extremely successful career, he has turned some of his focus towards philanthropy and the LEAP Foundation for high school and college students. You're going to see this side of Dr. Bill and his passion towards entrepreneurship, success, giving back and his foundation. As always, thanks so much for listening to the podcast and I would so appreciate a rating of 5 starts and a review. It would really mean the world to me. Much love, Joe Dr. Bill Dorfman Celebrity Cosmetic Dentist, Partner of Discus Dental, Inventor of Zoom! and Founder of the LEAP Foundation Author of: Billion Dollar Smile: A Complete Guide to Your Extreme Smile Makeover Website: https://www.billdorfmandds.com/ Instagram: https://www.instagram.com/drbilldorfman/ Facebook: https://www.facebook.com/DrBillDorfman LinkedIn: https://www.linkedin.com/in/drbilldorfman/ YouTube: https://www.youtube.com/user/DrBillDorfman Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.libsyn.com Subscribe, Rate & Review: I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to: https://joecostelloglobal.lybsyn.com Follow Joe: https://linktr.ee/joecostello Transcript Joe: Ok, my guest today is Dr. Bill Dorfman. Dr. Bill, welcome.   Dr. Bill: Thank you. How are you?   Joe: Great. So it's a pleasure to have you here with a lot of the guests that I have on, I really like to give the audience an idea of who you are and not just jump in to where we are today. So if can you give us some background of your time line, how you decided to get into dentistry where you grew up, just kind of bring us up to today is is slow, slower, as fast as you want to.   Dr. Bill: Sure, I am a native of California, I grew up in Granada Hills as a little kid, I happen to have an accident where I knocked out my baby teeth. We had a great family dentist. And at some point I just thought this would be a cool thing to do and help people the way he helped me. And so at the age of about three, I said, I'm going to be a dentist. And it just never wavered. I was a weird kid. I mean, how many kids want to be a dentist? Right. But I've always been weird and I've always kind of marched to the beat of a different drum. I never felt like I fit into any, like, group or peg. I just kind of always did my own thing. I was like the Switzerland of a kid. I was friends with everybody, but not really part of anything, you know, like I swam. But I wasn't always with the swimmers and I played football, but I wasn't with the football players and student government. But, like, I just was kind of a free spirited kid that didn't really I didn't really, like, do what most normal kids do. I don't know. It was funny. I had this conversation with my parents recently and I said, you know.   Dr. Bill: How was I as a kid, like was I easy to raise, hard to raise, and they're like, you are perfect like you. And, you know, and I honestly don't ever remember I never argued with my parents. I never got into trouble. I was a weird kid. I just I always just kind of did what I was supposed to do. I guess it was in my mind, like the path of least resistance. I didn't smoke. I didn't drink. I didn't do drugs. Like I mean, I always kind of just did what I was supposed to do and I was happy go lucky guy. And, you know, I went to school and it's funny because I was always voted most likely to succeed in kindergarten, in grade school and junior high and high. And I was like, why do people always say that? I don't know. It was just a weird thing, even in dental school and. You know, we grew up really poor. I mean, I was one of five kids, I started working when I was five years old. I had a job. I worked in in the in the yard for neighbors. I would go pick weeds. And then when I was old enough to push a lawnmower, I would pull weeds and do the lawn mower.   Dr. Bill: And then when I got a little bit older, I got a job working at Ralph's, which is a grocery store. And then I worked as a janitor. My mother was a nursery school teacher. And so I would go to school and I would work as a janitor and clean the schools. And, you know, my parents, I would say we were rich, rich, rich in love, poor monetary things. And maybe that was good, you know? I mean, I literally supported myself. I mean, outside of buying food, all my clothes, everything I wanted, I just I bought you know, it's funny because I have three daughters and I almost feel like when they got into college, I got into college, too, because I was so active in helping them write their entrance stuff and did it. But my parents had no idea. You know, one day I got a letter, I'm like, Hey, Mom, Dad, I'm going to UCLA. They're like, Oh, that's great, sweetie. Then they'll clue, you know? I mean, it was just that's just how it was. I was the independent kid. I just did my own thing. I remember. Graduating UCLA, I got a call from the dean's office and I was awarded the outstanding senior award, which is kind of a big deal, right?   Joe: Yeah.   Dr. Bill: So I call my folks and my mom, dad, I get on the phone, they're both on the phone. I'm like, you won't believe this. I said, well, I just got a call from the dean's office and I'm going to be the outstanding senior at UCLA graduating class. My mother says, What's not to believe? A lot. They picked me, there's ten thousand students,   Joe: Right.   Dr. Bill: She goes, darling, do you really think there's somebody better?   Joe: That's awesome.   Dr. Bill: I'm like, Mom, you're like totally missing. My parents had no idea. And it was actually kind of funny, you know, and, you know, so, you know, I kind of went through and I graduate UCLA. I finished that, you know, going to UCLA. And then I got in a dental school. My first choice is dental, which was a great school. It was a three year program. And as I was entering my senior year, I realized, you know, I've never seen the world or anything. Actually, I had never even really been on an airplane. And it's like I need to open up this practice and be tethered to a specific area. Like I didn't want to do that. So I did some research and I found a program in Switzerland that was the only clinic literally in the world that wasn't a third world country where an American dentist could work legally. Problem is, there were four hundred applicants and only one position, and I was bound and determined to get that. So I had every professor in my dental school write me a letter of recommendation. And they were amazing letters, you know. I know. I wrote them all I   Joe: That's   Dr. Bill: Mean,   Joe: Right.   Dr. Bill: Basically, I would say, can you write me a letter and they do I know I have to   Joe: Yeah.   Dr. Bill: Write another letter and then say I'll write it if your personal lives. So I did that and I soon realized that was getting me nowhere. So then I started calling the director of the clinic back in nineteen eighty three. This was not easy. We didn't have cell phones. You know, I, you know, I couldn't make long distance phone calls from my dental school, you know, what am I getting like keep putting quarters like a lot of your millennialist. Don't you know that you actually used to have to put money in a pay   Joe: Exactly,   Dr. Bill: Phone. Right.   Joe: I was there.   Dr. Bill: Right. So there is and you can use a credit card and none of this. So I would have to time it at home. And and even then, it wasn't easy. A lot of times you couldn't get through. It didn't work at the bank. I start calling him and calling him and I tell kids and we'll talk about my leave program a little later on, there will be life defining moments in your life. Sometimes you plan on, sometimes you don't. Sometimes they just happen. And this was one that I really didn't plan, but it was so fortuitous that it happened. And I'm on the phone with the director. His name was Mr. Schreyer. And I said as I realized I was getting nowhere with these phone calls. Can I take you to lunch? Because I had heard somewhere that, like, you should take people to lunch   Joe: Yeah.   Dr. Bill: And the crazy thing is and he said it, he goes, But you're in San Francisco and I'm in Switzerland, I'm like, no problem, I'll fly there. Which is even crazier because I was broke like I had no money. I couldn't even afford, like the 30 cents to go on the bus every day of school. That's how broke I was. I would walk like two miles. And so he said yes. And I figured out a way to borrow money. And I went to Switzerland   Joe: Wait, but don't   Dr. Bill: And   Joe: Go past   Dr. Bill: I.   Joe: This point. Wait, I want to know what you told your parents when you said I'm going to Switzerland to take the head of the department at the dental school. Out to lunch. I want to know what your parents said to that.   Dr. Bill: They thought it was a great idea.   Joe: That's incredible.   Dr. Bill: Good luck. You know,   Joe: That's   Dr. Bill: I mean,   Joe: Awesome.   Dr. Bill: They had no clue. So anyhow, I did it. There was a girl that I had been friends with my whole life that, you know, I had kind of hoped that I would marry one day. That never happened. But we're still best friends. But I took her with me and I figured if I got stuck on words, she was very talkative and she could help me out. But the two of us took him to lunch and he hired me.   Joe: That's   Dr. Bill: And   Joe: Incredible.   Dr. Bill: It literally changed my life. I mean, I got an opportunity to live in Europe. For two years, I learned how to ski trip about salesmanship of the scandal to I'm completely fluent in French. I   Joe: Wow.   Dr. Bill: And I was really not gifted in languages in school. I mean, and I still I have a godson in Switzerland. I mean and I still have very close friends there. So it was a great, great, great experience for me. And it really gave me an opportunity to see the world. I came back to L.A. I really became enamored with cosmetic dentistry as opposed to just general dentistry. And so I did something that we also teach Italy. It's called Kopi Genius. I realized that the last thing Beverly Hills needed was another cosmetic dentist. So I found the five most successful cosmetic dentists and I called all of them and I said, Can I come in Chattanooga? Shadowing wasn't even a thing back then like they were what do what   Joe: Yeah.   Dr. Bill: I'm like now coming to watch you. And I did. And, you know, there weren't a lot of students at the time doing this, but they all five of them said the same thing to me. You're really different. I think what they were saying in a nice way is you're weird, but they're really different, you know, because students would come in and watch me do dentistry. And that's not what I did. What I did was I went in, I wanted to see how they brought the patients in the intake forms, what they said to the patients, how they brought them back to the treatment rooms, how they presented the treatment, and then how they performed the treatment, and then how they took the patient out of the room, how they collected money. I wanted to get paid and I didn't know how to collect money from people working in dental school. They teach you how to drill teeth. And in the clinic in Switzerland, I didn't have to deal with money. I just did the work. So I wanted to learn how a business ran and all that. And I sat there like a sponge in these offices. And my goal was to make an office better than theirs, to take the best of the best from all of these these guys and make a better dental office.   Dr. Bill: And within two years I did it. You know, I had the busiest and probably still have the busiest dental office in all of Beverly Hills because I copy Genius and that's what I did on Instagram and Instagram became popular. I didn't just do it. I hired a whole team. I'm only going to in the world with a million followers on Instagram. You know, I didn't just do it. One of the things I teach, at least when you go go big and that's what I do, if I'm going to do something, I commit and I do it. So, you know, I started this dental practice soon after that, I started a company called Discus Dental where I invented Zoom. And we grew that company from zero to one point three dollars billion in sales. And I did it by hiring a great team. My best friend, Robert Heyman, was my business partner and he was a genius. And his father was Fred Hammond, who created Beverly Hills Giorgio Cosmetics, two seven, three of all Fred.   Joe: Well.   Dr. Bill: So Robert grew up in that industry. So he knew marketing and manufacturing and advertising. I knew dentistry and advertising. And together we built the largest tooth whitening company in the world. Zoom became Q to became the number one to fly new product in the world. And then we sold that company to Phillips back in 2010. And since then, I've been the featured dentist on ABC's Extreme Makeover, CBS of Doctors New York Times, best selling author, 20 Lifetime Achievement Award. Three Children, two ex-wives. This Thrill Ride.   Joe: Incredible. So I have to ask you, and this is for the entrepreneurs in the audience, because the question that would come to my mind is you're fresh back in the states from Switzerland and you decide that you're going to plant roots and probably one of the most expensive real estate areas in the world. How do you start up a dental office in the heart of Beverly Hills?   Dr. Bill: So I basically didn't put all my eggs in one basket, I grew up in Granada Hills, the difference between Granada Hills and Beverly Hills is astronomical. The only commonality is the word Ilze. Right. But I didn't know where I would usually drive more. I had the advantage holes of all the people I grew up with living there and coming to me. But I loved the allure of Beverly Hills. So I worked as an associate in two different dental offices. So it didn't cost me anything. I was a hired gun. I would go in and work and bring in patients. And I soon realized that I loved cosmetic dentistry. I love the mentality of people in a business area like centricity and, you know, and not so much kind of like family dentistry. And so I pretty much closed down the office and Granada Hills worked in in Century City. And the plan was I was working with an older fellow to buy him out. Well, as soon as we started getting closer and closer to the buyout date, I think my enthusiasm became infectious. And he decided he didn't want to quit anymore.   Joe: Oh.   Dr. Bill: And he was very sweet. And he said, you know, Bill, he said, you can do this by yourself. He said, you don't need to buy my practice. I'm going to stay here, open up your own practice. You have enough pay. I had more patients than he did   Joe: Oh,   Dr. Bill: After   Joe: Wow.   Dr. Bill: Just two years. And so I did. It was really fortuitous that the dentist right next door to us moved out of the building. And so there was a completely furnished dental suite. I didn't have to do any build out at all. All of the plumbing, the gas, the soft, everything was there. So I was really lucky. I moved into that suite is on the 11th floor, my building, and the only thing I needed was all the dental equipment, the chairs and the   Joe: Mm   Dr. Bill: Lights   Joe: Hmm.   Dr. Bill: And this and then another stroke of luck. There was a dentist in our building who was four or five flights above me who passed away. And there was a fully furnished dental office up there of all this equipment. And the building didn't know what to do with it. And it was a mess. It was a mess. So I went up there and and I had it evaluated and assessed. I was going to try and take out a loan or something. And the appraisal came in at close to seventy five thousand dollars for all that. I had three thousand dollars in the bank at the time. I mean, that's it. And so I, I went and I spoke to the owner of our building and I said, listen, I've been up on in that suite and it's it's a mess. I mean, and it was it was really disgusting and dirty. And I said, I will empty the suite. I will take all of the equipment, I will clean everything up and get it ready for you to read. And I'll give you three thousand dollars cash. And he said, fine.   Joe: Wow, that's   Dr. Bill: And   Joe: Chris.   Dr. Bill: I still I still have a lot of those instruments, and I this is 40 years I've been practicing. I have all the surgical like four extractions and I have all that stuff still in my office with that doctor's name engraved in it. But that was how I really opened up my office. I had no budget. I had no ad budget. Like, I couldn't advertise, but I realized something. And as an entrepreneur, I would say you need to sit back, look at your situation and really think outside the box. And this is what I did. I thought, OK, I'm in Century City. There is a five block radius of buildings around my office with 20000 thousand people coming to work every day. Right.   Joe: Hmm.   Dr. Bill: We know on average that 50 percent of those people don't have a regular dentist. OK, so that's you know, what was I'm sorry. It was fifty thousand people in that area. So that's twenty five thousand people don't have a regular dentist that work for me. Of those, twenty five thousand eighty percent of them work in companies with dental insurance so they don't even have to pay anything. They just need to come in and because I'm so close, they can walk over, they wouldn't have to drive. So what I did is I hired five kids from Beverly Hills High School, which is right next door to my dental office. And I made up these flyers for I think I paid three hundred bucks and I had them put a flyer in every single office in Century City. Now, this was way before 9/11, so there was no restrictions   Joe: Right.   Dr. Bill: You could go. And so basically by doing that, the flyer gave people a great first time offering to my office. If they had dental insurance, it was free. And I got something like 80 patients the very first month. And if we continue to do that and so we were basically getting patients in two ways, internal and external. Internal was taking the patients that came in, giving them the greatest dental experience we could and asking them to refer friends and then externally going out and putting out more and more and more flyers and bringing in patients. The next month I got something like one hundred new patients. And honestly, since then I have probably had no less than 90 new patients a month my entire career. And there were I mean, and the average dentist gets like 20. But I have never not been busy even during the pandemic. We've been busy. I'm busier now than I've been in years because I always say I invented Zoom when people think I the video conference, what it was. But people are sitting on Zoom looking at their smile,   Joe: Yeah.   Dr. Bill: Going, I'm not really happy with that. I'm doing more cosmetic dentistry right now than I've ever done in my life. It's it's a   Joe: That's   Dr. Bill: Boom.   Joe: Crazy. And when you said when you started your practice you were going to concentrate on cosmetic surgery, so were all of these new patients coming in just for cosmetic stuff, not for cleanings, or were you doing   Dr. Bill: Well,   Joe: That also?   Dr. Bill: First of all, it wasn't cosmetic surgery, it was cosmetic dentistry,   Joe: Ok.   Dr. Bill: But as a cosmetic dentist, yeah, we do regular dentistry too and do   Joe: At.   Dr. Bill: Fillings and crowns and cleanings and everything else that you need to do to maintain your oral care. But the focus of my of my practice, the thing that really differentiates me from most dentists is the fact that I do, you know, cosmetic dentistry. And I have a very high profile clientele for that.   Joe: Yep, so that's my next question, you get right into it perfectly. How did you get   Dr. Bill: Ok.   Joe: Like with any entrepreneur? Obviously, if you provide a really great service, you're going to get talked about right. And automatically you're going to get known. And like for my business, I have an entertainment booking agency here in Scottsdale and Phoenix. Somebody writes to me, calls me. They have an answer. Within an hour or so, I'm known for my response time. And then the product I deliver is a very high product with you. How did you get that first step into a clientele that you now have?   Dr. Bill: So there's a few things. First of all, you said something, you said you automatically get no wrong. You don't automatically   Joe: No,   Dr. Bill: Get   Joe: You   Dr. Bill: No.   Joe: Do it yourself, you write.   Dr. Bill: You know, it takes work,   Joe: Yeah.   Dr. Bill: You know, I was really fortunate early on in my career, there's a woman that I went to high school with as very close. But if you came in and needed a lot of dental work and said, hey, do you want to barter what I got, even though the barter was   Joe: Yeah.   Dr. Bill: I was so naive when it came to business. And then I said, well, what do you do? She goes, I'm a publicist. I'm like, I don't need one of those. She goes, Yeah, you do. I'm like, I don't even know what one was. So I don't leap of faith. I thought, OK, fine, we'll barter and we'll do it. She was genius. I mean, she got me in magazines, journals. She got me listed as the best dentist in L.A. in L.A. magazine, which was huge that, you know, she she was friends with the editor. She got the whole editorial staff to come in and be my patient. They loved their experience. And so they ranted and raved about my practice. And those things started building up my practice. And, you know, I can get more into the whole PR thing, but that was really a big mindshift for me. I never thought as a dentist I would have like a publicist. I mean, and the crazy thing is today I'm probably the best known dentist in the world. Go figure.   Joe: Yeah.   Dr. Bill: Right. But a lot of things happen. And, you know, I always tell kids when they come to leak, if there's only two concepts that you walk away from from this whole program, these are the two that I think are most important. Number one, don't wait for opportunities in life. Make them, you know, I mean, if I meet another millennial who's sitting there waiting for the universe to do something, I want to scream and pull my hair out. Like the universe doesn't care about you at all. You need to care about you. And number two, when you get an opportunity in life, don't take it. M. it. There's a big difference   Joe: Yeah.   Dr. Bill: When ABC put me on Extreme Makeover dentistry, great TV, not so good. You know, if I watch the first two episodes of that show, I literally stunk like they should have fired me. But at least I was smart enough to know how bad I was. So instead of waiting to get fired, I was proactive. I took acting classes, hosting classes, teleprompter in class. I hired the woman who worked with all the kids on American Idol to sit down with me and teach me how to do what we're doing right now. To interview, to talk. I mean, this was not natural for me. It wasn't at all. But, you know, if you practice and you practice and you practice, you get better at things. And there's a big misconception. We always think practice makes what?   Joe: Perfect.   Dr. Bill: Ron.   Joe: Right.   Dr. Bill: Practice makes permanent.   Joe: Yeah.   Dr. Bill: So with your practicing in, you're not getting the results you want, don't keep doing that, get a mentor, get a coach, hire somebody and learn how to do it right, because you need to practice it the right way. Right. To make it perfect. And   Joe: So.   Dr. Bill: So there was a lot of learning for me. But, you know, at the end of the day, it paid off.   Joe: Then would your grandmother say you look thin? Is that what she said? She looks.   Dr. Bill: The first time I was on TV, I said, Grandpa, this is a woman who never said anything bad to anybody. I said, Gramps, did you see me on TV? She goes, Of course I did. I said, What do you think? She says? You look very   Joe: If   Dr. Bill: Skinny.   Joe: It's.   Dr. Bill: I'm like, But what do you think about what I did? She goes, I'm telling you, you were skinny.   Joe: I want to talk a lot about Lee, because even though you said, like, the universe doesn't care, I I also believe and I'm a big Dave Meltzer fan and he's sort of my mentor at this point that we get in our own way. And so there is abundance out there. And if we get out of the way and we just know what we want and we ask for it and we act accordingly, things come. So this connection with you means a lot to me because of Lee. Before we get to that, do you want to talk a little bit about your own podcast? Just because the lead part of it for me is huge and I really want to concentrate on that until our time runs out, so.   Dr. Bill: Well, I mean, the know the way that my podcast ties in the league is, Leape is a motivational leadership program for high school and college students that we do every summer. And it's always been at UCLA Live. Obviously, last year it was virtual. This year, I think we'll have probably one hundred students live and maybe ten thousand virtual.   Joe: Oh,   Dr. Bill: But   Joe: My gosh.   Dr. Bill: It's been amazing. And if any of your listeners have kids or no kids, fifteen to twenty five will be July 18th to the twenty fourth. They could get more information at w w w dot leap foundation dot com. We've had amazing speakers Paula Abdul, Mark Wahlberg, Anthony Hopkins, Kathy Bates, Michael Strahan, Usher, Apollo Ohno, Jason Alexander. I mean, I could go on and on and on. And these people come, they speak to these kids and they they give them their pearls. They give them their words of wisdom to help these kids become successful. And it's it's an amazing program. And, you know, I was always fearful that people would look at is like one and done like we have them for a week. But by putting out content continuously, we're able to stay in touch with the kids and we have the students stay in touch with each other. And so because I've been able to interview all these amazing people, I started this podcast. It's called Meet the Mentor. And every week I. I interview another person. A big part of Leape is mentorship. The program culminates on Friday with a mentor workshop where I bring in doctors and lawyers and firefighters and writers and actors and actresses, you name it, and the kids get an opportunity to sit and talk to these people one on one and ask them about their careers. And it's so valuable. And it's it's literally the highlight of the week for these students. So I continue that throughout the year by doing this. Meet the Mentor podcast. How is it done? Crazy. I mean, we're number one in Yemen. We're number two in Iceland, number three in Finland. And I think I'm ninety fourth in the category of forty seven thousand of these podcast in the US. And it's it's it's been phenomenal. And the purpose is twofold. One, to keep students engaged and keep, you know, exposing them to different mentors and to to expose parents and friends and family to lead. And hopefully they'll send their kids to the program.   Joe: So how did this come about? What was the light bulb that went off for you to say? This really speaks to me. I mean, I can imagine you are with all the things that you've done, your super busy, and then then all of a sudden have this light bulb go off and say, this is how this is. I want to give back and this is how I want to do it.   Dr. Bill: You know, I've always been very philanthropic and it's funny because I had this common theme in my life where every time I've committed to do something purely for philanthropy, it's ended up becoming incredibly successful for me on a monetary basis with literally no hidden agenda. And I can give you an example after example after example. The first one being discussed, you know, I was working at at the sports club L.A., which is now an equinox. And a woman came up to me named Cynthia Hearn, who I didn't know and said, would you like to help raise money for children's cancer research? Well, I wasn't wealthy by any stretch of the imagination, but how can you say no to that? Right.   Joe: Absolutely.   Dr. Bill: So I said, sure. You know, she said, you are a dentist. I said, yes. And she goes, and you're single, right? I'm like, Yeah, but this is weird. She goes, Well, we're doing a bachelor auction and   Joe: Oh,   Dr. Bill: We need 10 bachelors that we can auction off to a thousand women for this charity,   Joe: Oh.   Dr. Bill: To be honest with you. That was stupid and humiliating. But out of that, I met Robert Hamit Robert Heyman with the other bats are standing in line beside me. By the way, Robert was over last night. We had dinner. We became instant. Best friends were brothers.   Joe: A   Dr. Bill: And   Joe: Simple.   Dr. Bill: Robert and I started discus dental and we literally brewed that company zero to one point three billion dollars. And along the way we've raised over forty five million dollars for children's charities. I mean, a lot of really cool things. But I was exposed to lead through another program that was very much like it was a precursor to lead. And that program was a program for students where they brought mentors in and they asked me to come as a mentor. And unfortunately, the founder of that program passed away. And when you did, I thought, you know, I can make this a nonprofit and keep it going so that that's how I actually got introduced to Lee.   Joe: Wow, that's really interesting. So when did this start? By the way?   Dr. Bill: So LEEP has been going this summer would have been our 13th, so the fourth theme fleet will come up this summer, but I've been doing the program prior to leave for probably 10 to 15 years before I started.   Joe: That's incredible. And when they go out to you said it's on the UCLA campus and where are they staying in dorms, if they.   Dr. Bill: Right, so students come from all over the world. We get kids from Australia, from New Zealand, from Europe and Asia and Africa, you name it, it's like a mini UN. It's really fun. And we get about five hundred kids. They all live in the dorms and we put on, you know, I think the best program of its type in the world. And a lot of the success of the program is the community. I mean, I get amazing speakers and they don't charge us. I mean, you couldn't afford to pay, you know, Anthony Hopkins, Mark Wahlberg. I think we'll get Katy Perry this year. I mean, I we couldn't pay, but when I when I talk to him about the program and they see how much passion we put into this, they say, I'll do it, doc, I'll do it. And now with Zoom, it makes everything so much easier because they don't even have to show up prior to the pandemic. If I had told kids. Oh yeah. Mark Wahlberg told Zoom in maybe like and   Joe: Yeah.   Dr. Bill: Now it's like it doesn't it's like live or Zoom. They're happy to see him.   Joe: That's incredible. It's just really the reason this speaks to me is because I feel like in the world that we're in and I'm I just turned fifty nine in February. So next year is a big year for me. And I think about all the time and I don't want to say it was wasted or regret or anything, but I think about that we end up trying to repair ourselves as adults on things that might not have happened. You had your life a little different. You knew exactly what you wanted to do. You followed your path that you're wired differently, your DNA, and you were able to just literally do all of these things. And I'm sure you've had your struggles. So I'm not I'm not painting this picture of, you know, none of that. But it would be so nice to get to these young minds early and explain that the world literally is your oyster. And you need to follow your. And sometimes I don't know. Right. So you say follow your heart. Sometimes they're confused about it. But I love the fact that you're getting to these young minds earlier and you're helping them to understand things sooner. And that's why this program speaks to me so much. I think it's incredible.   Dr. Bill: Well, I'll tell you what I have found empirically to be one of the most important factors in all of this. When I sit back and I say, you know, what am I most thankful for, you know, from my parents now, they never bought me a car. They never gave me money. But you know what? They did give me confidence. And confidence is currency, if you are a parent, the greatest, greatest gift that you can give your kids is confidence. And the very first thing we do, at least when a kid walks in that door and I open the program, I say to them, hey, when you woke up this morning, whether you think you did this or not, you put a number on your forehead once the lowest 10, Zayat said. How many of you did not put a 10 on your head? They raised their hand. I said, Who picked the number? You did have to take a test. No, did have to do anything. No, I said wipe it off and put a 10 on that. I said, from now on, I want you to walk like a ten top like a 10, act like a ten. But most importantly, surround yourself with other kids who are tense because you're trying to be a 10 and everybody around you use it to guess what, you become a two. So we give the kids these pop soccer   Joe: It's also.   Dr. Bill: Support on their phone ten. And you might hear something super crazy. Joe, we sold discus dental on ten, ten,   Joe: Oh,   Dr. Bill: Ten   Joe: Well.   Dr. Bill: At 10 a.m. to Philipps.   Joe: That's crazy.   Dr. Bill: I think about October 10th, 2010, at nine a.m., the merger documents came on like this is you can't write this stuff. I'm waiting till exactly ten o'clock so that when I go to sleep in 2011, I could tell the kids what a perfect ten day looks like. And we I signed that paper and, you know. It was an emotional moment for me. I always knew as against. I'd be comfortable, I had no idea. That I had the ability. To make the kind of money I made when we sold my company, that was like funny money to me, I didn't even think something like that could happen. I didn't grow up that way, you know? And, you know, and I thank my lucky stars every day for for meeting Robert Haymond, for participating in that charity auction, for, I mean, all the things that led up to that. Because I wouldn't I mean, you should see where I'm sitting right now. I'm I'm on the 30th floor of this beautiful condominium in in Century City. I wake up every morning the happiest guy I know. And so, so grateful for everything. It's it's really it's really been amazing.   Joe: Well, you know what? Good for you. Well deserved. I can just tell by I do a little bit of research up front for these. I want them to be somewhat spontaneous. But I when I went and looked at what I felt, I wanted to figure out more about who you are. I can tell I can tell from just how you look at the kids that are part of the program. I watched one of your talks to them, and I can tell it really it's super important to you and and your generous and loving and giving back. And it just it's very, very cool. And I appreciate you.   Dr. Bill: Well, I think my my my mantra is. Learn so you can earn and then return. And I feel if you can really accomplish those three things, you'll have a lot of happiness and and self satisfaction in life. So that's really what I focus on.   Joe: I agree. Well, I literally could talk with you forever. This is amazing. I'm honored that you came on my podcast. What is the best way for someone to get my guests in touch with you in regards to what do you prefer? And also, the lead program has   Dr. Bill: Yeah,   Joe: The best.   Dr. Bill: I mean, believe it or not, I'm the only person I know with probably a million followers who actually answered all of their demands. So Instagram, I don't do tick tock or even Facebook, but if you really want to reach me, it's super easy. It's Dr. Bill Dorfman, D.R Bilel Dorfmann on Instagram. I promise. I answer one hundred percent of my DBMS. If if you're interested in the program, please go to Sleep Foundation dot com. You can sign your kids up right now. And yeah, I think that's.   Joe: Well, thank you so much, I appreciate it. I look forward to to seeing more about what happens with LEEP, and I definitely want to stay in contact with you. And I wish you all the best.   Dr. Bill: Well, thank you.

The Joe Costello Show
A conversation with Rocky Garza about life, love, happiness and success

The Joe Costello Show

Play Episode Listen Later Apr 27, 2021 50:17


I had a conversation with speaker, life coach and author Rocky Garza on life, the choices we make, our happiness and our individual pursuit our time well spent here on earth. We use me as the guinea pig and Rocky and I walk through my scenario, my situation, my thoughts and actions. It was enlightened and he brings up there really cool thought process about our choices and how there is always two truths and a lie and it's up to accept the two truths and how we take action with those truths. Once again, thank you very much for listening. I am humbled and grateful to be in your ears. Much love, Joe Rocky Garza Speaker - Coach - Author Author of: Kill Doubt Build Conviction Website: https://rockygarza.com/ Instagram: https://www.instagram.com/rockygarza/ Facebook: https://www.facebook.com/rockygarza LinkedIn: https://www.linkedin.com/in/rockygarza/ YouTube: https://www.youtube.com/channel/UC7ID8k8gJC9rR3_1ZuCGWEA Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.libsyn.com Subscribe, Rate & Review: I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to: https://joecostelloglobal.lybsyn.com Follow Joe: https://linktr.ee/joecostello Transcript Joe: Hey, everybody, thanks so much for joining the podcast and I appreciate you listening and I have an exciting guest today. Rocky and I only met recently on clubhouse. We don't know each other that well, but for me, this is going to be an exciting episode. What he does speaks to my heart. We're going to use me as an example today. He's going to work with me during this conversation. And I'm going to ask him questions that any of you might be able to ask him if you'd hired him to coach you and to help you through whatever it is that you're working on. And so I'm very excited to have. Rocky Garza, thank you for coming on, Rocky. It's a pleasure to have you.   Rocky: Yeah, thank you so much, Joe. It is an honor to be here. It was fun being in in the room, a clubhouse together. And looking back now, I was trying to think about it this morning. Like, what room? What are we and where we even landed here. And I don't exactly remember even what the room was, but I know at some point you had mentioned and said something that I thought, you know what? I'm going to I'm going to reach out. I know I shot at the end and we went from there. But I was thinking this morning, how do we even land here? But you know what? I'm I'm the kind of person that. All I know is I was supposed to be here and something you said resonated enough to be able to say, I'm going to reach out and it's been less than 10 days and here we are. So I'm really glad to be here.   Joe: Yeah, that's perfect. It's the way it should happen, it should be that people resonate with each other. There's something that that they can mutually benefit from and then also help the rest of the world by serving in some way. So I'm excited about this. So I like to always start these off to give as much time as you need. But I like to do a back story. I like to know where you are, who you   Rocky: Yeah.   Joe: Are, where you came from, where you are today. How did you get there from where you were.   Rocky: Yeah,   Joe: So if you don't   Rocky: Yeah,   Joe: Mind doing that, it would be   Rocky: Yeah,   Joe: Awesome.   Rocky: Yeah. Yeah, I would love that, I love that. I think so much, yeah. So I'm going to go all the way back to the beginning because I think there is value for all of us as we begin to begin or continue to kind of unpack who we are and what that means for kind of the steps and the actions we will take moving forward from our present day. I think I think we kind of have to go back to the beginning. And I'm sure we've all heard phrase like our origin story or in childhood as like. And so I think there's there's an immense value in our ability to do that. And so I was born in Kansas, but I only lived there for like two weeks. And then I moved back to Dallas. And so I don't claim Kansas other than it's on my birth certificate. But Dallas, Texas, has always been home for me. My parents got divorced when I was two and so my dad got remarried when I was seven. He's still married, has two boys, so I have two half brothers, but I never live with my dad. Growing up after my parents got divorced, I moved a ton growing up like like 13 times before I graduated high school just from either my mom's house, my grandparents back to my mom's to a different house, to back to my grandparents and so on. And really, a lot of that was like pre seventh grade. My mom's been married and divorced a few times, slash jobs, slash just life change.   Rocky: And so we moved. We moved around a bunch. I'm an only child, my mom's only child. So it's kind of just me and her slash me and my grandma immigrant, my grandfather. That's kind of how my life was growing up. And I went to junior high. I went to high school, graduated high school, went to junior college for a couple of years, mostly because I didn't know what I wanted to do and I thought I was going to go play football. And then at the last point, I was like, I don't even really like football that much. Like, why would I go do that for four years? That doesn't seem like a good idea. Anyway, I went to junior college for a couple of years, transferred to A&M here in Texas is where I went to college for my junior and senior year. Where I graduated from went there on a Fulbright scholarship. I'm not an academic and I barely graduated college. But somehow, via my survival tactics of charisma and words and being in the right place at the right time, I found my way into a full ride scholarship to college. After my first semester in college, I lost my scholarship because I didn't make grades. I didn't fail out of college, but I just didn't keep that GPA that you're supposed to have to keep or someone pays for you to go to school. And I look back and I kind of use that and there's probably, you know, a hundred pivotal moments prior to that.   Rocky: But but I always kind of lead up to that moment because I think for me, that was probably the first time as a as a semi adult, I guess I really wasn't adult. Yeah. But a semi adult to realize that was kind of the first pivotal thing in my life that kind of put me in a position to look back and recognize what decisions I had been making up into that point. You know, I think for all of us, I'm a pretty firm believer that whatever happens to us between the ages of six and 12 that we do to survive. And when I say survive, I don't necessarily mean life or death, but I do mean what we do to get by right now. Some of us, that is our story. But for many of us, it's not to say life and death, but survival is how did we form what we knew to be true about the world, test those theories and then find out they were, in fact, true. That's kind of the progression of our childhood. And so to me, that that that a six to twelve age is really foundational in that it's where we are abstracting things to see how they work. I learned between ages of six and 12, if I could out. Thank you. Outtalk talk you out with you out, shmooze you out, connect. You get to know you what I would call it invulnerability now is more a mature adult.   Rocky: I actually look back and say, call disclosure. I was actually not being about anything. I was just disclosing the same information to you. I was told everybody else, but I learned that if I could do that in such a way, it would allow me and in but also keep me safe enough that if you left or I left, you couldn't hurt me like the people in my past had right there. Like this fear of being left is fear of being abandoned, this fear of not being loved. I had found a way to navigate myself in such a way that I could keep myself away from you, but also convinced you we were close enough. Right. And I think this moment when I look at college and losing my scholarship was this moment of going. I'm finding myself. I'm twenty years old. I'm in college. I now have no money for school. I haven't talked to my dad in three years. I haven't seen my mom in a year and a half. I don't really have any really good friends because I've isolated myself in this weird dynamic of him. I close. Am I not close? What does it actually mean? And everyone thinks that I'm awesome and that they love me. And simultaneously I've never felt more alone in my life. And I think if I look at my life, this is not Saddam seven. And a lot of counseling, I feel pretty good about where I'm at today, OK, but I think as I look at that point in my life and go.   Rocky: All the things that I was doing, all the activity that I was that I was involved in, all the pieces that I was attempting to put together have led me to a place where I am the most alone, the most isolated and recognizing, the most unfulfilled that I have ever been. And yet. There has to be something else, there has to be something different than what I have been doing over and over and over and over, and so I don't know what the answer was. I just knew whatever I'd been doing, it ain't working. And we've got to try something else. And so, thankfully, I ended up finding a way to get my grandparents kind of stepped in and help me pay for college. And really from that point on, that was back in 2000, 1990. Sorry, sorry. That's not true. I was back in 2003, really from then until now. So the last 17, 18 years has really been for me, I think as I look back has been this journey of discovery, this this space of going how do I, one, discover and uncover who I am to find a way to believe that is good. So clarity is one thing, but confidence in that clarity is something totally different. And then once I believe it's good, how do I like actively and then actually do something about it? How do I use that in my life? And I end up going to a place called Sky Ranch here in Texas.   Rocky: It's a summer camp for kids. And I worked there full time for a few years right out of college. I was actually on pastoral staff at a church for about three and a half years. After that, I, I met my wife. We started a photography business back in 2010, and we did that full time together for about five years. And then I started the company I have now about six years ago. And so and that's that's a fast track of 15 years there. But in all of that, it was this discovery. Identify. Look to see if it actually is good, if I believe it's good, how do I uncover the wounds? You know, there's there's a kind of cheesy phrase I say often, but it's like in order to dress your wounds, you have to address your wounds. And I think for me, in that period of time, it was like me addressing my wounds, like, hey, how many times did somebody to say, Hey, bro, you're bleeding? Before I was like, look at look at that. That is what that is like. And I think the last 15 years has been this these continual perpetual moments. And it sounds a little bit like sad and hurtful. And this definitely moments of sad and hurtful. But how beautiful does it feel the moment we recognize we have a wound and we address it and then we address it? How much better is that? Right.   Rocky: That's the only way healing can happen. And so for me, that career, such job I have now, for me as a marriage of my life experience, how do I take everything that I've seen and known growing up? How do I marry that with eight years of full time ministry, which I just defined as deeply caring for people with a fundamental belief that I think people are good and then marry that with eight to 10 years of entrepreneurship and go, how do we take what we have experienced in our life with a fundamental belief that we are good and put that together to go, what do I get to experience? What is the freedom that could come from the reality of allowing myself to fully be known? What is involved in that freedom, is it is it that I get to make more money if that's my desire? Probably is that I get to have deeper relationships, because that's something that I'm pursuing. Probably this that I have find a freedom to sit in isolation. I don't feel fear that everyone's going to judge me or not like me. And I consistently say I'm a people pleaser when in fact I'm just a relationship seeker, probably. But I think it comes back to we have to start in a space to go. Am I known? I mean, do I know myself? Do I have a language for that? Am I clear about that? Do I have confidence that it's good to have the courage to live it out? And then finally, do I have the conviction that says this is a deep sea to believe I am no longer willing to jeopardize? And that is that is that is a huge and mixed with millions of, you know, variables.   Rocky: They go into all that. But for where I am today, you know, why why do I wake up every day today? I would say that I wake up every day because I want to be able to challenge others to live vulnerably so that you can experience the freedom that comes with being fully known. And in that freedom, as I think where we landed this place to go, financial freedom, relational freedom, confidence in ourselves, trust that we are good. But I think it begins by beginning to live vulnerable because I define vulnerability as creating the opportunity to see and be seen by others. If we can't start there, then we don't actually know what we're looking at. So there is no clarity. And if there's no clarity, then the other things don't happen either. And so it's not always that linear and that simple. But at the same time, I kind of think sometimes it is that linear and it is that simple. We've got to be able to go back, though, to a place to where we can begin to uproot and uncover what those fear, doubts, obstacles, insecurities are so that we can begin to make a path for.   Joe: Wow, that's powerful. That's a you sure went through a lot in the short amount of time, but I appreciate you laying all that out. Do you feel like you're in the best place you've ever been at this point in your life?   Rocky: I simultaneously feel like I am actively moving in the clearest I have ever felt about me, what I do and what I can do for someone and question almost every day, is this exactly what I'm supposed to be doing? And if I could really hone in to what I really think I should be doing and I say doing, I mean, for me to get really specific business, product, service price, like if I could if I could, you know, move ourself in, do I think in my life, is this the most clear and free I've ever felt? 100 percent. I was looking back and Instagram on my 30th birthday. I'm thirty seven now. I'll be 38 this year. So almost eight years ago I was in Marfa, Texas with two friends. We had no kids yet and I put an Instagram post. It was like me standing back when I used to have hair shout out to people like you and me and I used to have hair. If you don't know that John are both bald and I would sit in front of this bus and Marfa and I had a I was like 11:00 a.m. with a margarita taco on my hand. And my my my caption was like, I'm 30 years old today. It is the best I have felt physically, mentally, spiritually, like emotionally like man. Great. And I look back at that and I'm like, what a joke. Because today I'm like, I feel the muscle, you know.   Joe: Right.   Rocky: But but I think. What does that mean? It's been a constant upward trajectory. No, it's been I mean, it's been it's looked about ninety seven bell curves between that moment in this moment. Right. But I think in that to go why I think I come back to to answer your question. Why come back to go like like with like service, product and price. I guess that they're right because I think I feel so passionately about who I am and the belief that it's good and what I can do with that, that it's it's a whole other conversation and podcast episode to go. How do we take that and then find a way to meet a need in the market, find a way to communicate it effectively at a price point that is doable, that is actually sustainable, that it's not in exchange for time for money and really build a business out of that. That's the million dollar, no pun intended question for me. I think a lot of the time, and it's do I believe in myself what I'm doing? And I'm confident in my ability to affect change in someone's life. One hundred percent do I always feel confident, know how to sell that know. And I'm learning more and more that that's OK. And I need to go to people for help, because if I go back and say, what am I good at, it's not any of those things. And so that's OK. But I have to be able to be also confident if I need people in my life to help me, because I'm not sure I can get there. And I should say that I am 100 percent positive I cannot get there by myself.   Joe: Right. So you, from my understanding now, you are a coach as one of the things that you do. You're an author,   Rocky: Yeah.   Joe: You're a coach. We're going to talk about your book later on in the podcast.   Rocky: Yeah.   Joe: The book that's coming out. But from my own research, I saw certain podcast episodes you were on, either the ones that you've done yourself with guest videos. And I saw a piece about identity mapping that   Rocky: Yeah.   Joe: You talk about. And I   Rocky: No.   Joe: Also saw another thing about self-love and but it was self-love focused towards men. Right. Because it is a different thing for sure,   Rocky: 100   Joe: Because   Rocky: Percent.   Joe: Guys just don't think that way. Right. And so that was interesting   Rocky: Yep,   Joe: As well.   Rocky: Yeah.   Joe: But so let's use me as an example. OK, I am not allowed to tell you my   Rocky: Great.   Joe: Age because I've been telling my age too much and my girlfriend Joan thinks that I'm going to it's going to cause   Rocky: Gary.   Joe: Me harm if I keep saying the age that I am. And so I'm not going to tell you my age, but I'm all of that. So I've gone through my whole life, my and my ultimate focus when I first started was to eventually tour the world as a as a musician and be this this famous drummer and tour with John Mayer, let's say, as an example. So I went to college for music, but then when I got out,   Rocky: Ok.   Joe: I became an entrepreneur living down in New York City. I still played I was like a weekend warrior and would go play gigs Thursday through Sunday. But my focus was building a business because I took the mind frame of, hey, instead of me acting as, you know, like being a musician and struggling to make it, how about I do something that I know I'm really good at right now, which is being creating a business, being an entrepreneur, having that business be successful so that I didn't have to worry about the financial piece any longer.   Rocky: Right.   Joe: And then having the money I could go then now pursue a music career and buy my own tour bus and pay really great musicians to be part of my band. And so this was the frame of mind that I had a   Rocky: Mm hmm.   Joe: Bad, bad move. I would never tell any person in any career of anything, not just music, but anything that you got to go full steam ahead towards the thing that you want. And you can't have there. There's people that have different theories on burning the boats and not having a Plan B.. I'm all in on just have that plan and go for it. Burn the boats, do not   Rocky: Yeah.   Joe: Have a plan B and it'll happen if you put in the work. I didn't put in the work musically, so I am where I am today. I take on all the responsibility that I didn't do what I needed to the 10000 hours to be John Mayer Strummer.   Rocky: Ok.   Joe: Now fast forward, I am successful as a entertainment booking agent. I own my own company and Phoenix started   Rocky: And.   Joe: It in 2011 was when it first started and it became more official around 2013. Successful Management Entertainment Booking Agency does it. I like it. I'm good at it. I like doing it. Does it does it make my soul sing now? Probably not. Have I found what I should be doing in this world? I don't think so.   Rocky: Hmm.   Joe: Am I? Am I servicing? Am I, am I giving to the world something that leaves a legacy that I feel really good about? Yeah, I put hundreds of musicians to work every year, but is that how I want to be remembered? I don't think so.   Rocky: Hmm.   Joe: So this   Rocky: Yeah,   Joe: Is where   Rocky: Yeah,   Joe: You come in. So   Rocky: Yeah.   Joe: I sit every day now and I struggle going, OK, I like doing my podcast. I love meeting people like you. I love surrounding myself by humble, kind, successful entrepreneurs, not the ones who are constantly boasting on clubhouse that they're multibillionaires and this and that and taking pictures in front of Lamborghinis and jets. So I'm going through the struggle of identity purpose.   Rocky: Yeah.   Joe: How how do I service   Rocky: Yeah.   Joe: The world?   Rocky: Yeah, so my first question almost always, and not because I expect you to be and if you rattle off an answer, we're going to get to work. If you don't, then you're in the 99 percent of us who don't always have an answer. So I'm going to give that give you that freedom, but. What do you want?   Joe: So this is the part that's that's tough because we talk about I want financial freedom where I never have to think about money   Rocky: Ok,   Joe: And   Rocky: Ok, so   Joe: I   Rocky: Let's   Joe: Want   Rocky: Let's   Joe: It and   Rocky: Yeah,   Joe: I want   Rocky: Let's.   Joe: It also because I want it to be able to help my family first, which is what's in my brother. I don't have my my parents are no longer alive, but my brother and my sister, obviously my immediate family, Joel and my girlfriend of 20 some years,   Rocky: Mm   Joe: You   Rocky: Hmm.   Joe: Know, her daughter, my two kids and my immediate family. And then from there, I would love to be able to give four hundred thousand dollars a year to that charity and give a million dollars   Rocky: Mm hmm.   Joe: A year to that charity   Rocky: Mm hmm.   Joe: And go over and build schools and whatever. Just I didn't   Rocky: Great.   Joe: Have to think about that piece of it.   Rocky: Yeah, OK, so tell me what you feel like, what is accomplished if and when you are able to achieve. If I say what do you want and your your guttural response is financial freedom. OK, then you broke down for me what financial freedom looks like the practical side of where the money would go and that what do you feel like is going to happen? What what what changes for you if you don't have to think about money anymore?   Joe: That any action that I take that I feel is the right action. I don't have to think whether or not money plays a part in that because   Rocky: Ok.   Joe: That has been removed, that's been taken off the table. So   Rocky: Ok,   Joe: If   Rocky: So right   Joe: I   Rocky: Now,   Joe: Want   Rocky: Right   Joe: To.   Rocky: Now, the biggest yeah, right now the biggest inhibitor to you really pursuing what you believe at any moment is that the first question that always comes to mind is what is the financial implication of this decision? And do I have the capacity to make this decision based on my other responsibilities? I have other places with money. If I choose this question number one always is, what is the financial implication of this?   Joe: Correct, especially   Rocky: Ok.   Joe: At an older age, you're like, OK,   Rocky: Yeah.   Joe: I've been busting my hump, by no means am I in any financial distress, but   Rocky: Sure.   Joe: To just never   Rocky: To not   Joe: Have   Rocky: Think   Joe: To   Rocky: About   Joe: Think   Rocky: It.   Joe: About saying, hey, I'm going to go and spend a month helping someone to build schools because it's something that's good and it gives back that would be cool to do.   Rocky: Ok, OK, so let's use that, let's use that, why can you not go to Guatemala in May for a month this year to go help build a school? Why can't you go do that?   Joe: Because if my focus is on doing something like that, then I can't focus on at this point running the business that I have because I had four employees before covid hit. Now it's me. So I'm literally running this entire business alone   Rocky: Ok,   Joe: Again.   Rocky: Ok,   Joe: So   Rocky: So   Joe: Then   Rocky: So   Joe: The money   Rocky: What?   Joe: Dries up if I'm   Rocky: Yeah,   Joe: Not doing it right.   Rocky: Yeah, right, OK, so what I want to say, so it's beautiful. Thank you. What I just heard you say is right now, the problem is not money right now, the problem is, is that given a million external circumstances that we couldn't control. I mean, I'm with I'm in the same boat as you right now. The problem is not money. Right now. The tension we are feeling is that we are in a position that our work requires us and therefore our work. We are questioning whether or not that work that we are doing is the thing we actually want to be doing.   Joe: Mm hmm.   Rocky: Because I think if you love your your work that you were doing. Again, we're not saying you don't like it. Everybody who's listening to shut out your client or work with him, he loves it. OK, just take that note. Joe   Joe: I   Rocky: Loves a job.   Joe: Like that good.   Rocky: What we're saying is it's not that you don't like your work. We're saying is you feel a longing to pursue and do something different with your time. Maybe we're not sure what that is, but it feels like the contingency point to give you the freedom to go do that is the fear that if I did that, will there be money? And by money we mean will there be safety? And by safety we mean will we be OK and be OK? Meaning will I have to rely on someone again? Because where I've relied on people in the past, they have let me down and I am unwilling to commit myself to something or someone where that you have the opportunity to walk and it is fundamentally destructive to me. You will not do that to me again,   Joe: Yeah,   Rocky: I   Joe: It's   Rocky: Fear.   Joe: Yeah, and it's it's wanting to do something so much bigger.   Rocky: And I would say I want to challenge you because it's part of my my role and who I am as a person. I want you to do an exercise whenever we're done here, just we'll chat about it again offline is I want you to really look at it and define what it is that you see and believe that impact is directly a result and equal to size as opposed it is to depth. I hear you saying I want to have a broad impact. I want to do something that is seen in big and broad. And I'm saying just as a challenge, not because I'm right. What about depth, though? What about the artist who you work with who couldn't pay their rent or buy groceries for their child if you weren't helping them get gigs? And their life is fundamentally different because you've taken a risk to be the person that allows them to pursue something they love that you are unwilling to do, that they are willing to do. And you are actually a proponent for hundreds of musicians to fulfill their dreams and feed their families. And without you as an integral piece in their life, they would not be able to fulfill something significant in who they believe that they are. And so because of that, your impact is so deep and with one hundred artists is in fact broad and wide that your breadth and depth actually are simultaneously changing the lives of every person that hires you and works with you because they could not pursue their dream in the way you wish someone would have stood in the gap for you.   Rocky: Twenty five, thirty five years ago. You are consistently standing in the gap and providing that opportunity for somebody else. And so sure, it's not sexy like a school in Guatemala. Sure. It's not as elaborate as writing a massive check that we get to go to the gala for when covid is over and drink champagne and someone gives us a little plaque that we're going to throw away so we don't care about anyone. That's not why we gave the money. It's not the freedom. I wish I could just choose whatever I want. No, you don't. You are choosing what you want. If you didn't if you weren't choosing what you wanted, you wouldn't be doing it. Every human being. This is not just for Joan was for you as a listener. You say I'm doing something I don't really want to. Yes, you do. If you didn't want to, you wouldn't do it, period. Well, I can't do that because if I don't do this, I won't have enough money.   Rocky: So go to an apartment, sell your house, get rid of your car, ride the train. You don't you don't want to do that. You want to do that. You do what you want. Generally speaking, outside of external circumstances were always out of our control, so I don't don't hear me say that if you're like no, you don't understand where I'm at, you're correct. I don't understand where you're at. And if you're in a position, you absolutely have to do what you're doing and you hate it. Hey, we've all been there to some degree. So, I mean, I'm not making a statement about your abilities any anybody who's listening, but here specifically for most of us. I think you are doing what you want. I think that we lose sight at times, that it is, in fact what we want. I think we lose sight at times about the impact we are really making. And so sure, maybe, maybe, Joe, maybe 40 years ago, you didn't actually make the step that you wanted to take. But there's hundreds of people a year that you are affecting change and given the opportunity to take that step and you and only you are the one who has the capacity to stand in the gap and help them do and see that.   Joe: Yeah, I mean, you're right, I've gotten phone calls and texts and emails saying, dude, you saved my life this year, like you doubled my salary. You brought more opportunity to me than I have ever had before. But again, while I I do like getting those calls and emails and texts and I feel good about that, I feel like someone of my I don't know who   Rocky: Say   Joe: I am.   Rocky: It, own it, own it,   Joe: Yeah,   Rocky: Own   Joe: I   Rocky: It,   Joe: Know.   Rocky: Say it.   Joe: It's just like I feel like there's I could do so much more I, I feel like I'm not living big enough.   Rocky: Ok, so   Joe: That's   Rocky: Now   Joe: It.   Rocky: So great, great. That is totally different and has nothing to do with financial freedom, it has nothing to do with depth or breadth. It is you feel in your soul there is something else before you die that there is you want to do and pursue. And so I'm going to challenge you to say, stop saying that it's financial freedom that's keeping you back. That is untrue. You have there has never been a moment you and I have known each other now for thirty five minutes. Exactly. OK, I know by just talking to you for thirty five minutes, there has never been a moment in Joe Costello's life where he did not do and have the capacity to make sure that he had the ability to care for himself and those around him, no matter how hard it was he was one to do, was required to make it work. Right. OK, so nothing is different today than it was five years, 10 years or twenty five years ago. So if there's something big and audacious, if there's something you're saying, this is this is it for me, if you're saying I want to get to the root of this, other thing that I can talk about is like money and freedom and donations and but all those things fall into a philanthropic legacy, giving of self to other space that we could pick a million things that fall in that category. Great, then let's do let's figure out what do you want, what do you where do you really want to have an impact the day you're gone? They say, man, that guy Joe. And I bet I bet if we went to your clients, you've had the longest that we pick 10 clients, you've had the longest and gave them a worksheet to fill out and say, could you give me the attributes about Joe? You appreciate what you like he has done for you, the impact he has had in your life.   Rocky: I bet every single one of them would say something very synonymous to each other. And then if we could take that and say, where do you want to point that energy? That is, Joe, the music, the the gigs, the entertainment that just happened to be the cat catnap, the tunnel, the vessel, the we knew it and we liked it and we found it out. And then, you know, fast forward 20 years. We wake up and here we are. I think you're just saying I want to change the vessel, the work you're doing. We've already agreed as impactful that people texting you saying you are changing my life, saving my life. That's like shit that people send like a paramedic or their brain surgeon or like they don't send that to their music manager like that. What is it? What does that even mean? OK, so we're identifying the beauty. We are identifying the uniqueness. We are identifying the very specific impact that you have had, you currently have and you future have to continue to make. We are saying we got to do the work to identify where do I want to point that and where do I want to spend the next 15, 20, 30, 40 years? Pointing that energy, because I know that I have it and I know that I can now have a proven track record to say that it's there. So where do I want to point it? I don't want to think about what is inhibiting me from changing the direction. I want to identify the component that's going to allow me to push it in that direction, moving forward.   Joe: So I've had other people on the podcast that in one of them happens to be a gentleman named Patrick Combs and Patrick and his partner Eric run a company called BLIS Champions. And the whole   Rocky: Ok.   Joe: Purpose of it is finding your bliss, right,   Rocky: Mm   Joe: Finding your   Rocky: Hmm.   Joe: Purpose. It's it's this and this has been the theme this whole past year. OK, what is it like? What covid hit the world shut down. Right. And so the entertainment business got hit really hard. So I basically had a list of things I wanted to do. Pot   Rocky: And.   Joe: Starting the podcast was one of them starting a YouTube channel, which alone was another thing we did. But when I sit here and I and I went through an exercise the other day where you make two columns and you make I forget what it was, if it was like all the things you're good at and all the things you're interested in or something like that, and you draw you draw an arrow from the left column to the right column to the thing that sort of matches that to narrow down what it is that you think you're here to do. That's the part. And I look at it like, oh, got at my age, why would I still be struggling to find that thing? And that's the frustrating part. It's like, how do people and this is for my audience to is anybody who's listening. I am so jealous of anybody that has found their purpose. Their bliss wakes up every day. And this is what I was put here to do. This is what I love to do. And not only does this all work for me, but it actually creates this world that I like to live in. And I   Rocky: Mm   Joe: Can   Rocky: Hmm.   Joe: And I and I don't think about money like the combination   Rocky: Mm hmm.   Joe: Of having doing having your bliss, your purpose in your bliss and at the same time not thinking about anything financial. To me, that's like the match made in heaven.   Rocky: I mean, my answer to that is, yeah, if you can if you find that course, hey, I'll pay for both of us to go. And I say that and I say that, like 50 percent joking, also 50 percent serious. But I say that because I want to humanize for you and mostly for you and me, because we're the ones talking. But for all for all the listeners as well. I want to humanize the reality. I want to humanize the statement of what you are saying and feeling that even as me someone that I want to make a few assumptions and then you correct me if I'm wrong, but like, you go and you're like, OK, I look at this guy Rocky, and I look at this brand. And sure, he had a few broken links on his website, but that's OK because I helped him with that. But he has a brand and he's on point and his colors and his photos and he seems clear about what he's doing. I heard him on clubhouse and I said yes on a podcast. And like he seems to be speaking true that he seems to be genuine and all the words you would use that you hope you could say about yourself. Right.   Joe: Mm   Rocky: Like   Joe: Hmm.   Rocky: He has this and isn't it so? And I say, all right, because I want to humanize the reality of I'm sure that is true. I feel pretty good, like I have to be able to stand Konovalenko. I don't have to caveat that. Like, I feel like I have a good marriage and I work really hard at it and I'm trying to be the best father that I can that with limited knowledge and experience of not really having one growing up. And I feel like I'm I'm crushing it like I love my kids and they love me and and both, not one or the other like. And so I have this idea that's another a book that I want to write. So I'm going to pitch it here and we'll see if it resonates. It resonates. We'll write it if it doesn't and scrap it, it's terrible. So but I think we all live me too in this space. And there's an old game we used to play when we were young called Two Truths in a Lie. Right. And you say two things are true. One's a line. You got to guess which one. OK, I think we all collectively every day we have been lied to and conditioned that we forget that there are two truth in a lie and every statement that we make and then we go, I'm either going to have this or this, I'm either going to be the full expression of everything that I am and financial freedom. And it's this or. Life's really pretty hard. It's kind of dull and it doesn't make sense. And here's the here's the premise. There's always two truth in a lie. And the two truths always exist together. And the only thing that makes life real and worth living is that both truths have to be true simultaneously. The lie is, is that we think we only have to believe one. The lie is we think only one is actually true, so you know what 20, 20 was like for you and me, I'm going to chalk it up. It was actually. Man, it was good, like we   Joe: Mm   Rocky: Did   Joe: Hmm.   Rocky: Good work.   Joe: Yeah.   Rocky: And it was really is costing a lot on your podcast I don't get to listen   Joe: Yeah,   Rocky: To,   Joe: Absolutely,   Rocky: Ok,   Joe: Yeah,   Rocky: It was good and it was really fucking hard.   Joe: Yeah.   Rocky: Both. So the two truths in the lie are that it was really good and really hard, and the lie says it's either one or the other. And so for this scenario, for you guys, there's got to be more I got there's got to be something out there that I could just get this then this thing would happen. But instead I'm going to have this, which means Branfman, I guess it'll just be it is what it is and everything is fine, but like, it wasn't great. It was just like it worked. But no, what if what if what you're doing now is working and the fact that it's still working, it's just you and yes. Sad for employees are gone. So you're still kind of you're back in the weeds again. But what you're doing you can do in your sleep. You've got a podcast. You got this guy who's bald with big eyebrows on your podcast right now we're talking about. So you've got at least a little bit of autonomy to do what you want. Right. So   Joe: Yeah.   Rocky: Both can be true. Continue with what you're doing and streamline, streamline, put it down, the process is squeeze it, systematize it as more than you already. I'm sure it already has, but make it even more so that we only need one employee to make up for the three we had last time to give by your time a little bit for you to have a little bit of breathing room to go. Both. I think I can have this and I think I can create the the depth of impact in every arena of my life. And I'm looking for. Because I think if we could you and me are our listeners, but you and me. If we could find the places where we recognize the depth of our impact was not only significant, but but it scratch the itch we had in ourselves and our own soul. We would think less about money. And listen, I'm a proponent for money, I'm trying to make money, I got a business, I want money and I got a business. Got what? I want some asking me how much I could make. I want to try to find it, make as much as I can. I'm all about money. I'm not. Let me be very clear about that. But when I go to my son's room. He says, hey, dad, can you play with me? I say, sure, what you want to do. He says, I want to wrestle.   Rocky: So Carlos Resum. And I am experiencing a moment in my own life that I. Hardly ever experienced. As the son in that engagement. I'm not thinking about how much money that I made. I'm not thinking about who did or didn't pay their invoice. I'm not thinking about it. I can I if I get enough money, you know what, I could wrestle as much as I wanted to if I made more money. Now, you know what? I can wrestle as much as I want to. That's the end of the statement. I want to challenge somebody asked me I did a bunch of along along here on Instagram with stories yesterday and a good friend of mine messaged me this morning, he was like, hey, this is awesome. Also, why does this matter? And he wasn't being a smart aleck. He was like, hey, I'm trying to help you to the expression to be fully known. He was like, what happens when you're fully known? Why is that good? Why does it matter? What do I get? Why don't I like hey, you're a really good friend because I don't want to talk about that much. I appreciate that. But I think our conversation today is kind of leading to that place to go. So. So. So then what, Rocky? You're just telling me to just do what I want. No, I'm telling you, friend, you're already doing what you want, but I feel like you don't want to do it.   Rocky: So I'm asking you to ask yourself the question. What do you want? Do you want to know the language that you need to have for yourself so you can find the freedom to be able to pursue what you want? OK, then let's do that. Let's figure it out. Why do you do what you do? How do you do what you do? What do you do? That's what identity mapping is. Identity mapping is a four hour process that you and me walk through one on one or me meeting a group of your team or organization walking around eight hours and you will leave, I can guarantee you 100 percent you will leave with a clearest language you have ever had about how you operate as a human being, not in professional, as a human. You will create 13 words in a piece of paper that are make impossible, it is mathematically impossible for anyone in the world who has ever been alive or currently alive. To choose the same 13 words as you know, put them in the same order, it's impossible. And we're not even talking about you, is it what you're doing? We're talking like 13 arbitrary words on a piece of paper. Some of us need language. That's step one. We need language because we we're not clear. We would call step one clarity. But clarity only comes when you can see something.   Rocky: If you don't have a language, you can't see it. So everything is a reaction. It is not as being proactive, as us being reactive. Right. So why aren't some of us need language, I just don't know I know what I'm good at, but I don't really know how to. OK, you need words. Some of us have words. And that's where we get calls. Like we have the words. I know why and how and what I know I've been doing a long time, but I just doesn't feel like it's good, you know, like I feel like I'm missing something. Well, that's that's comforting. Confidence is simply the ability to believe that it's good. You referenced earlier and we talked about self-love and self care and how much specifically for men. You know, I think men most men lack confidence. We make up for the fact that we lack confidence by trying to conquer something as opposed to cultivating something. We think if we could conquer it, then we win as opposed to cultivating in the last forever. Nobody nobody who conquered something has a good legacy there, Nazel. But every person you know, has a great legacy, cultivated something beautiful because it's still growing. That's what a legacy is. A legacy is not a marker of what you did. A legacy is the fact that what you did continues to thrive. Right, and   Joe: Yeah,   Rocky: So   Joe: It's powerful. Yeah.   Rocky: Some of us, some of us need clarity, some of us need language, we get the language, then we need clarity. Can we see it right can as it makes sense to us? Yeah, OK. Do we have confidence? Can we look at that and believe it's good self-confidence, the ability to look at yourself and say that is good. OK, got it cleared, economists break what's next? Do you have the courage? Courage is the ability to move forward at any pace, even in the midst of fear and unknown, are you willing to every day move towards the thing that you really believe? Yes, I am. Great. And you did yesterday? Yep. Today, yes. Great lasta conviction. Do you believe that thing in your soul enough? That it is a deep seated belief you are unwilling to waver from or jeopardize. No matter what comes your way. Motivation is still your mind, you can do it. Inspiration is telling your heart, you can do it. Conviction is telling your soul. You must do it. That's why Solasta takes a lot of work. And so some of us, we need language, some of us get the language and identity mapping, then we need clarity. That means you need help, you need a coach, you need somebody like that.   Rocky: And me, it could be anybody you want, but we need somebody in our life to go, hey, help me see what I can't see and help me have the confidence to believe that it's good. And then at some point, people are in my space, I would say at that point, hey, we did our thing, we got the words, we got the clarity, we got the confidence. We're ready. We're doing it. I need a plan. Great. I have a good idea. Ideas. You probably know somebody other than me to execute the plan, though, because I'm still trying figure out my own plan. I'm problematic, I should say, about your plan. Right. Like I know where my but where the stops and I'm ready to pass you on to the next man or woman who can really help you. And so I think for all of us, we find ourselves in any variable of any one of those places at any point in time. I think it begins by us acknowledging that what is that place and where am I at and. Am going to do with that.   Joe: Yeah, I feel like going through this process and and not only telling you this story on this episode, but having this conversation with myself, having this conversation with Joel and having it with other friends, that to me, it's the more and more I can talk about it. My hope is that the clarity will come because I have to like you said, it's super important. It's the language, right? It's how you you talk about it and it's saying more of what you want as opposed to more what you don't want. Right. Because what you think about and what you talk about is what ends up becoming more true. So you have to be careful about the words you use and the thoughts you think. That's why it's fun to talk about this with you, because the more and more I talk about it, I feel like it helps to my hope is that it helps to bring clarity at some point and say this is what you were here to do. And the cool thing is that you hit upon us. Don't throw away the baby with the bathwater, like you've already done a lot of cool things and you've helped people. But, you know, I think I'm in a different stage now. So what do I do with the remaining 40 years of my life if I if I actually reach that so.   Rocky: And I think and I think I think that's a great question to ask, and I think there's great opportunity for all of us to think about, to consider, regardless of our age and where we are in our career, our job, whatever language we want to use, there is great opportunity for us to be able to say today, I'm not going to talk about what I don't want. I'm going to talk about what I do want. And then I'm going to I'm going to look and say, do I think I have the words to identify that I don't ask for help? I don't either. My whole business is how many people have identity, purpose, understanding who you are, what that means and why that matters to be fully known. And you know what I did last week and I'm doing this week, I got three different people coming to my office to help me work through a process to really hone in my why what it is because I can't do it by myself. Doesn't work that way, humans, we're not we're not designed that way. Right,   Joe: Yeah.   Rocky: We have only we only have eyes in the front of our head for a reason. So we were made to have somebody behind this or maybe have somebody with us.   Joe: Yeah.   Rocky: And so I hope if you're listening today and you're joining us wherever you are in the car at home, and I hope you if I could leave you with anything, it would be that don't let fear of school and security. They all exist. They're all human. We all have them to say, you don't. You're lying. Yes, you do. Showing the crowd coming to the party. But don't let those things be the lie that we continue to believe that inhibit us from really pursuing the things that we love, the people we love, the relationships that we love. Daouda, sneaky man. It doesn't it's it's sneaky. It doesn't care about us. It is. It will wait. It is patient. And just the moment you think you have the guts to do it, it's going to remind you of some B.S. story that somebody told you at some point in your life. Don't don't let it win. It's work, it's work, digging, uprooting, cultivating, unearthing, it ain't easy. I can tell you that right now. Not easy, but it can be not easy and good. Both things can be true. Is it's only going to be one or the other. That's just not how it works.   Joe: Yeah, that's a powerful statement you brought up in this this episode. It's really cool that know the one line, the two truths, right? It's it's a cool thing to remember to keep that in your mind. And I. I like that a lot. It was really cool.   Rocky: Yeah, yeah, thank you.   Joe: So do me a favor. Let's talk about the book   Rocky: Yeah, yeah, so   Joe: Well.   Rocky: The book is called Kill Doubt, Build Conviction, and kind of under the premise of really what I talked about here just in this last part. So I'm kind of at a place where in my experience in working with individuals in my own life, I believe there are two stories that are at play in our life at all times. The stories that are told to us about us and the stories we tell ourselves about ourselves. Those two stories hold an immense amount of weight. They become wildly impactful when they intersect. So I grew up people telling my whole life stories told to me about me. Rocky, too intense. You're too emotional. You're too this year, too. Right. And so when that story, I can't control that. Now, be very clear that if the story told to me about me, I can control that. But when the story I tell myself about myself is rockier, too intense, and you see their face, you see his face when you were talking to him, calm down. It's not too much. Now, what happens is those two stories collide. And upon that intersection, I believe, is where doubt, fear an obstacle is born. It's birthed in that moment. And every time those intersect again, it grows legs and grows feet and grows arms and becomes more active in her life. The book is a half one part workbook, one part my story, one part encouragement to you to go. Hey, how do we begin to unpack that? We lay out the concept of the two truths. We lay out each story and have you walk through that of your own life.   Rocky: We have you get to a place, you go now look for ones that are complementary. That doesn't mean they're good. It just means they match. Right. Rocky, you're too intense. Rocky tells himself, Rocky, you're too intense. That's a complementary story at that intersection. I need to identify my doubt, that is. I'm too much for people, the lie people will not love me if that's who I am, the truth, I am intense and it is good, right? And so the book is out as I process about seven or eight chapters where we walk through that that process. He let me lay out the concept. Here's what it looks like and then get to work. Start making your chart, fill out your story, find that out, finally find the truth. And then we kind of walk you with that through either email or text options we have that we ask you then of a chapter and they text me right now. Tell me what you just found out and then we're to make sure we follow with you to make sure that we can do that. And so the book killed out. Build conviction. You can get a copy. You can order one today. Rocky Garcia dot com. There's a link there or Iraqi Gaza dot com sketchbook and it should take you right to it. Order copy. And we'll we'll ship it out. There it is in editing slash printing right now. So they should ship sometime end of April.   Joe: Cool. OK, so are you only going to have it on your side or do you think it will eventually be up on Amazon or somewhere else like that?   Rocky: Yeah, yeah, so we'll see for now, it'll just be on our site,   Joe: Ok.   Rocky: One for it in full transparency, just for a traffic and final just to drive people to our site. I   Joe: Mm hmm.   Rocky: Go to a conference, they speak, hey, go get it. Go to our website and read everything else while you're there. And I think also just this is my first experience and writing a book I would have if you'd have told me I was going to write a book a year ago, I would have laughed at you. I'm a talker, not a writer. Come to find out, you can write books by talking. You just use dictation and talk and that pops up into a word. Documents. Beautiful. And so so we'll see, I think, as as more things come, you know, for those for those folks who have written books before I thought about it, you know, it's a very interesting process to publish self publish, go to the publisher and so on and so forth. And   Joe: Yeah.   Rocky: Right right now, Rakhi Gaza is not a name that any publishers like, hey, do we want you to write a book? So if that happens, I'm sure we'd go the Amazon route and put in there at some point. But for now, I just I want to help some folks and I think the best way to do that is to go to go get it at that place. So.   Joe: Perfect. What's the best way for the audience to get in contact with you, what's your preferred method of communication? So you have Rocky Gaza dotcom, correct,   Rocky: Yep, yep,   Joe: As your   Rocky: Yep,   Joe: Website   Rocky: So you could   Joe: And   Rocky: Yeah,   Joe: Then.   Rocky: You could check out Rajab's dot com for speaking, so I spent about a third of my time keynote speaking in workshops both for what I call external conferences meeting and individuals going to put on a conference for a group of people they can buy a ticket to and then internal conferences. So business and organizations hire me to come and speak to their staff. A third of my time is kind of spent in the team space working directly with teams and organizations in a smaller format, more intensive identity mapping for teams, basically, and then about a third of my time with individuals. So doing one on one coaching, we've got a 12 week program that folks can jump into. It includes a four hour identity mapping session. And then we meet once a week every week for 12 weeks to really help people get to that stage lifecycle. Hey, you're clear and ready to be handed off to kind of jump into that next arena. So, yeah, hit me up on Instagram, clubhouse, Facebook. There's not a lot of rocky ghazi's out there. And so I try to be the first to grab those names. So it's just at Rockie, Gaza, on every platform that you could want to find me on or that I would want to be on. I'm there not a tick talker, but Instagram, Facebook, LinkedIn and website, also clubhouse. You can catch me on any of those.   Joe: Right. All right, man, well, I appreciate your time today, I appreciate going through this this exercise with you. I hope it was helpful to the audience and I love the work that you're doing. It speaks to me, as you can tell. I'm going through the process myself. And it was really it was an honor to have you here and to talk this through with you. I really appreciate your time.   Rocky: Yeah, thank you so much, Jim, I appreciate it was great to connect on clubhouse. Thanks for having me on the show and I look forward to talking to you again.   Joe: Yeah, my pleasure, man, you take care. OK.   Rocky: Thank you so much.

The Joe Costello Show
Business Motivation With Tony Whatley

The Joe Costello Show

Play Episode Listen Later Apr 21, 2021 68:36


I had an amazing discussion with Tony Whatley about working twice as hard as the next person, never giving up, building a business from scratch, selling his business for millions, working for a corporation and now his new life of helping entrepreneurs. Check out his book "Sidehustle Millionaire": https://amzn.to/3fXEwmd Also check out his Facebook group: https://www.facebook.com/365driven and his website at https://365driven.com/. This was a fascinating chat with someone who has really done it...created a business and sold it for millions. So many people act as if they've done it but rarely do you find someone who has and is willing to share their knowledge to help lift others up. Enjoy and thanks so much for listening!! Joe Tony Whatley CEO - 365Driven.com Author of: Sidehustle Millionaire Website: https://365driven.com/ Instagram: https://www.instagram.com/365driven/ Facebook: https://www.facebook.com/365driven 365Driven Faceook Group: https://www.facebook.com/groups/365driven/ LinkedIn: https://www.linkedin.com/in/tonywhatley/ YouTube: https://www.youtube.com/channel/UCrETiHfxlI0Igei04hd1KVQ Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.libsyn.com Subscribe, Rate & Review: I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to: https://joecostelloglobal.lybsyn.com Follow Joe: https://linktr.ee/joecostello Transcript Joe: All right, my guest is Tony Whatley. Tony, welcome to the podcast.   Tony: Joe, good to connect and thank you for having me on the show, brother.   Joe: Yeah, man, so you and I connected on Clubhouse and there is a tremendous amount of noise on the Clubhouse, as with any platform, once it takes off and you stuck out to me because you're not one of those people that are leaning against a rented Lamborghini or sitting in a hollow like a fuselage. So and when I listen to you talk in certain rooms on clubhouse, just something attracted me to wanting to connect more with you and learn about your story. So what I like to do with all my guests, as I like to go back, I think it's important for people that become successful like you, that the people that are listening to this and who will eventually watch the YouTube video of this a few days after I release this on the platform that they understand where you came from, because I think that's always really important to know that you just weren't handed all of these things. And this just with any anybody becoming an entrepreneur, it's not an easy journey. So can you kind of bring us forward to today, but tell us where you started? I know that you got into oil and you had a regular career, quote, regular giving air quotes for the podcast listeners. So if you could take us from the beginning, it would be awesome.   Tony: Hey, thank you for the opportunity. So my life grew up lower middle class to hard, hardworking parents, blue collar careers. My mom was a cafeteria worker in the public schools for over 30 years, serving kids meals. She had a really strong heart. She loved everybody, didn't and didn't dislike anybody. Even some of the people I disliked, she was like she could find the love in everybody. Right. And my dad, Vietnam veteran U.S. Marines, and after the military, he worked in chemical refineries here in the UAE, an area the rest of his career. They're both retired now, doing well. And I just learned the value of hard work and having to learn to be grateful for what I had in the houses that I grew up in. Three houses specifically in Friendswood, Texas, is really the lowest income neighborhood in the entire city, which had affluence and also had lower middle class, lot more of the affluence. But, you know, fewer of us. And we would basically buy the crappiest house and the smallest house in the neighborhood and live in it while we flipped it for a few years, while we were restoring it, making it nicer. And eventually those small houses would become one of the nicer houses on the street. And then they would go by a little bit nicer, bigger house, because me and my sister, which we're growing just like the house sizes. And so I just thought that was a normal life. I saw that there was a affluence nearby. I could get on my bicycle and my skateboard and run around and look at these big houses that had a lot of windows on the front.   Tony: I remember being a kid and I only had one window on the front of my first house. I grew up and it was the one that was a bay window on the living room. And I would watch my sister, who was a year and a half older, get on the bus every day, and I would wave to her just like my mom would be standing in the window. And that was always my view of the house, the first house I grew up in. And I just thought that every house just had one view. So I just thought that was normal. And I remember when I became old enough to go right around and leave the neighborhood and go see what was outside, I saw all these big houses with multiple windows. And I remember thinking to myself, I wonder what the view at that window looks like. I wonder what the view at that window looks like. And I could just envision myself running through this house and like looking through the windows and seeing if was a different view. And each one, as funny as thing is, as my wife is a realtor and sometimes I'll go do some showings with her and I'll we'll be at these large houses and I'll still look out every window. Even to this day. I'll still look out every window just to see what the view is.   Joe: That's   Tony: And   Joe: Right.   Tony: So I started to catch myself doing this. Like, why am I so fascinated by what's outside? Each one is like, oh, now I remember. Now I remember.   Joe: Yeah.   Tony: So yeah, a little bit about me   Joe: Yeah,   Tony: And.   Joe: Yeah, so how did you get into so what did you did you go to college for some particular subject or degree or.   Tony: I went to college for the pursuit of the six figure paycheck. That   Joe: Let's   Tony: Was that was the only reason   Joe: Get.   Tony: Because because I turned well, my first job was McDonald's at age 15. I worked there through high school. Then I was a busser at Olive Garden. And then I became a waiter there because I was good busser. And then I went to work at a steakhouse where I was another waiter. And then I became a manager of this brewery steakhouse and Clear Lake, Texas, and. I turned 18 and it really wasn't enough money to live on just just working at the restaurant, so I actually started working in construction just like my dad and and working in Texas and fire retardant clothing with a hard hat and 95 degree temperatures. It only took me a few summers of realizing that that's not where I wanted to be. I saw these these men with collared shirts walking into air conditioned rooms on the same facility. I was like, well, what do they do? All their engineers like? Well, man, I need to figure out how to work in the air conditioning. Yes. So I just said, hey, if you've got to go get a six figure career, that's what we tell you. You could be a doctor, a lawyer or an engineer. Well, I happen to love cars. So I said, well, maybe there's something in engineering that I can learn about cars and I can maybe go get that six figure paychecks. I became a mechanical engineer and I worked full time during that whole ordeal. I paid for school myself and actually the first person and both sides of my family to go to a university. My dad was the first one in his family to to move to a house that didn't have wheels attached to it. And so it was the first one to go to university. So I really applaud him for not going back to his hometown after he got out of the military and just decided, like, I don't want to grow up there. I don't want my kids   Joe: At.   Tony: To grow up there. We're moving somewhere else. So he went where the work was and he facilitated that change. And I felt like it was my obligation to do, you know, a little bit better for him, for the work that they put in. Isn't that what we all should be striving to is trying to do a little bit more than our parents   Joe: Yeah,   Tony: Who struggled   Joe: Absolutely.   Tony: To put us in that situation? And so, you know, me getting that degree took me seven years. I was I was going to school at night time, usually between six and 10 p.m. and sleep deprived and broke and stressed out and actually had more gray hair in college than I do now. Is is strange and really a sleep and stress. You know, it really does has a lot of physiological, you know, turmoil on us. And my relationship struggled back things I just didn't have any time to dedicate to those kind of things. But, you know, I never changed majors. I never quit. I did drop some classes along the way because I struggled and my grades were suffering at the point said I didn't quit. And that was a testament to me is like, I'm going to see this through because I actually had friends that joined mechanical engineering program. Honestly, even when they tell you that when you start freshman year of school, they said only 20 percent of you are going to graduate. And then they said, OK, well, how many of you have a girlfriend or boyfriend or you're married and raise your hand? Remember that orientation freshman year? And I said, OK, well, only 10 percent of you will graduate. And they said, how many of you are working full time job to do this? And I raise my hand again, I said, well, only 10 percent of you will graduate. So I was like out of a 20 percent pool, 10 percent of that and 10 percent had really bad odds. But you   Joe: At.   Tony: Know what? I'm pretty defiant. And I said, you know, I'm going to prove them wrong. I'm going to be the one that defeats the odds. And upon graduating, it was only 12 people in my class that had graduated that that semester.   Joe: Wow, that's   Tony: And   Joe: Crazy.   Tony: I was the only one that was working full time. So I really did defeat the odds. And I thought that I wanted to go into automotive career. But automotive in Detroit just didn't pay nearly as much as oil and gas in my hometown of Houston. So I decided to just take the paychecks in Houston. And that's why I started businesses in the automotive performance arena, because I still wanted to satisfy that itch.   Joe: Right. So you ended up taking a full time job in the oil and gas world. What was that job?   Tony: Earliest was a project engineer role working for a manufacturing facility, we built subsea equipment and pay pay back then was probably 45000 base salary, you know, entry level at that time. So for context, this was around 1997, 1998, and I was getting home at four thirty in the afternoon, like most people with a 40 hour job. We started really early in the morning, but I get home at four thirty and I felt like. After going through seven years of hustle and grind and working three jobs, I was still a waiter working construction as a mechanic and said this feels like a part time job. So here I am with my big boy salary and my big boy degree feeling like, OK, I guess I'm on my journey. I'm on my early journey to go chase the American dream. And I've done it. And and I was just bored. I was   Joe: Yeah.   Tony: Bored and I would be really honest with myself. I'd look at my small apartment and, you know, I bought myself a nicer car, bought a Pontiac Trans Am when I graduated. So that that was like my reward to myself.   Joe: Uh.   Tony: And I felt like this is this isn't enough. This is not enough. And I got a lot of energy. I got a lot of time. So I actually went back and waited tables at the restaurant that I was a manager of because I had promoted one of my friends to be the manager when I left. And I called him up and say, hey, man, do you think I could just come pick up shifts and bartending and waiting? He's like, hell, yeah, dude, you're awesome. Like, come back any time. I don't even need to put you on the schedule to come pick up one. And so for me that meant seven nights a week. I just I put the apron on and people lot of the people that were still working there knew who I was. And I graduated and that's why I left. And to go, why are you back? And it's like because I'm not where I want to be. Like, I can sit home and sit on the couch and watch TV or I can come back and make an extra 150 bucks a night.   Tony: So I chose to go suck up my pride and go do that. You know, his thing is I've never I've never felt shame for doing what was necessary to get what I needed to do. And I think a lot of times people put ego or self-importance above what they need to do. And, you know, I was fine if I was cleaning the bathrooms at McDonalds, I did it the best I could find, mopping floors. That is the best I could. And even as a kid, I go back and some of my long term friends like you just never complained. You just did what was required. Like football coaches would tell you something. You just do it. I've never been the complainer because I watched my parents work so hard and we literally were living inside of a flip house the entire time, and I just know that blood, sweat and tears is not just some a cliche phrase. And I learned from my dad like, hey, you know, he's a combat vet. Like, you should see what I had to do when I was 18, son,   Joe: Right.   Tony: You know, like like suck it up,   Joe: Yep.   Tony: Go do the work. Don't complain. You have it better than a lot of people in this world. And that's the mentality I adopted as a kid. And I grew into a young adult and I still carry that with me today.   Joe: So you're at this job, you're doing part time at the restaurant. And when do you decide and is the first side hustle that you start? Is it is it less one tech? Is that what it was?   Tony: Now, actually, my first side hustle. It's going to get really nerdy, but I learned how to build electronic circuits with resistors, a little bread boards and soldering, and I was kind of geeking out on this and I learned how to design a device that you could plug into an engine harness on a on a Camaro or a Corvette or a TransAm that would fool the NOx sensors and give you about 10 horsepower. So it basically would give it a little bit more ignition time. And it was a plug and play thing. And I knew how to design it and I built it. And so I would go to RadioShack back when those were everywhere,   Joe: Yeah.   Tony: Buy all the resistors and I would buy these little circuit boards and little boxes and the wiring and I would buy the GM harnesses from the parts counter at the local Chevy dealership. And I get home and I would bust out my little kit and I would solder things and it would take me about take me about an hour to build each one of these units. And I had about thirty dollars in parts. I can sell over 75 bucks. And so it didn't scale very well, obviously, because there was only a limited market, you know, I mean, hundreds of people that maybe wanted to buy that. And I can only build two or three a night without running at a time. And so that was my first online business. I actually built a little one page landing page is   Joe: Mm   Tony: What we   Joe: Hmm.   Tony: Call it now. But it was actually that's all my capability was back then.   Joe: Yeah.   Tony: And I sold I mean, I could sell six or seven a week and it was like good beer, money or aside, money was better than waiting tables, to be honest, because I could still make the same amount of time, but I could be at home. So that allowed me to leave the restaurants. And then I started building Web pages. I taught myself how to code HTML about really simple Web pages and do graphic design with Photoshop and take some good photos and build Web pages. Because I started that. A lot of people out there, a lot of automotive performance shops and manufacturers didn't have Internet presence at that time because they didn't have a website. So it's like, well, shit, I could trade my skills for car parts. So it's like a barter system is like   Joe: Right,   Tony: I can get free car parts   Joe: Right.   Tony: Of a website. And that funded my car and my racing hobby. Right. And so I got known for building these little simple one to three page websites, which I would have to basically layout on Photoshop visually first and then slice them and make the little buttons and like re rebuild those slices into like what looked like a Web page on the. There is a whole lot harder than it is nowadays and I probably got 100 of those websites over a period of two years. And so I got known as the guy that could build car stuff websites and I would get paid or I would trade car parts. And I was hanging out on other communities at the time and they weren't being managed very well. You know, they were they're not paying their server bills. Things were getting crashed. And sometimes all the content we create would be gone. You know, after you built all this, how to articles and you're writing all the stuff that's free of user generated content. And and finally we approached the owner of that Web site and we said, hey, we see you've got advertisers. We know how much you charge because some of my friends, advertisers have built their websites like, why aren't you paying your server bill? It's like it's like three hundred dollars a month, like what's going on. And rather than take that as constructive feedback from some of his best supporters, like a group of us, he said, well, if you guys think you can do a better job, go start your own.   Joe: Mm hmm.   Tony: And it never even was a thought in my mind until he said that he challenged me again, like you don't challenge me. I'm the kind of person if you challenge me, I'm going to go do it. I'm going to prove you wrong. And so I said, well, man, I could build websites and I don't know much about servers, but I'm pretty sure I can figure out how to load some software on there into a server. That's pretty easy. If I could read a how to. And so that's what we did is like, you know, two of us started a website that was at least one tech. That was November 2001. So 20 years from now and this year. And we just started as a hobby. Dude, it's like, you know, the Set-aside Kim, it's not reliable. Let's just go start our own place to hang out. And my partner, John and I, we just thought, you know, if we can make 500 dollars a month, which is the Karno to the Trans Am I had and the Karno to the Camaro SS that he had. So that would be pretty cool to be like we would have a free car just to hang out and a place to talk about cars. And I've got a big boy job and a salary and you've got your own too. And we don't need this and it's just something we want to have fun with. And I like to illustrate that because, you know, you know, shocker.   Tony: Yeah. That thing went on to earn hundreds of thousands of dollars a year in profit. And we sold it for millions in 2007, but was never intended to make millions of dollars. You know, a lot of people are like, oh, did you were you a visionary? And could you stop this? And it's like, no, we just wanted to make five hundred dollars a month. But the main difference, why we became the number one in the category and why we really dominated that entire automotive form seemy we we set so many bars and taught those other forums and the BMW sectors and the the Porsche sectors, we taught them how to monetize the audience. We, we taught them how to build a strong community and attract advertising revenue. So I had clients like Chevrolet and Cadillac and Goodyear and big name brands that were paying me to advertise on my website. So the main difference is that we treated it like a business. What started as a hobby, we started seeing real dollars come in and within within six months we're making 10000 dollars profit a month and we're like, whoa, I think we need to go get one of those. What are they called an LLC or I think we need to go do that. And I think we may need to create a separate bank account instead of just paying ourselves   Joe: Mm   Tony: Like in   Joe: Hmm.   Tony: Our personal account, like. So I love to share that because I want people understand that you don't have to have all the answers. You don't have to be the best entrepreneur ever. You don't have to overdose on YouTube and podcasts and reading books and attending seminars. You've got to just start you just   Joe: Yeah.   Tony: Got to start and you're going to improve with time.   Joe: Yeah, so the important things I want to touch upon about this before we leave the subject about Ellis one tech is how did you get the advertisers? Did you actually one of you go out as a salesperson, whether it was phone calls or in person, or did they actually care about you and come to you and say, hey, we heard about your site, we want to advertise.   Tony: And this is a little bit going back to we hear about personal branding all the time, right? Nowadays, it's   Joe: You   Tony: Like   Joe: Know.   Tony: The buzz, personal branding. You've got to build a personal brand. Well, I was already doing that, and so was he, because we were active contributors to an existing community. So to put that in today's context, we have Facebook groups, you've got online communities. Go join those communities and actually be a contributing, valuable member. That's always helping people by answering their questions and giving encouragement and giving advice and sharing your resources and sharing your network. And then you start to build that personal brand of being someone that creates value rather than asking for all the stuff. And whenever it comes time for you to go launch your own community or write a book or launch a podcast or whatever, that's your side of the fence. Guess what? You're going to have a really strong group of supporters of, you know what, this person I like them because they're always helping and they've always never asked me for anything. So here's the thing they're finally asking me for. I'm going to go support that. And that's the way it worked. And I didn't understand that. It's just my nature to be that person. I'm the person that I follow on social media or a forum or anything that I'm spending time on. If I see somebody ask a question that I know the answer to, I'm not going to be. The person goes, well, you know what? Somebody else can answer that because I don't have time or I'm just super important. And   Joe: Mm hmm.   Tony: Oh, that's too trivial of a question for me to answer. I'll let some beginner answer that one for them. Know, guys, if I'm scrolling and I actually see someone that needs help, I respond. If I have the time, I respond and and it takes me a few seconds. But those few seconds of me investing into that pay dividends. If there's a few seconds here, a few seconds or a few seconds there, and people start to see because what you don't understand is on a social community, especially on the Internet, is that thousand people will see that response over a period of time. Let's say you're in a Facebook group and somebody asks a really good question and you happen to have the answer, even if you think it's trivial or a beginner. But you answer it, thousands of people will see that exchange of information. They will see who asked the question, they will see who answered the question. And if they start to see this pattern showing up over and over, hey, Tony is always helping people. He's always answering questions. You don't think that's a building you some kind of a personal brand capital that you'll be able to use later on if needed, because you may never deploy that, but if needed, it's going to be there for you. So, you know, that was how we built the advertisers because we were helping the manufacturers on other sites by answering some of the technical questions.   Tony: I would buy those parts. I would install those parts. I knew how to. I would give the good and the bad of it and do a little review of those things. And we just answered questions on Web sites. And when it came time to go launch our own website, we were such contributors that they're like, you know, we're going to go see what they're doing, what's what's that's about. And we'd already established relationships with people who are willing to advertise that we actually had ten advertisers in the first week. And I was not the cold caller. My partner, John, he owned a recruiting, a technical recruiting agency, and he loved to call people on the phone. I was like, that is not me. I will build the websites. I will create the graphics, I will set up the servers. I will run things at a technical level like an engineer. And I'm a project manager by trade. By that point is like, oh, I'll plan things out and execute. And he was the one I was going to make the calls. I was OK emailing, but I still even to this day, I don't like making cold calls. And I don't I just don't.   Joe: All right, so the timeline now is you're doing your day job project, managing in the oil and gas arena, and you have this website with your friend and you are selling advertising, you're building. And it's basically if it if it looked the way it did, then that it does now. It's literally a forum that you guys built. But   Tony: Yes.   Joe: Now it's it's probably expanded. Where I see it has the marketplace and it has all these other pieces of it that's helping to build that whole infrastructure on that site.   Tony: Yeah, definitely, we we had access to all the activity logs of the forms that we created so we could see the response of the individual categories that we put in the community and the classified section. We were actually one of the first ones to do a class of five sections in a forum and an automotive forum, especially because we realized that hotrods have used parts to sell and they always want to upgrade or they're looking for a better this and that. So we put this classified in there so people can list their used parts, not new parts, because if they want to sell new parts, they need to be an advertiser. But the used parts, we're fine. And we saw that that really increased the the longevity of their visits by about 40 percent. And just give you guys a context of how busy this site was. On average, we had about 100000 unique visitors per day.   Joe: Same.   Tony: So. So if you're thinking about a speed shop or a car dealership or anything like that, imagine with a hundred thousand people walking through your front door every single day and spending an average of about 20 minutes, looks like that's how we were able to generate the advertising revenue because we had the data logs, we had the Google analytics and we said, hey, what are you guys spending on magazines and television ads? And they go, We're spending 5000 for a half page ad. And this automotive magazine, OK, cool that the automotive magazine has a circulation of about 250 copp, 250000 copies per month. We see that in two and a half days. And we're going to charge you 10 percent of what they charge. And they were like, whoa, like this is a no brainer. And said, even better, you don't have to give us content 30 days in advance ahead of publication because there's that waiting period for publishers to print magazines   Joe: Yeah.   Tony: And they have to have the content editors and make it all look pretty and put it all in the pages and number of the pages. And I said, so if you wanted to do and unveil of a product, you could actually show up that day and your representatives could log in with their account and post a video or something that they've created that day. And you could get real time feedback from the people who see it and give you questions and maybe even pull out their credit card. So, you know, forums and things like the things I created, you know, we were really were the the commercial demise of magazines in that regard. And we've seen the magazines, the publications struggle. But here's the thing. As much as I love magazines and I was a contributing editor for most of the automotive magazines for over a decade, what they failed to do was adapt. They had the brand name, they had the readership, but they were like, you know, we are super important and we're the media and we are magazines and nobody's ever going to replace magazines. And we're just super awesome in that forum stuff. That's just a waste of time Internet fad. And really, this is the kind of conversations that we would have with these publishers, say, hey, we're trying to partner up with you. How about we build out your forum and you've got the audience base? You could start mentioning it in your magazines and, you know, get them to drive to the forum and we can help you monetize that. And they're like, oh, no, we're not interested in that. Our business model is public catering and our ad rates are much higher than yours. So we make a lot more revenue than you and guys like me put them out of business. Guys like me sold my brands for millions of dollars when they went bankrupt. So that's a good lesson and adaptability and understand that you have to go where technology's telling you to go.   Joe: And same with the newspapers, right? They didn't move   Tony: Oh,   Joe: Quick   Tony: Yeah.   Joe: Enough. Same thing. Yeah,   Tony: They have the audience   Joe: I   Tony: And   Joe: Know.   Tony: They don't use it.   Joe: It's crazy.   Tony: The   Joe: Ok,   Tony: Men had it.   Joe: So I don't want to harp on this subject too long, but I want to make sure that the audience understands the the exit route and how that happened out of this. And so still, at this point, you still have a dual career, right? You're still working and you still have this website. It wasn't like this Web site took off so much that you decided that, OK, I'm not doing the day job anymore.   Tony: Now, that's one of the things people ask me is why didn't you quit your job? You know, when we were really the last two years that we're on this website, we're making about hundred thousand a year profit and. People are like, well, why don't you quit because at that point, my job was probably making 150, 175 range and I said, well, I also work offshore. I did a lot of offshore construction. So sometimes I was gone 28 days, sometimes with Internet, sometimes without. And so me being a project manager and engineer, I was very well adept at writing processes and procedures and systems that other people could follow. That's what I did for a career. And I said, I don't need to fire myself. So how can I create processes and systems to be able to hand these to other people that can do these in my absence? Because I don't can't guarantee if I'm going to be there or not. And so that's what I did, is we started to build a team at about 75 people on the team and we paid them in perks and free car parts and sponsorships and sometimes, you know, ten, ninety nine dollars just to do certain tasks. And that's what I did, is I fired myself. And what that did is allowed me to use my website as a consumer now. So I get to be at the same ground level and see what the problems were and what we could improve on and how we can add more features to attract more eyeballs and more time on screen.   Tony: And a lot of the things that Facebook and Instagram do nowadays, we were doing a long time ago. We just had to do it manually versus, you know, with A.I. So that's what we do, is we try to stay focused on how can we increase engagement, how to increase eyeballs, how to increase time on screen, and what was the hot topics and what are the things that we can do to create content that was going to keep them coming back as the value proposition that needed exist for them to be entertained or get some information. And there's a reason my website is still existing and I sold it. And still it is still the number one General Motors website to this day. It's been 20 years. But the thing is that I didn't quit the job because I didn't need to. And it goes back to that scarcity mindset that I grew up with, that if I can work the career and make, you know, 150000 plus like, why would I quit that? Because, one, we were the top of the market share. We're number one. And they're always trying to people trying to take us down or literally hundreds of copies of our website, always trying to take us down. But we are way ahead of these people. Right. And so I had the market share me working one hour a day versus eight hours. There was not going to ATX my revenue. It wasn't going to increase revenue at all. I had the market share.   Joe: Mm hmm.   Tony: So the hours versus multiplication just wasn't there. Right. I was realistic about that. I could have been lazy and played PlayStation at that time or Xbox 360 and built cars and done nothing but. But why would I do that? Is like in I wasn't where I wanted to be at the time, so I was OK stacking money, working to career that also I had to struggle to get that engineering degree. And for a long time I felt like I didn't want to waste that effort. You know, I built it. I spent this time and investment and the hardship I explained earlier and I said, you know what? I don't want to waste my degree. I was pursuing the corporate executive path in oil and gas eventually. So I was very good at my career and I was very good at entrepreneurship at the same time. And I always find that was fascinating because I I saw my entrepreneur friends on one side of the fence and I saw my employee friends on the other side of the fence. And the mindsets are completely different between the two. And I would try to cross over. So I was what you would call an intrapreneur, someone who's an entrepreneur that works within a corporation to try to always enhance, improve, evolve. And I was always met with resistance, especially the larger the company names game. I was working for major oil companies in my later career. I mean, I left in 2015 and it was always like, hey, if it isn't broke, don't fix it. You know, this is the way we've always done it. Like all these things that   Joe: Mm   Tony: Make   Joe: Hmm.   Tony: Corporations collapse.   Joe: Same old thing, yeah.   Tony: Same thing over and over and over. And it drove me nuts. And but yeah, that's that's why I never quit, man. I was good at doing both.   Joe: Ok, so how did you how did the approach happen to buy the website?   Tony: And that's a funny one, because at the time, very few people understood the amount of volume and dollars that was coming through a business model like that, because they just thought, oh, it's a cool car side. People are hanging around and making, you know, talking about cars. They're probably making, you know, 50000 a year doing this. You know that that's probably what they're thinking.   Joe: And   Tony: Nobody   Joe: I have   Tony: Knew.   Joe: To I have to make the point that when you did this, it was hard to do what you did. It was not the drag and drop and all of   Tony: Uh.   Joe: That stuff. It was not easy because I grew up I was telling a story the other day. I used to teach companies how to use an Internet browser like   Tony: Oh, yeah,   Joe: I   Tony: You   Joe: If   Tony: Know   Joe: I'm old   Tony: You   Joe: Enough   Tony: Know,   Joe: That   Tony: We're from   Joe: The   Tony: The same era.   Joe: Well, I'm probably older than you. But anyhow, you you did this at a really hard time. And when you're talking about the you know, the construction of the site and then on top of it being smart enough to keep all of the logs and Google analytics, I mean, it's hard to use today. I can't even imagine what it was like when you were trying to pull the data out when you did it. So I just wanted to make that point. I didn't mean to interrupt you, but I think people need to understand   Tony: Now.   Joe: That this you have to put it into the context of when it happened. And it was not easy at the time that you did it.   Tony: Yeah, yeah. For context, I sold the website in 2007 and I was 34 and multimillionaire and Facebook and Instagram came out two years later.   Joe: There you go.   Tony: See, so everything that you see now, easy, like I could just do a video and   Joe: The.   Tony: I could do targeted ads and I can find all these people like we didn't have that we had we had to rely on joint ventures with media and racing events and person type events to be able to to really build the snowball of momentum.   Joe: Mm hmm.   Tony: There was no like buying targeted ads. And it's super easy nowadays. Like, really, there's the excuses nowadays for entrepreneurs to not have success is like it just makes me laugh. It's like, come on, it's never been easier. The information has never been easier to find. All the stuff is being shared nowadays, which we had to go learn ourselves the hard way. And, you know, so the approach going back to the question of the approach. So it wasn't uncommon for people to casually email us saying, hey, you think about selling your website and. We never really thought about it, to be honest, because we're doing pretty well. We didn't need to sell it and we were really taking a lot of the profits, rolling it back in the company to make it grow because we had careers. And so they would always just just out of curiosity, once someone was, hey, would you like to sell your website? We always would entertain the question. We would say, well, what do you think it's worth? Because we're curious ourselves. Like we   Joe: All   Tony: Didn't know anything about   Joe: Right.   Tony: Valuation.   Joe: All right.   Tony: Like, what do you think it's worth? Like what's your offer? And most of it would be like, you know, I was thinking like Dr. Evil. We know when he talked about the one million dollars like this and it was like it. Going to go watch that movie if you haven't. You know what I'm talking about, but they'll be like, how about a hundred thousand dollars?   Joe: Right.   Tony: Thinking like, man, we sold advertising packages for bigger than that, you know, like, do you want to buy an ad package or do you want to buy the website?   Joe: Right.   Tony: You know, and and it just shows you that they had no clue. And that probably happened a dozen times over a period of quarters. And we just kind of laughed about it like they don't know. And we're not going to tell them what we're making because it's just they just have no clue. And and this is one company came in and they their eventual buyers were a little bit different in their approach. And they said, hey, we're looking at acquiring the top level forums and each brand marquee. We've already bought this one, this one, this one and this one. And all of those brands we were well recognized with, like it was the best BMW side, the best Volkswagen site, like top level names on par with the one I'd built for General Motors. I was like, whoa, if those people sold, then maybe there's some there's something to this one. Right.   Joe: Mm hmm.   Tony: I remember having this conversation with John. And as a man, we're kind of getting long in the tooth on this. I want to go build on some different projects. I want to do something different. And, you know, what do you think? And he's like, we're both on board. Like, you know, if they make us this offer and we came up with a number. Right. And I said, if they come up to this and we can negotiate it, I think we both agree that will sell as I call. So we responded back and said we'd entertain this offer. You know, what kind of questions would you like answered? And they actually asked if they could put their Google Analytics pixel into our website so they could see for themselves if we're full of shit or not. I said, OK, no problems. I'll put it in there to help them put it in there. And then about two weeks later, they called back and they said, we're at it, have a discussion with you guys about the moving forward. And I said, OK, cool. And so their initial offer was double our number that we had come up with in our mind.   Joe: Oh, my gosh.   Tony: And we're like, oh. So we had to contain our excitement, first of all. And act like, oh, OK, well, we'll consider   Joe: Right.   Tony: That we're going to have a talk about that and we'll get back to you. And the first thing I said is like, John, we need a lawyer, we need it. We need to get an attorney. That's a good with M&A and we need to have some conversations with him on these early contracts, negotiation things. And of course, luckily, he had a good friend of his that specialize that in Chicago. And we got on the phone we talked a couple of times, went through some details of the preliminary offer. And he's like, so you're going to counter right? Or like, well, should we? And he's like, yeah, there are first offers, always the lowest   Joe: Mm   Tony: Offer,   Joe: Hmm.   Tony: Like, what do you want to make? And so we said, well, what about this? No, it's like worst they can say is no. And so we put that back out to them and they said, sounds good to us. And   Joe: Wow.   Tony: We're like, damn it, maybe we should ask   Joe: All   Tony: For some   Joe: Right.   Tony: More. So of course, we're not going to be greedy because it was already double our number in our mind. And we sold them and then they said yes, and we're so cool. We went down that road and it was about a better one year due diligence phase of going through all the accounting and understanding, all the systems and processes in place and negotiating the contract and the details. And that was a really, I would say, a semi stressful situation,   Joe: Yeah,   Tony: Because   Joe: I can imagine.   Tony: Even though that the millions of dollars is looking in your mind, you don't really think it's real. Actually, because I actually interviewed somebody on my show yesterday. It sold a nine figure exit and he and I had very similar, even though he was a whole different range of the money. I made very similar psychological things going through your mind because it seems fake until you see it in your actual bank account.   Joe: Yep.   Tony: And even when you initially see it in your bank account, it still feels a little fake until you, like, spend it a little bit, you're like it's real, OK, they're not going to call me back and say, oh, we made a mistake. We need to have our money back. Right.   Joe: All right.   Tony: So does these weird things that we go through the exit companies and only one percent of businesses actually sell. And to hear this kind of experience is very rare. But I wanted to be really transparent and show people that because it's a it's very intrusive to go through that your books better be damn right. If you think you can lie about things that your company is doing or not doing, you're going to get discovered during that because lawyers get involved and they're digging through all kinds of stuff. I mean, they're literally looking for ways to devalue your company and you're looking for ways to add value to your company during that one year process. So you just got to be transparent about things and keep your books in order. That's the main thing. And learn how to build valuation in your companies. And it just turns out we were just doing everything right. We had the recurring revenue business model. We had presold ads. We were cash flow positive. We had proven database of, you know, information of users and their emails and our names, which increased valuation based on customer acquisition cost. It would cost them to go find those people in the same market. So we had a lot of things that were checking the boxes. And it was also a tech platform with a really strong brand, which also increased valuation. So we just did everything the right way. And the reason we did that is because we just did things like business. Again, it wasn't a hobby to us.   Joe: Yep, so you get to the final stage, it gets sold, they buy it, you sell it, you're still working. How long did you stay at your job once you exited this company?   Tony: Another eight more.   Joe: Eight more years.   Tony: Eight more years.   Joe: Wow,   Tony: Yeah,   Joe: That was   Tony: I   Joe: Not the   Tony: Actually   Joe: Answer   Tony: Had   Joe: I expected.   Tony: I had spin offs, I had verticals that I created from that acquisition, I had a retail company selling wheels for cars because, one, we didn't have an advertiser that was selling wheels. And I was referring a lot of business out the door. And I said, you meant I could just do the buying and get another LLC and create my own wheel company and sell the wheels. And, you know, that became a seven figure business on its own. And when the website came up for sale, I said, do you guys want the retail side? Or like, oh, now we just want the data. We want the assets. We don't want anything to do with retail. They're a marketing house.   Joe: Yes.   Tony: I was like, so I could just create another LLC and keep this business to myself. And that's and so I did. So I still had a seven figure business even after that. That was part time that I enjoyed that kept me in the industry, kept me relevant, kept me engaged in cars. And so but I was also in that pursuit of becoming an executive with an oil and gas. That was my my goal. And I was really good at navigating that. And I made it towards making about 250000 a year in salary. And and near the end of that, I started to realize that the oil industry just doesn't treat people as good as they should. And I started to have to be that person that had to make tough decisions on employing certain people. And even though they were high performers and I got to see a lot of shady things in H.R., the things that are unwritten that we always hear about, like ageism and like cutting people before their pension fully   Joe: Oh,   Tony: Hits   Joe: Man.   Tony: Because, you know, it's a it's a it's a it's a financial decision. It's not personal. And I get to see this multiple times. And it started to impact me. And it's like, you know, I don't want to support another industry that does not support people, that we're we're basically disposable. And when I was young and disposable and making less money, it was very easy to find me a replacement job because I was it was inexpensive and unexperienced as I started to make, you know, multiple six figures. And in my 40s, if I were getting laid off, it was typically a six to eight month sitting on the bench waiting for the next bus to come around type scenario. And a lot of times I was having to fire myself and put people in my my desk that was ten years younger than me and 100000. I was less income than made just to keep the bench warm. For me to return at the market turned around. I was like, I don't like being in this situation. And so, you know, I took a near-death experience for me, racing cars to finally realize, like, I don't want to go back to that and I need to go create more impact in the world. And that's what I did, is I decided I need to go teach people what I have passions for. And one was cars, which I built a lot of success in cars. The other thing has always been entrepreneurship. And so I said, OK, that's how I'm going to best impact this world, is teach people business and confidence around being an entrepreneur. And that's what I've been doing since 2017. It took me two years, even after leaving my job, to think about what I really wanted to do. You know, was it was it a nonprofit, wasn't a philanthropy? What is it that I wanted to do? And for me, I just love to be a teacher, so that's why I do what I do now.   Joe: So do you. I've thought about this question a lot in regards to you, if this if the site didn't do what it did and you didn't sell it and make that kind of money. Have you ever thought about where you would be today?   Tony: Yeah, I would still be working in the oil and gas industry for sure.   Joe: So   Tony: For sure.   Joe: With viewers, listeners and viewers that will hear this. What would you say to them if they were to say, well, he I mean, you did the work, it wasn't like you got lucky, but you got lucky in the sense that someone wanted to buy it. Right. I mean, and and   Tony: Yeah, it wasn't for sale,   Joe: Right.   Tony: So you're right.   Joe: So someone saying, well, what's the chances of that happening to me? Or how do I if that doesn't happen, then I do have to just continue on the path that I'm on. So what would you say to them about not getting a lucky break like that? How do you create that break for yourself to to then become this entrepreneur and service the world and do good things?   Tony: I mean, honestly. My book, Side Hustle Millionaire, teaches people how to take the ideas for businesses and create reality out of those, because I was always ask, hey, what do you think about this business idea and what do you think about this? And the thing is that too many people take pride in having ideas. They think that there's their super smart. They think they're genius because they have this idea. And, you know, you and I both know that thousands of people die every single day with brilliant ideas and take them to the grave that were never materialized. And so ideas really aren't worth anything until you take any actions and see some results from those. So don't give yourself too much credit if you're listening to this or watching this, if you've got an idea, unless you try it and it's OK to fail, sometimes failing is actually the best lessons. But for people who are employed when you're all your bills are paid, you need to start thinking about what the number is and the number is what is the bare necessities. You need to be able to sustain your lifestyle or even downgrade your lifestyle.   Tony: Let's be honest, because a lot of times people live above their means. What is the number? And I'm thinking a dollar number. What is the actual number like? Take your rent or your mortgage, your car, note your insurance, your food, your utilities, and put them on a spreadsheet and go, this is the number. And if it's 2000 or 3000 or 10000, whatever that number is, you need to have that number in your mind. Because once you start to make a profit in your side business that meets or exceeds that number, you need to really force yourself into a decision moment. Like you need to know that number is so important to know that number, because a lot of times we find that side hustlers and people that do things on the side will exceed that number, but never force themselves into decision mode. Because the question that you have to have in this decision is, should I just drop my career and go full time with this? And I have two reasons to do that. Right. Like you heard me give examples of why I didn't leave because it wouldn't have increased my income   Joe: At.   Tony: Like I was the number one in the category. I had all the market share. The extra hours would not have translated to extra dollars. It made no sense for me to leave. Now, if you do have a company and you realize that, hey, if I can contribute eight extra hours, maybe nine hours, if you have a commute to go to work, if I can commit nine extra hours a day to this business, what are the numbers look like? Does it scale? Does it make a higher profit? Because I'm already at the number I could actually leave right now. I actually have a parachute on my back that I could deploy that it's going to replace my salary already. So why am I staying here? And if the answer is like, yeah, extra hours will increase the business, it will also increase your freedom and your confidence. And most people really don't understand the confidence that entrepreneurship brings because I've never experienced that. There's something beautiful about commuting to your coffeemaker and walking to your office and you're in your own house, in your pajamas   Joe: Aymen.   Tony: And and waking up like you fire up the email, you go, Oh, I made three thousand dollars last night while I was asleep. I mean, it just sounds so unrealistic. But the reality is, is realistic realistically, when you start to surround yourself with people who are doing it and who could teach you how to do that, your eyes just start to open up and you go, wow, I remember thinking, eighty five dollars an hour at work was like a lot of money because that's close to two hundred thousand dollars salary. You know, I remember negotiating like they wanted to give me eighty, eighty dollars an hour and I was like, I want nineteen. OK, how about we meet in the middle eighty five. I mean I was at 180, 200 range. If you do the if you do the math. And the thing is, is there's this perception that multiple six figures is a lot of money and corporate and it is because I get it, the average income in the United States is 67000 a year. Some people will never make 100000 hours. It's sad to me because I can make that in a weekend now.   Tony: And had you asked me twenty years ago if that was possible with a laugh, it's like there's no way you can make a hundred thousand dollars in a week. And that just sounds stupid, like you're dreaming. You get rich quick, you join some kind of network marketing or whatever, like it's bullcrap, Tony. But now I've done it a couple of times, like why did I ever have these limitations on income and why did that exist? And you start to think about where that comes from. It's because of your supervisors, from your parents is from your teacher, your professors. They're telling you what you they think you're worth based on what the market will bear. Oh, you're a mechanical engineer. Well, you can make one hundred fifty thousand dollars if you work twenty years. So, OK, so your self-worth becomes well, I can make one hundred and fifty thousand dollars by the time I'm sixty, and maybe they'll give a bonus to me and my last five years as an attaboy and I'll get a Rolex. And   Joe: Right.   Tony: Why the hell we give Rolex is to people that are retiring. Like what do they need to be on time anymore.   Joe: Exactly.   Tony: Like thank you. What, why don't you give me the Rolex when I'm twenty, so I'm always on time. Right. So a lot of weird things. They were created in these boundaries and and so people tend to define their self-worth based on a limitation of their salary. Their profession, which is really sad, is really sad.   Joe: Yeah.   Tony: And none of these limitations exist in reality. It's that there's no such thing as a limitation. And when you start to hang around people that think like I do, you're going to challenge everything you believe. And it's going to be really hard to to unwind a lot of the things that were were screwed up with. But it's crazy. The reality of. It really exists.   Joe: Yeah, and this is why I do my podcast and I openly admit it to people, is it's because it's a selfish endeavor for me to be able to hang out with people like you and just virtually rub elbows. And at some point, hopefully we meet in person. But that's the goal, is to change the mindset. I watched my father just work himself to death. He literally was. I forget if it was two weeks away from retiring and had a stroke   Tony: Oh,   Joe: And   Tony: Man.   Joe: Was paralyzed on his right side. I watched him work harder than any man I ever watched. And I just I don't want to see that. I don't want to experience that. So I appreciate that. So you jumped ahead on me, which is great, because I want to know. So here's twenty seventeen. Your you decide that you're going to do you know, you're   Tony: The   Joe: Going   Tony: Coaching   Joe: To do   Tony: And the   Joe: The   Tony: The   Joe: Coaching.   Tony: Community building, yeah.   Joe: So when did you decide to write Side Hustle a Millionaire. When did you decide that. Well I have to write a book on this because that's a big endeavor. I everybody I hear that has written a book says it's probably one of the hardest things I ever had to do.   Tony: You know, the funny thing about writing the book. Side Hustle Millionaire was a idea in my mind five years before I actually wrote it. Five years, because I knew even because I was around 40 at that time and I was like, you know, I need to do something that helps more people, you know, before the Internet flex on Instagram, I was the one that would post driveway photos with 10 cars and things like that, because, one, I had some insecurity issues and self validation things that I had to work through. And I didn't ever feel like I belong with the rich people. And I had to prove that I belong with them and a whole lot of weird things that we grow up through. But besides, the point is that as I wanted to start teaching people how I got those cars, because the only people that were benefiting from that knowledge were my friends and like people I worked with people within my close proximity because one, I didn't like being on camera. I didn't like being on stage. I didn't like my recorded voice. And I had a lot of insecurities around that, too. And I became a highly successful kind of in the background, and I was fine with that. So anytime people were like, oh, you should go write a book and you could teach all the stuff, I'd be like, Oh man, but I'm so busy. You know, I've got a kid and a wife and I've got a career and I've got this retail company. And I would just make a a list of bullshit excuses of things why I wasn't really serving the purpose that I am on today.   Tony: And it was all stem based on the fear of criticism. Right. And so even when I go through this near-death experience, racing cars and deciding that I need to impact the world, I was still approaching it from a I need to make impact. But I was still being cowardly about my way of doing that, my method. And so I said, you know what, I could write a book. And that doesn't mean I have to be on a stage or a camera or radio or TV and I can just write this book and it'll be a good way that's affordable. It's portable, and I can get what's in my mind out to thousands of people. And so I decided in really November of 2017 I'm going to write a book and I validated the idea and use my social media to ask what they would want from me. And I asked them what questions they would want answered. I was really good at using my entrepreneurship, evaluating a product before I spend time on it. I did that. I applied the same principles to a book which is another product. And while I was writing the book, my editor, Mike, I was giving him a chapter at a time to review and he was like, Man, this is going to be a good book. I cannot tell because he's helped a lot of people become bestsellers and and one day he's like, they're going to want to interview.   Joe: You're like, oh, no.   Tony: Yeah, he's like because you might be on TV, radio, podcasts, and I felt that Stagefright, again, coming up was like, I'm in. But I'm kind of a daredevil anyways, and I said, you know what, this is a sign. This is this is a sign I need to go take care of this fear. So just like any other normal human with a fear or something or challenge like so just like most people with a fear of public speaking or any other challenge, they basically get on Google or they get on Syria, they ask, you know, how do we overcome this? And for the results, I said, join a Toastmasters or join a Rotary Club and hire a speaking coach. I said, OK, this is something I have to do. And and obviously, it was really, really avoiding this kind of scenario. So I joined Toastmasters. It's a it's a nonprofit that teaches public speaking and leadership. And there's local clubs all over the world and is really inexpensive. I think it was like 45 dollars for our whole six months. And I said this is like a no brainer. So I'll I'll try that. And so I said, if I'm going to go, I'm going. I'm not going to be a spectator. I'm going to make myself really uncomfortable. I want to sit in the front row and I'm going to raise my hand every meeting with, like once a week and just volunteer to do something in the front of the room and just make myself uncomfortable. And because I knew that the book was about five months out and I needed to get ahead of this. Right. So   Joe: Yeah.   Tony: So that's what I did is so I would learn a new tactic of public speaking at a meeting. And then for the next seven days, I would do videos. I would I would go on Instagram or Facebook and just practice what I was learning on public speaking to my phone and is really uncomfortable. And I did not. All those videos exist or like in May, June of 2017. And I basically just I just did them every day. And that's how I improved. And I used to be so afraid of just doing videos, I would do them in my truck. Somebody walked by in the park in like an aisle away, I would put the camera down and act like I wasn't doing any videos because I was so weird to go through that. And I would record myself like ten takes and I would finally get one. That was the best I could do at that given moment. And I would share that one. And and that's how I did better. And I did that for over a year. And now within six months of me joining Toastmasters and doing those reps and making myself uncomfortable and doing about a speech per month, I actually started competing and representing that club and the Toastmasters competitions. And I actually won and went three rounds like   Joe: Wow.   Tony: I went I was like fourth place in all of Houston, you know, after doing the club level than the area level that I went to district. And it was it was crazy. So even after winning a couple of competitions, I, I finally started realizing there might actually be something to this. Like I actually might be OK at doing this.   Joe: Mm hmm.   Tony: So it's me winning competitions to finally realized that. And like anything else that I get into, I just go all in. And to me, public speaking was the thing I needed to go get good at. And I focused on it. I studied who I thought were the best speakers. I learned from people to hire a speaking coach. And I did reps and and I actually became the president of that Toastmasters club. And I grew it to one of the largest clubs in Houston and had about 50 active members at the time. I was president for a year or so. I got to go from being transformed to transforming hundreds of people that came in and out those doors for a period of over four years of being in that organization. And and I just I've seen so many changes that most people really underestimate the the quickness you can change. And I would say for most Toastmasters, you can come in definitely afraid. And if you participate within three to six months, you'll be a completely different person. So it happens that fast. And I've seen it too many times to to argue the results. So if you're out there and you're worried about public speaking or doing videos like this or you have a fear of that, like go join, make yourself uncomfortable, do the reps and it is a skill is not a talent. When you hear someone speaking like I do now, it's not a talent. It's not something I was born with. It wasn't even a thought in my mind to be a public speaker. But I learned the tactics and the strategies of effective communication and how to use my vocal inflections and speed and volume control presence, hands. All the things that you never even think about are part of communication. You learn when you actually get coached and you actually it's a skill. It's just like learning a new language.   Joe: Yeah, and it was a real surprise to me, because I actually heard you say that you had a real fear of public speaking in it. I think it was a clubhouse room because you were giving advice to someone. And when you said that, I was like, I can't be the same person. I just, you know, I didn't understand it. And I personally think, you know, I come from the entertainment side of things. I own an entertainment booking agency here in Phoenix, probably one of the biggest ones here. So I was a performer my whole life. So it's not hard for me to necessarily do this, even though, yeah, a lot of people don't like how they look. They don't like how they're their own voice, all these things. But   Tony: Yeah.   Joe: I think you have a great voice. It's it's incredibly soothing the way that's what I liked about how you presented yourself in those rooms. It wasn't like I'm great and it wasn't like there's a lot of people that just sort of yell and they're like, you know, that's how they   Tony: I'm   Joe: Get there   Tony: Super awesome,   Joe: Exist.   Tony: And for nine hundred ninety seven dollars,   Joe: But   Tony: You can get the course that will make you a millionaire   Joe: That   Tony: And one   Joe: Is

The Joe Costello Show
Personal Growth - Ontological Coaching With Kristina Crooks

The Joe Costello Show

Play Episode Listen Later Apr 14, 2021 39:19


I had a conversation with Ms. Kristina Crooks, a certified ontological coach to learn more about what ontology is and how it's used in personal development through coaching. It was interesting to learn that unlike coaches that work with you on one piece of the puzzle, an ontological coach works on all aspects of the human being. Thank you for watching! Enjoy, Joe Kristina Crooks: Founder and Owner, Empowered Human and Ontological Performance Coach Website: https://www.kristinacrooks.com/ Instagram: https://www.instagram.com/empoweredhumanglobal/ Facebook: https://www.facebook.com/kristina.crooks.7 LinkedIn: https://www.linkedin.com/in/kristina-crooks-42b41124/ YouTube: https://www.youtube.com/channel/UCVY40i4eM2wAXWQqSNh6iEQ Contact: https://calendly.com/kristinacrooks Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.libsyn.com Subscribe, Rate & Review: I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to: https://joecostelloglobal.lybsyn.com Follow Joe: https://linktr.ee/joecostello Transcript Joe: My guest this week is Christina Crooks and ontological performance coach Christina and I met on Club House and I joined a couple of her rooms and I found what she does. Very interesting. Ontological coaching takes an in-depth exploration into who you are being. Part of her process is one, where are you currently to define your short, medium and long term goals? Three, what are you committed to for what needs to be added to remove or transform, to align you? Being with your doing ontology is the art and science of being a human being. First coined by Aristotle with Christina, she will help you create a design life where your vision becomes your reality. Christina uses what she calls a five point star concept, which targets your spiritual, emotional, mental, physical and financial aspects of your life. I very much enjoy this interview and I hope you do as well. Once again, thank you for listening. Now enjoy this interview with Miss Christina from.   Joe: Everyone, I want to welcome my guest today is Christina Crookes.   Joe: Christina and I met on the new app called Clubhouse. Some of you may be on it. Some of you may not be yet. But to be honest, I don't know how I landed in one of her rooms, but she invited me on stage.   Joe: We got the talking and we had a little conversation a couple of days later through Zoom just to get to know each other. And she does oncological coaching. Right, that I that I see that right. OK, got it correct. And and then when I was in one of your groups, I saw there was a bunch of people in there that are sort of part of your family in the same coaching arena. And I went and looked it up and and I don't totally get it. So I'm glad you're here to explain it to me.   Joe: One sentence I read said, some have said that ontological coaching is coaching to the human soul. You can take it from there and run with it. But I'm very interested in what it is that you do and how you help people and how you got into this. So actually, let's start there.   Joe: Why don't you give me the backstory on how you got into the coaching that you're now doing?   Kristina: Awesome. Yeah, thank you, Joe. I got into it because I've always been a student of personal growth and I've always been interested in the brain and how human beings work and understanding our psychology and our behaviours. So I've I've consistently, over the course of my adult life, sought out different ways to learn that.   Kristina: And I think it probably really started when I was in high school Learning about Choice Theory by Dr. William Glasser. And it's very similar to the hierarchy of needs. And I found it fascinating. So we would teach this to teachers and administrators.   Kristina: And it was it was a way for them to understand their students and understanding that they were trying to meet their needs and however they behaved or performed in their classrooms. And so it started in education. And I thought, I love this. I love this kind of work and what this is all about.   Kristina: And then fast forward several decades. And I was always looking for new understandings and new ways to put into place. And then I started going to something called Wisdom 2.0. It's a conference that happens in San Francisco, in New York every year.   Kristina: Last year, I think, was probably the last live when they'll do for a little while and this year it's happening virtually and I started meeting all kinds of different people and I started putting more connecting more dots, more and more and more.   Kristina: And then I started doing and then I started coaching on my own. But I was I was not yet trained for it. And I knew there was something missing. So I was searching and searching. And I had met many people through Facebook and Facebook lives and things like that. And I came across a friend of a friend that he posted. Something that it said something like, my coach advised me to share all the growth I've had in the last 20 something years of being a coach, and he shared all the things he was free from.   Kristina: And I realized that the entire list he had were things that resonated with me. And some of them I had worked through and some of them I was still working on, and then others were blind spots I hadn't identified yet. And but they resonated and I went, I need to know I need to know this man. So I reached out to him through a private message and I said, I want to know you.   Kristina: Can we have a caller? Can we meet? We only lived forty five minutes from each other. So we said, yeah, let's let's meet. How do you want to do that? And I said, let's go for a hike, which is really funny because he actually told me later he hates hiking. So it was just hilarious. But he said yes to something he's not a fan of.   Kristina: But come to find out, meeting him a couple of times, he had at that point he had been a coach for nearly twenty seven years, was one of the founders from a coaching organization called Accomplishment Coaching. There's two that teach ontological coaching. And I didn't know what it meant either. I just knew it was interesting. And I liked him and I wanted to know what he knew. And I hired him as my coach. I worked with him for almost two years. And the beauty of working with a coach every week for that length of time in the in the many layers we worked together was that I learned what was missing in how I was coaching people. Firstly, I was vastly under trained and under skilled as a coach. And there's a very low entry point for coaches. Lots of people can call themselves a coach without knowing what they're doing.   Joe: And I was one of them is one of them. And the market is flooded with those people right now.   Kristina: It is. It is. And so it's funny because now I find myself I have to catch my own intolerance for that and have compassion that they really want to help people. But I encourage I encourage people all the time. If you're interested in being in that field, please go get trained. Please find a good coach that knows what they're doing. They can guide you through that process because you will be your first student and your first coach. That's the right term. And so I was I began working with him and it was really funny because when I started working with him, I wanted to know all of the philosophy because the philosophy of ontology goes back to Aristotle. And he he was it was really about understanding your relationship to the world around you and asking good questions. And that, for me, checked the box of having gone seven years ago when I was going through my divorce to a place called the Option Institute on the East Coast. And it's part option institute and part of the Autism Centers of America. And I have several friends whose children are autistic and they go there regularly. But I wanted to go for option institute. An option was very much a philosophy on life and how your environment can change when you see with different eyes and you look at it differently and change your relationship to it and your context that you're identifying things and and discovering. And so that that was in alignment with choice theory many years before. And then when I found my coach, it was in alignment with Option Institute, all all around options and choices and how we choose to show up for our life.   Kristina: And then I went through Landmark of what Landmark Worldwide, which is very much based in ontology. And they they do it in a much more masculine way and a little bit more aggressive way than I do. But or even my coach is incredibly gentle. And I started working through all these things that I had noticed. I had been blocked for me. And one of my things was that I know I love to have the answer. And there's actually neuroscience that backs that up. We get a hit of dopamine and adrenaline and maybe a few other neurotransmitters that reinforce us being right and people telling us, oh, you're right. Oh, you're right. So I was addicted to that and I still love it. But by talking about saying that I love it, I can I can identify when it happens so that I'm not stuck in that pattern. And I I consistently put myself in spaces where I'm not the smartest person in the room by design. So working with him and being professionally trained as a coach changed the game for me. And it changed my life not only how I found and operated with clients and discover new clients, but how I operated in my own life with my partner, with my relationship with time, my relationship with money, my relationship with how I worked for others, and how I worked with others. My relationship with failure. All of those things, and at that same time, I was working at a small special needs school, doing all the business development, so I was applying it constantly with the kids I was working with.   Kristina: I was applying it with the the California Department of Education and how I operated in that and noticing when I was in resistance and frustrated with how the school systems work. And I was able to constantly change my context. And that doesn't mean it was always simple and easy. But I had different tools. My toolbox was growing. And I think the biggest thing that shifted in that process was I kept going back to what is the difference between a really good a really good friend that can operate with you on all these different levels and a coach, because I was having great conversations, but it wasn't necessarily leading to an outcome. And that's action, being able to take purposeful and intentional action every day and being able to supply them with concrete actions that I can say to them, how about how about we try this? What do you think about this action? And I used to ask it that way. Now I just give them actions based on what I know about them. But it's never homework. And people can then get on the court of their life and go and apply the things they're learning, regardless of whether it's perfect or not. That's not the goal. The goal is to be in action with your life so that you're constantly in a yes and conversation with the world around you and identifying what works and what doesn't work. And so ontology is really about our relationship with everything externally, being in alignment with what's happening in terms of, wow, OK, that's a lot.   Joe: Yeah, it is.   Joe: And it seems like a really good time for you and I to talk in my own life. You know how things just show up, right? I assume they show up at the right time. Right. That's the hope is that all of these things show up at the right time when you're prepared for it or you can handle it, or it's time for you to take the next step or whatever the case might be.   Joe: And I'm going through I'm beyond a midlife crisis because, you know, it's like I just had my fifty ninth birthday. So next year is a big one.   Joe: When I do things, I do them well and I'm hard on myself and I want to do want to be really, really successful with all that I do. So I'm going through a lot of things right now on my own. I'm trying to say, OK, well what is it that I, I want to offer the world?   Joe: How can I serve? And at the same time. The financial piece of it is a large portion of it, and I heard someone say the other day, I watched the video and how we're almost internally programmed right at a young age and whatever that means for each person. And so you literally could have. The Matrix is set up where you need to break out of certain habits that have been formed internally through your system. However you're wired, however, I forget how it was played, but really well. But it's like you might have adversity to financial freedom. There might be something internally that you just keep blocking. But the fact that you can't go out and become very wealthy and help to serve others. And if we just talk about money for a second, because you mentioned it in, there were different aspects, right? You mentioned money. And and then like three other things, I forget what they were, time, money, time and my relationship with others. OK, so let's just talk about the money for a second, if you don't mind. So I don't mind. OK, so I don't know where it comes from, but we think of maybe making too much money or wanting to make money or wealth or all of that in in a, in a it's like a dirty word. And I don't know where it comes from. I don't know how we get it. So maybe you can if you've dealt with this with clients and even dealt with over time.   Joe: Ok, so let's pick that apart, because I think that's a big that's a big thing. And and I'm interested in knowing who would come to you and need that sort of help. And I would assume pretty much everybody, because we all seem to have problems.   Joe: Everyone's got funny money stories. Yeah. So Zoom story around money.   Joe: So I'm going shut up and let you talk about what you do with that sort of thing.   Kristina: Yeah. And you're good. That's that's awesome. There's two things I'd say to that.   Kristina: One, I've picked up a new saying recently that I learned from a new friend of mine named Glen. And he he has spoken of this this phrase that I is part of my toolbox. Now, if you don't know why you believe what you believe, those aren't your beliefs.   Kristina: If you don't know why you believe what you believe, those aren't your beliefs. And so often we pick up things from our families and things from culture and things from society that we feel we should believe that we take on into our beingness. And things like money is money is bad or money is dirty. Or if I especially for healers and people in the space of healing that if I charge or if I charge a certain amount now I'm just manipulating people. Now I'm just taking advantage. That's a really common belief set of if I'm going to do this, I should just give it away and do it for free. Well, when when people are in the healing profession, what I say a lot of times is you do a disservice to people when you don't get them to put their money where their mouth is because they won't show up the same way. If you and you can think about the times that you pay for something versus go to a free event, if it's a free event, you think it's not a big deal if I don't show up. But if you pay for it, you're going to be in that seat or on that call or in that conversation because you've paid for it. You want to get what you paid for. So it's that there's a transaction that happens in that. And when people are very relationally based, they don't want to mix the transaction into it. It feels awkward. It feels awkward because it goes against a lot of the belief systems that are one of the pillars for that category of people.   Kristina: There's nothing wrong with it, just identifying that it's a blind spot and it's something that's keeping you stuck. So I see wealth as a five point star and I see wealth as spiritual, emotional, mental, physical and financial. And if your financial health is out of whack, it's going to send off bells for your wellness. Because when you're doing something that is a paid service, that when one exercise I use with clients all the time, that seems to be helpful, which is good because I love it. I love using it. So I'm glad it helps them. Think about the last time you paid for something that you loved paying for, whether it was a massage or a plane ticket somewhere or an experience or a coach, whatever that thing was. I loved being able to pay my coach. I loved being able pay to go to Wisdom 2.0, even though it was several hundred dollars. So and there's other events that I've been to that have been much more than that. And and I was so grateful to do that. Well, if if you've done a lot of things that you were regretful of, that may be impacting your own money story. And most of the beliefs that we form happened around seven to ten or somewhere in there, because that's when as children, that's when we start to identify that we are separate from the world around us at seven years old.   Kristina: And so we start identifying what we need to do and what we need to say to be part of our communities and get connection because it's a natural ingrained human need to connect with other people. So we do things that. Leave us feeling connected if we come from a family like I came from a family that didn't that was incredibly judgmental of people that were really wealthy and felt that it was they were vapid and all these different things. So it's so for me, it was difficult to address the money story because I felt the same way that a lot of people that are healers who come to me feel. I have felt that I've stood in that place and there was a switch that happened where I went, Oh. In order to get their full commitment in the work we're doing and then be committed to themselves, they have to make this investment. It's a high quality investment. And I had a client say that to me in the last year. I said, what made you decide to invest in coaching specifically with me? And he said, you're high quality. And I wanted a high quality investment as well. But then I put that I backed it up. I it was it's not about me. So even though that feels good, like I just rub it all over my ego, it's at the same time it wasn't about me. It was about this person making a budget for something that was for them.   Kristina: Most people don't have a budget for coaching or personal growth, so it comes out of something else. They have a budget for their car, for their house, for their bills, for their kids. But they don't create a budget for them. And the core of everything that I do is self-love and and being in alignment with yourself so that every choice you make, every action take is based on this alignment with self-love and self-respect and self esteem. And if you're out of whack inside, you're going to make choices that are out of whack and you're going to see it reflected back to you and your environment. You're going to have a breakdown in relationship breakdown, in communication, breakdown in your money. There's going to be something that is not working. And that's how you know. But Breakdown is the predecessor to break through. So when you're able to look at that from a place of non judgment or just be aware that you're judging the crap out of it, either one works. But be curious about what's happening. Like, ha, I'm trying to do this outcome. But the key word is trying because it's not happening. I'm not having this outcome yet and I'm not being this outcome and I'm here and I want to get there. So how do I close that gap? And the gap is in baby steps. Baby steps are still steps. And there's a great quote by Luisa.   Kristina: That says a thousand mile journey begins with a single step, and so when it comes to reprogramming ourselves and looking at new belief systems and taking on a new way of being, it's a collection of small steps that we've taken.   Kristina: And a lot of times when people are addressing something large, like how they relate to money, which is a large thing, they they think, oh, if I if I change my beliefs, it's all going to work out. Right. Well, you can change how you think, but then you have to put it into action. You have to practice it. You have to fall down many times and done is better than perfect. So you you. Take on a new belief and replace a new belief, you start trying it out, testing it out and see what works and what doesn't and observe yourself. And so in talking about money, the other thing is that people can go the opposite where they charge a vast amount of money, make a lot of money, but it's not fulfilling because they're, again, not in alignment. So they're using someone else's system or they're doing it in a certain way that maybe does killing people or does do something that's just out of alignment with what's true. And so they're making a lot, but they're unhappy because that happens to people can be wildly financially successful, but their relationships are falling apart or they're they're not in a good relationship with their children or their partner or their friends. And so they're running this racket of their life that looks like they're successful, but they're not because their relationships are a shambles. So in order to be truly wealthy, you really have to have all five points. That's a really big, long answer.   Joe: No, no, it's it's great. And. I think you hit a good point, because we hear so much these days, the conversation is mindset, right? And it's mindset. It's asking the universe and letting the universe know that these are the things that you want and then stacking on top of that. Telling the universe, thank you, I'm grateful for what you did deliver, and so the more you're grateful about those things, the more those things will come your way.   Joe: So I know all of this sounds fufu, but lately I've been really trying super, super hard to change my mindset about stuff. And I've always been grateful. I've never had a problem with being grateful about stuff. I mean, you drive by a homeless person and I come home at night and go, oh, God, I get to sleep in a bed and I have a roof over my head and I can go to a refrigerator and pull out food when I'm hungry. And so all of those things go through my mind all the time.   Joe: And by no means am I in any sort of financial distress. I make a great living and I'm happy. My ultimate goal would never to even be thinking about money like I have enough of it that I just don't ever have to think about it. That is kind of like this pie in the sky for me, where not only do I have enough or I don't, but what is enough? I that's right. It's a relative term. Yeah. So I don't that's, that's not a good term but. I never want to think financial freedom. Yeah, I just never want to think about it. That would be awesome to be able to have that amount of money, to not think about it and be to help family and friends and then charities and all of those really cool things.   Kristina: So when it comes to when it comes to that kind of financial freedom, there's there's a line between. A couple of things that you mentioned, there are certain weak words that we have a vibrational words, but then there are ones like hoping, wishing and wanting. And if you're hoping for something, you're just going to get more hoping. If you're wishing for something, you're going to get more wish. If you're wanting something, you're going to get more need and wanting. So the mind set piece is absolutely there. The key is to not end up in a place of denial and to be aware of where you currently stand in your financial status. What are you doing? What are your current behaviors? Taking inventory of that. And when it comes to mindset mixed in with that. There's one phrase that totally drives me crazy. And people say all the time positive vibes only. And they say that in context to a lot of things. But it can be around money to positive vibes only. And what it does is it's a toxic positivity, as though you're not supposed to talk about at all the things that are challenging for you. The key is to absolutely talk about the things that are challenging for you and do not stay there, recognize that's where you are and that's what's happening and that's what you're doing. And that a part of you is created the reality that surrounds you without turning that into total blame and shame storm.   Kristina: And so recognizing where you're at and then being able to go. OK, so what do I need to add, remove or transform in order to get maybe what are my liabilities and what are my assets? What do I currently have outgoing and what do I have incoming. Where is their block? Is it my my management of money that it just can't I just can't hold on to it, or is it my ability to generate. Am I having a problem generating or is it not having work like am I, am I having problems working with people and I'm changing jobs all the time. Like what is it, what, what are some of the bottlenecks that are keeping me small and keeping me hold back and what am I afraid of? So if you start and that's what ontology is all about, is looking at what are the best questions to ask to move this from judgment? Because judgment is a brick wall. It's just this is the it's a right and wrong thinking, black and white thinking that keeps you stuck in an old pattern. But if you can transform that into curiosity without asking yourself the right questions, you can start to move that energy in a way that is more playful and fun, even if it's a hard topic.   Joe: We talk about mindset, but you made a really good point is that it's not just mindset, but it's action.   Kristina: You can sit here all day long and think of all unicorns and rainbows, but unless you do something and put one foot in front of the other, it's never going to never going to materialize. Right. So that's the other key point. You people sit around and think happy thoughts and. Absolutely. Yeah. What are the type of people that come to you and want to work with you?   Kristina: It tends to be creative leaders, OK? People that come to me tend to be creative leaders and creative entrepreneurs that are either running a team in their company or just background is in sales and business development. So I understand that realm and now I apply it to what's happening internally and how do we get into action, because if you really want to simplify it, the key points that I always hit on with people are what are your beliefs? What are your intentions? So what's in the past? Where do you want to go and what are the actions that we're taking to close that gap? And that's that processes with every growth mindset rather than fixed in the way of being lifelong students and learners. And they're curious on how they get to their next big leap and their next level and how they can live into their zone of genius. And so my job is that if I see people as balls of yarn and it's a matter of teasing away the yarn that is covering up the beautiful sculpture underneath, and once we can tease all of that out, now you get to operate from your truth and from who you really are and what lights you up. And it means you're going to risk you're going to risk being seen. You're going to risk showing up. And there'll be days that you have to be disciplined in the actions that you take and the movements that you make so that you can close that gap because it won't just happen to you. It's in co created relationship with you and the world around you.   Joe: So if someone was to pick. A coach, and they say that most people just think when they when someone says to them, hey, you should be you should be being coached by someone, you need a business coach. Right? You need a personal coach. You need something. How do people choose? The type of coach that they would work with, you specialize in something, the work that you do, it's just you're not a generic coach, right? So how do people understand that they need to come to you as opposed to just picking a business coach?   Kristina: Yeah, that's a great question. OK. Always when I'm trying to.   Kristina: Yes, it's a great question and it's always when I'm trying, I work with a lot of creative people that have a lot of tricks to go with the things. They're high performers. They've had successes before. So they know what that feels like. They have that historical data that we can we can push on for future endeavors and a set of tools that they've already built that I can help them apply that to other arenas. So to distinguish who I am, since a lot of people don't know what a what ontology is or what an ontological coaches' that helps you really get in on your performance. So if you know where you're going and you have a clear vision of what that is, what you're trying to identify, what the steps are to get there. I'm not. My job is to not be the expert of you. Your job is to be the expert of you. So I'm just reminding you that you're the expert of you and your life and we're just teasing it out and going, OK, what works? What doesn't, what works, what doesn't, what works, what doesn't? Where where is your zone of genius and where is it not? Where is the inspiration and where is the obligation and how do we identify the differences of those things? Because people come to me for a whole host of different reasons. Then life shows up.   Kristina: When you have a very specific coach that is niched, they don't always operate at all the speeds. So they they're very good at maybe writing a business plan or doing the business stuff. But then if you have a breakdown in your relationship, they can't they can't support you. They're wanting someone that could operate at those levels and could move with me because I move in all those different arenas because I'm a human being. Last I checked, all of those things happen at this time. So I. So when I work with someone, I work with the whole human being. And we work on their business. We work on their relationships. We work on how they're relating to their lobby, because when that is in alignment, anything is possible. The rest, you can go find someone to help you with a business coach. If you want to be more specific, if you need someone that's just working on energy work and you want to go find an energy coach or an energy intuitive, you could do that. If you need a naturopathic doctor, you go find that. So those are definitely niching into specialties, but mine is the whole human being in front of me. And how do we get you solid so that no matter what you're approaching, you have a regex into the world? That's my my every so and my Zoom genius.   Joe: You help. Anyone that is completely confused about their purpose. Does that ever come into play in what you do?   Kristina: I can support people in that, but I typically don't bring those on its clients because it's it's a long road and there are coaches that work with that. More specifically, I I want people that know their vision and know where they want to go. They're just having trouble identifying what the next steps are. That's because that's my my lane, that's my zone of genius. So I can support people with answers or questions or exploring it here and there, but I usually don't bring them on as a long term client. Perfect.   Joe: That makes sense. And that's what's cool is that you have a lane and you stay in it. And that's what makes your coaching so good, is that you're not trying to be everything to everybody.   Kristina: Right. And I think sometimes people, they think they don't know what their vision is actually. Do they just have multiple visions and they're not sure which one to focus on. So it's actually pretty rare to find people that are floundering and don't know what their vision is. Those people don't tend to gravitate to me because they're looking for an external answer of someone to fill a void in them. And I will not speak to someone smallness. I will only speak to their greatness. So if they they learn pretty quickly that if that's something that's offensive to them, they don't want to hang around me, I won't reinforce someone's smallness. That's perfect.   Joe: So there are three things that you brought up earlier. It was the financial, the time and personal right. Relationships, relationships. OK, so we talked about financial. What about time?   Kristina: So when it comes to time, people are either overly rigid or always late and then there's everything in between. But I used to very frequently fall into the always late category and and it was to keep it PG for people watching. My coach said to me, when you're always late, you're either flew to the other person or a few to yourself. And it was so shocking to my system for him to put it in that kind of. So that's how it's being, how it's showing up. I need to look at my relationship to that. And what I was doing was I was overcommitting to so many things. I was missing things all the time and or I was getting too absorbed in one thing and then being late to something as I am surrounded by a lot of people that take their time really seriously. And they're they're very integrity with their time. And if I was late to them, it was offensive. And that's understandable because now I'm on the opposite end and I could notice myself feeling that if people are late for me or they miss a scheduled time and they've blocked time on my calendar, it's super disrespectful. And when you take responsibility for your beingness in time and space and how you're showing up, it changes the game. And it's and I say that in. Whenever I say changing the game, I just what I'm really saying is it changes the full context and how you relate to the world and when you're clean in how you operate in time, you start attracting other people that are clean and how they operate in their time and their own integrity. So if they say they're going to be there, they show up and they're there. If they say they can't, then they are. If they're if they can't, they say they can't. So you start operating at a much higher vibration where people are true to their word and being whole and complete in who you're being, which is taking full accountability for your behavior and your actions.   Joe: Perfect and loved how you explain that. Perfect. So the other piece is relationship awesome. Yeah.   Kristina: Relationship in the context of the people and the things that we're committed to. So not just relationship like an intimate relationship, but it's it's really it's too thick. Two different things that people run into all the time, their relationships, their actual relationships with other people and then their commitments to different things. And all of these these four things, money, time, commitments and relationships, they all bleed into one another. And if you're out of integrity or if you're in break down in your relationships, it's likely going to affect your time and your money. If you're out of integrity and your money, it's going to affect your relationships or your other commitments. So when it comes to relationships, recognizing your impact on other people. So, for example, in a clubhouse room, if someone comes in to they come on to speak on a stage, but they're going to the moderators are going in order.   Kristina: And that person launches into say something, say, hey, can I just jump in? And they don't wait for an answer. And then they launch into a 15 minute story. It's impactful on the rest of the room. And now you're you're you're basically saying, I don't care what anyone else has to say. I only care about what I have to say and the sound of my own voice, because you didn't even wait to find out if that's OK. So noticing in your impact on other people around you is what I what I'm usually referred to when I say relationships.   Joe: Yeah, there's a lot of that going on. Yes. Yes. So is there anything that I miss that you want to talk about?   Kristina: No, I feel pretty complete. I mean, I can I can talk all day long.   Joe: So if someone would like to work with you, how what's the best way for them to get in touch with you?   Kristina: So the easiest way is probably just go to my website, Christina Crookes, dot com, and you can book a call right on there. You can book a complimentary coaching call and experience what that's like. And you can iman all the social media platforms. They can send me a message that way. So find me on Facebook and send me something through messenger. You can find me on Instagram and send me a message that way. But the easiest is to get on my calendar and we'll have a conversation and talk further about what's what's happening. OK, perfect.   Joe: I appreciate you being here with me today. And it was fun for me to learn more about what you do. And I hope that you continue to change lives with your coaching and help people get through various stages in their life. And I guess the key is to love themselves to self-love is super important. I think we're finding that more and more each day. So I appreciate your work on that. Totally. Thank you. Kristina Crooks, thank you so much for being on the podcast. I appreciate you. Glad I met you. And Clubhouse, we will continue our conversations there. It would be awesome to have another conversation, but thank you again for being on the podcast. Thank you.

The Joe Costello Show
Jotham S. Stein

The Joe Costello Show

Play Episode Listen Later Apr 7, 2021 55:43


A conversation with the principal of Jotham S. Stein P.C. about his recent book called "Even CEOs Get Fired". This is an easy read for any entrepreneur, C-Suite executive or investor on the tips and tricks in today's high stakes business world. It's probably safe to say that most people who want to make sure they are protected in their work environment whether you're the CEO or you work for a company, should definitely read this book! Enjoy this very educational conversation with Jotham Stein. Thank you for listening! Enjoy, Joe Jotham S. Stein Principal - Law Offices of Jotham Stein P.C. Website: https://jotham.com Instagram: https://www.instagram.com/jothamstein/ Facebook: https://www.facebook.com/jotham.stein LinkedIn: https://www.linkedin.com/in/jotham-s-stein-7b92474/ Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.libsyn.com Subscribe, Rate & Review: I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to: https://joecostelloglobal.lybsyn.com Follow Joe: https://linktr.ee/joecostello Transcript Joe: Jotham Stein, welcome so much, I'm glad you join me on the podcast. I'm looking forward to this. I don't do a lot of things that dig deep into legal conversation. So this is going to be very educational for me and I know for my audience as well. So thank you so much for joining me.   Jotham: Thanks for having me on your show, Joe.   Joe: Yeah, absolutely, so we're going to definitely talk about your new book, which is ""Even CEOs Get Fired"", which is very interesting because I've been a CEO my whole life. So it's kind of scary to think about that I would get fired from my own company first, get a little back story about you from the interviews that I heard. I know that you and I are both New Yorkers. So I grew up a couple hours north of New York City. And you grew up on Long Island. If I if I remember correctly.   Jotham: That's true. I'm proud graduate of high school, Syosset, Long Island, New York City, Nassau County, sort of almost all the way to something closer to north and south shore, but pretty much in the middle.   Joe: And do you still get back there or you're not there, right? Do you live in California now?   Jotham: Yes, I live in Half Moon Bay, California, three blocks from the beach, so when I was growing up in high school, I used to love to go to the beach. That's where you go, you know, all the time in Jones Beach Those   Joe: Yes.   Jotham: Beaches, even Robert Moses State Park on Fire Island, you go there, too. Now, I live three blocks from the Pacific Ocean and   Joe: That's   Jotham: Happened back.   Joe: That's awesome. I saw a kiss at Jones Beach. Of all Kiss and Aerosmith all in one night.   Jotham: In one night, wow,   Joe: One.   Jotham: I think you have the theater there, like in the bay. Oh,   Joe: Yeah,   Jotham: That's cool.   Joe: And I where I went to college, I went to New York State University and pretty much the entire university was Long Island resident. So I have a bunch of friends that live out a lot. So it's near and dear to my heart. Can you give me a little back story about you, like how you decided to get into law? You know, just I like my audience to know who you are, and we just don't launch into, like, who you are. Now, it's interesting to know the person and then we get into what's going on today.   Jotham: So after high school, I went to college at Princeton in New Jersey, and I was actually interested in public policy. So one of the things people are interested in public policy do is they go to law school. So I wound up I never really been to California only one time in my life. So I was fortunate enough. I applied to California schools, got into Stanford and and went to law school at Stanford, which is right in Silicon Valley, as it turns out. So I got out of Stanford and I went to work for the big Silicon Valley law firm for two years. You know, the firm that probably I think started Apple are famous in this area. Not that I have anything to do with Apple, but but I went to work for that law firm for a couple of years and then left and traveled the world. I hitchhiked around quite a bit. I've been in quite a few countries and that I eventually hung out my own shingle in Silicon Valley and people knew that I was. I started out in litigation, meaning when people are individuals or companies to each other. But after a while, a lot of the local lawyers figured out that that I could probably write a contract to protect people as best you can from getting into lawsuits.   Jotham: So that's how it started. And eventually, I'm an entrepreneur myself, so I like meeting a lot of entrepreneurs and executives of people. So I'm a lawyer that has a lot of people as clients, real people that have different issues. And so I like meeting them at all that show. When you start doing a good job with one entrepreneur, they refer you to other entrepreneurs. Lawyers refer you to other entrepreneurs. I ran an advertisement I talk about in my book, "Even CEOs Get Fired", which is sort of named after an advertisement ran 20 odd years ago and no longer existent magazine called Red Herring, which in those days was the hot Silicon Valley magazine. And it was titled "Even CEOs Get Fired". And you would not believe who called me off this advertisement because people have all sorts of problems at employment at every level. My book is for everybody from the entry level individual to the mid-level manager to the CEO. And all those people called me off that Ed. And and one thing led to another. And here I am. Now, I, I know a lot about protecting executives, entrepreneurs, mid-level employees, starting out employees, somebody with a new business and so forth. So that's that's the background.   Joe: Perfect. And so I notice that you have not one, but three officers   Jotham: I   Joe: Said true.   Jotham: Do. That is true.   Joe: How?   Jotham: How do you get to ask me how I wind up having three offices? So.   Joe: Well, because it's like I know even when you were with David Meltzer on that interview, it's like, why? What was the first thing that came to your mind when you said, hey, I'm going to break out on my own, get out of the safety net of working at a firm? Right. You don't have to think about much of anything but what you're responsible to do. But then you break out you open up not only one office, but you have three offices. So I was looking going, OK, man, he really went for.   Jotham: So that's the story of those offices, of course, that my longtime office has always been in Silicon Valley, in Palo Alto, although these days with covid you can work anywhere, we could work anywhere anyway when you represent as entrepreneurs do not care where you are in the world, as long as you're giving them excellent advice. And many of them won't even come to visit me in my Palo Alto office because time is money. They'd rather be doing whatever they're good at with the mobile games, whether it's by a pharmacy, but it's a Wi-Fi, whether it's security, whatever they're great at, they don't want to come visit their lawyer maybe once. So I could really work anywhere. But I had an office and I now have an office in Chicago land outside the Chicago suburbs, in part because I live there. And I can say that living near Lake Michigan in that area and those lakes out there is not the same as living by the ocean. We grow up along Long Island by the ocean, and it has to smell like salt. So I now moved back to California and I have an office in New York on Long Island as well. And that's actually because you're supposed to have an office in New York if your practice law in New York, and I'm licensed in New York, in Illinois and in California, Colorado and the District of Columbia. So that's   Joe: Perfect.   Jotham: How got.   Joe: All right, well, good. Can I can I break down what your firm and what you do, like what's the specialty before we get into talking more about the book?   Jotham: Look, the thing is, it's going to really help you, you know, the CEO, but it's also a breezy read. This is easy to read in the story. In the book, about 40 percent of the book is there. Fifty nine stories there that are fictional. They're the repetitive stories of genres of stories that happen, but they're not any specific story that made them up actually to Peet's Coffee in Half Moon Bay here. I wrote the I wrote all of those there. And so you might find out, hey, that happened to me or or it happened to somebody. I know. But it's because it's a kind of repetitive story that happened. So it'll be a really easy read for you. You can read it on a plane, you can read it on a train, you can read it at your house, you can read it on the beach or wherever, or you can read it, you know, looking for very straightforward advice about how to negotiate a contract and how to protect yourself.   Joe: I think it gets confusing with people who don't understand the law and don't understand when they might need an attorney and when they don't. What would you say if you had to put down the bullet points of what your firm does? What do you specialize in? So if somebody said, hey, they hear this and then they eventually see this YouTube video, they say that's one of those is exactly what I need. And they reach out to your firm. So it'd be nice if we knew exactly what you could help a CEO with or someone who is working for a company at a high level, at sea level position, any of that.   Jotham: So the first thing I have to do is be technical here and say that in California, you can't say you specialize in something, you have to say focus on it. That's some ethical obligation. So I don't want to mess it up for anybody who's from California listening to this. So what we focus on, I guess, is I've got I've got to turn that question around on you just to say that sorry about that,   Joe: No,   Jotham: Because,   Joe: That's perfect.   Jotham: You know, every every state has their own bloody rules. And so I pay attention to them 100 percent. And so I want to make sure it's focused. So what we do is what if you want one word is we help individual, whether they're the whoever they are, to protect themselves in the employment and personal relationships. So it could be a relationship with your boss, could be a relationship with your company, could be a relationship with your investors. That's typically what we do. So and we represent actually in their individual world, we even represent investors, professional investors like private equity partners, a private equity companies. Those are the venture capital or venture capitalists. We represent venture capitalists typically in their own deals. So when they're protecting themselves, when they're doing deals with other venture capitalists, for example, so with a CEO, for example, we would give us their contracts and they say, well, we should should we sign this? And I said, well, are you protected? Are you protected in your severance? Do you have a profession, what we call a professional prenuptial agreement, which is nothing more than a severance agreement negotiated on day one. So for the executive, that may be, you know, severance and equity protection may be protection for COBRA payments down the road for an individual like an engineer just starting out if they have any leverage at all. And honestly, many don't. But if they do a one line sentence, if you fire me without cause you've asked me six months of stock and and you pay me three months of pay, for example. And so that's what we do. Those kinds of contracts can be not just employment like you're thinking about, but they could be equity contracts.   Jotham: So how not to for an entrepreneur, how not to get screwed by your own investors for yourself. It's your own company. Let's say let's just say you taken capital invested. You have an investor, right? So they invest in your company. Suddenly they have 20 percent of the company, suddenly have 30 percent of your company. How do you, Joe, as a CEO, protect yourself vis a vis those investors? Now, like I said, sometimes those investors, the professional investors come to us because they want to be protected against their own investors when they do a deal. So with their own investors. So what they are doing is becoming limited. They're becoming general partners or having some sort of arrangement. So we review contracts and give straightforward advice about how to protect yourself and honestly what the risks are if you don't, because people and businesses take risks all the time. You as a CEO have to be taking risks in your business. So you need to be fully informed about that. And so that's what we do on the individual level. We do represent companies as well. And we are some of our CEO clients have have us, for example, representing their company because they thought we did a good job for them individually. So we do a lot of that also on the separation side, too, and I've described the employment side, protecting, protecting the CEO, like your question was on the front end. But the back end is we helped negotiate separation agreements all the time so that somebody has sort of a smooth landing and can then professional reincarnate themselves.   Joe: So I used to share office space with a what are called a placement agency. They were finding jobs for people   Jotham: Brian.   Joe: And some of these jobs would be at a high level and   Jotham: Right.   Joe: Really look fairly large salaries if the negotiation of that employment is is carried through the placement agency with the people at the company that are hiring and all of that stuff gets done. How can someone fit in, someone like you or your firm in the middle of that negotiation and make sure before anything gets signed and they get employed that they've been taking care of?   Jotham: So   Joe: That's   Jotham: If   Joe: Kind of tricky, right? It's it's.   Jotham: It's very tricky because the employment agency is working for the company and the employment agency typically gets paid only when the person is place, so the employment agency has a very that's not always true. Some employment agencies get paid straight salary or commission or something. That's not per person. They're just given a job or a project. But often they only they only succeed if they place the person. All right. So if you're talking on a lower level of employee going into the company, they often don't want to take the risk of going to get a lawyer because I could create a real problem, frankly, in getting their job. If you're talking about a senior executive being placed by an agency that is there, the really best placement agencies that really care about their clients that they're placing, even though they represent the company, will say go get a lawyer, but almost all of them do not even at the highest level. So it's incumbent on the on the on the executive, whoever they are, or entrepreneur. But in this case, employment agency is going to be executive to go and to say get get their lawyer. So once they get a lawyer involved, then the employment agency sort of out on the outside and some liaison between the executive and the company and using us often as shadow counsel. So we don't even appear until the end to work on the contract. But, you know, if you're going into if you're a senior senior level person, you want to know what your downside risks are, what your recommendations are from from somebody who's seen it hundreds and hundreds of times, maybe a thousand times before. So.   Joe: For someone who's listening to this, that is at that level that hasn't thought about that, step back for a moment. Take what you've been offered. Find someone like your law firm and say, I need you to review this contract to make sure it's in my best interests so that once I sign, I'm being taken care of all in there. And I have some sort of exit strategy that makes sense. That's fair on the way out.   Jotham: Absolutely, 100 percent, I couldn't have said it better myself,   Joe: Well,   Jotham: So,   Joe: I'm learning already.   Jotham: Yeah, it's great you're learning and it's just to maximize the return, the person   Joe: Right.   Jotham: That's listening to the podcast. So they want to maximize their return. Why in the world would they sign a contract without being fully informed? And the only way to be fully informed is to come to someone like myself who's done it hundreds of times. I can tell you we've had the most shrewd executives, some that have been so successful in their lives, and they come to us after they get screwed and they say, well, what happened? And I say, well, if you talk with me before you sign the contract, either you wouldn't have negotiated this and you would have protected yourself or you would have said, you know, Jotham, thank you very much for that great advice. I'm going to take the risk. I hope I don't call you to tell me to tell me meaning, Jotham,   Joe: All   Jotham: The person   Joe: Right, I told,   Jotham: That you told me so.   Joe: Right, exactly. Let's take me, for example, as a CEO of a company and like I had mentioned, I have I have had three or four companies up till now. Do you if what I ever come to you and say, I need help protecting my personal assets, I need some way for you to look at my business and look at my personal assets to make sure that as as an LLC, which I am an LLC with an escort on the tax side in my protecting myself, is that another thing that you would help someone do or that's just different? That's a different.   Jotham: That's actually a complicated question, so I certainly read the operating agreement because many, many people start it depends on how you're asking the question of it's called context dependent. If you're asking me how can I set up a corporate formation that I'll best protect myself with trusts and estates, I'm not the person to do trust estates. Right. We send that out to lawyers we know all the time. That's a special area if you want to set up. Like I said, I trust the estate and lawyers in the legal world. They call that trust the state's law. If you come to me and say, how best can I protect myself in the corporate world by setting up an LLC, we certainly could set up an LLC have done that. We also work with other firms or give advice all the time to our entrepreneurial clients. I mean, I'm like a secretary or just just have been secretaries of companies before for our clients. But we might work with with another law firm if, for example, they had doing a sophisticated security transaction by selling stock or something. But so we could we give advice on that. And at some point we'll stop and say, no, you need somebody else.   Jotham: If you're if you're talking about how you Joe, who has an LLC, can protect yourself vis a vis other investors or vis a vis partners, you might have strategic strategic partners or even vendors or contractors. Yes, we do that all the time. Then you would come to me. So basically we have client exactly like you're describing somebody who just starts a business. There's a bit of serial entrepreneur and they get most of their advice from us and we say, no, we're not giving you advice. For example, tax law. I never give advice on tax write. I know the lawyers who give the advice, but and I recommend our clients that to that. But I have I have clients who want me to give them advice on tax law. And I'm like, absolutely not. Let me let me let me tell you where to go. And, you know, most most people who are in business and and are will say, OK, well, my lawyer's telling me he's not the right person. We find them the right person. That's just an example. So your question sort of involved a number of possibilities. And   Joe: Sure.   Jotham: Without knowing the facts, I can't really answer 100 percent, but.   Joe: Yeah, and I'm just trying to drive to the fact that if I was listening, like I listen to a podcast of the chat and things will pop out during an episode where I'll say, oh, that is something I've been thinking about or something I to get an answer for. So I'm trying to make sure that everyone knows who's listening to this and eventually will watch it, know the things that you can do for them in case something pops up. I'm trying to ask the questions that if I was listening to this, I wonder if he can do this for me. It's that kind of thing. I'm just trying to make sure that if there's something you can do, I want people to know you can do it for them.   Jotham: Oh, yeah, I mean, you want to start a business, we knew that you want to get investment, we protect you, you want to do employment, work on any level, we could help you protect yourself. You got a strange sort of possibility for your next job, for your next business deal. You come to us, we give you straightforward advice, and that's really the key. And we give great business advice as well as great legal advice. And you'll see if when you read the book, "Even CEOs Get Fired" half of our work. Is that so? In other words, since we've seen so many different possibilities, people in the gym don't not going to see that the hair on my head on your YouTube channel. But but I've seen all these all so many different possibilities that go right in that go wrong. And sometimes they go right. The person's thirty third business, they say, oh, business one, that business do they reincarnate and they and they maximize their returns and they make it on the third go. But we have lots of people sitting there doing that on the bikes or in the gym and maybe on the rowing machine.   Jotham: A row or so do rowing machines, you know, just because it's they've succeeded twice before and they're going to their third job doesn't mean that they don't have tremendous pitfalls in their deal, whether it's their equity deal or whether it's their employment deal, whatever the deal is, whether it's a deal to to have your perks, for example, cars, for example, to drive around, it doesn't mean that because you've been OK the first two times, there isn't some gigantic problem that might rear its ugly head the third time around. So if you're going in as an entrepreneur to a company or starting a company or as your executive or anybody with leverage in employment, it's always a question. Do you spend money on a lawyer? But if you want to protect yourself or want to see what your downside risks are, want to be fully informed. I want to have either the opportunity to maximise your personal returns, whatever they are, or know that you're taking risks in that attempt to maximize them. You would come to me or my law firm or or a lawyer who does similar type work wherever that person lives.   Joe: Great. OK, so to lighten things up a little bit,   Jotham: Ok, it's.   Joe: So I thought about this when I heard you talk about there's fifty nine fictional stories there, actually there are real circumstances, but you've you've obviously protected the people by not naming names and naming companies or whatever. Right. So is that what you mean by those fifty nine. These are actual things that occurred, but you just created them to not name companies or names or anything specific.   Jotham: More like they're not they're not individual to any individual story, I've had it just happen so many times over and over again. And so it's like, OK, I get something that happens. An entrepreneur walks in and I'm like, OK, this is like 16 other times it's happened. It's new to the entrepreneur, but to me it's happened a lot of times before. So that's what I mean by it's fictional, but it's based on my experience. So I literally wrote them at a Peet's Coffee. Right. And so, I mean, let me take one, for example.   Joe: I was going to ask I said I was going to put you on the spot, say I love story, so I need you to tell us why.   Jotham: Ok, so there's one in my book, I actually spoke just briefly about it with David Meltzer. It's one I like. OK, here's a perfect example. There's a very successful woman as a number two at the company. Essentially, she is also a biathlete. So I like athletics. I never did biathlon, but it's people who do cross-country skiing and shoot at targets. Right. OK, she's very successful. She has a doctor. She is a doctor. But like some doctors that you never think about, they go into business. Right? All these biopharma companies, a lot of these are ends. They never actually practiced. But I got clients who I have clients who are MDs at practice and those that never practice. They get their degree and they go right into business. So this this character goes into business. And her CEO, she's doing really well after four years of this company and her CEO gets changed out the prior CEOs to lead. This happens all the time. New CEO comes in and this character is as good, as honest as the day is long. And the new CEO wants a yes person.   Jotham: So, you know, yes man, a yes woman. And she is not a woman at all. And so he decides he's going to push her out. OK, this happens all the time. So he makes her life miserable. But being a biathlete who's well trained, she's she's able to stays there and continues to work like we see so many of our executives and entrepreneurs, they think because they work harder and they do a better job, that the board and the CEO are going to somehow like them more. And that's not the way it works. If somebody who wants a yes person wants to get rid of you so or in a different world, very similar corollary genre. A new CEO comes in, wants to bring in their old team. They're going to fire people below them. And the literature is actually you should do it within 60 or 90 days. So it doesn't matter how good those people are. Anyway, she's a straight shooter. That's what I say in the story, right? She's a straight shooter at two hundred yard   Joe: Right.   Jotham: Shooting a rifle and she's a straight shooter. The CEO and the CEO finally can't take it anymore. And he fires her. He gets the board to approve the board votes. Five, nothing to fire after nine months. Maybe it's maybe I don't even my story. Right. Maybe it's ten months. Maybe it's seven months. But it's something like that.   Joe: Ok.   Jotham: This happens all the time. I've never had a biathlete as a client. I've always admired biathletes when I watch them on TV. I did spend time in Lake Placid while I was doing Lugt, a different sport   Joe: Oh, nice.   Jotham: So I could talk about that anyway. So what's the story? So this thing's all made up, but what happens after she's now out? She gets a severance agreement, she leaves, she's at the firing range, practicing at two hundred yards and she gets a text. Who's getting a text from she's getting a text from the investor of that company who sat on the board who voted to fire her was five nothing, remember? OK, the investor says, as so often happens in Silicon Valley entrepreneurial world, the investor says essentially this is all by text now. So I'm paraphrasing my own writing. So now north of our paraphrasing what I wrote and the investor says, well, why don't you look at two of my other portfolio companies? And she text back the character, text back to the investor and says, well, I don't understand. I got a great severance agreement. You fired me. Vote was five nothing. Why are you contacting me? And he says, well, it didn't work out so well at the other company, but one of my portfolio companies here might be a better fit. OK, that's a story that's happened multiple times in Silicon Valley, multiple times in the entrepreneurial world. I have no, that's what I mean. I created them. That's a genre of a story. So I could have a client come in today after our podcast, they could tell me a similar story and I'd say, don't burn the bridges with those people sitting on the board that you all those board members almost always invest in startup, not always, but almost always back the CEO until the day they fire the CEO. But you've just been fired. You're the EVP or the SVP or the VP, whoever you are, that board member sitting there who's a shrewd investor, the only thing they care about really is all of their other portfolio companies they're taking care of. Right. And so they may call you to offer you a job. So you don't know that. So what in this story comes in in a part of the book, which I guess I should show again,   Joe: Absolutely.   Jotham: "Even CEOs Get Fired". There's a chapter on professional reincarnation. So and this happens all the time to somebody just like this character gets fired. And so they reincarnate themselves in the next job. That's a very, very, very common circumstance. I often have clients. It's a terrible separation. They're having like this particular executive I described in my story, nine months of being beaten. I mean, it's a miserable place to work. But a lot of these a lot of these people soldier on. They've always been they think that they work harder. It's going to get better and often it doesn't. And but I often tell people six months later, you're going to call me and tell me it's the best thing that ever happened to you got fired.   Joe: All   Jotham: And   Joe: Right.   Jotham: Many of them, if they have protection, you know, they. They call me six months later, they say, hey, it's the best thing that ever happened to me, I got fired to have a better job. I have a better life at home. Whatever it is, I'm doing sports more often. I'm getting paid more. I get better equity, whatever.   Joe: Right, so there was two takeaways from that story for me. One was that potentially that smart woman had you look at their contract. And so when they did finally get removed from the CEO position, they walked away with a nice severance package. It didn't have to fight to get anything. And the second thing that you mentioned was that they left in good terms, at least with the board, which showed that they could then potentially get more opportunities down the road by not having this giant blow off at the end of it.   Jotham: So the I should say with what you just said, the second one is absolutely true and there's a part in my story where I talk about burning bridges and you should and I say, listen, sometimes it's the best thing personally, mentally to burn the bridge, to strike back. OK,   Joe: Right.   Jotham: I got that. But I what I talk about in the book and what I try to tell all my clients and the people on the podcast that are listening to everything in business coldly and calculatingly, if you're going to lose your crap in somebody and you're going to start yelling at them because they fire you and you're never going to talk to them again, that's fine. And but what I say is do it coldly and calculatingly, at least understand what you're doing. So in this in this case, and what I often talk about in the book is the character did not burn their bridges. It's true. They left the first part of your what you took away was that they had come to us for a employment agreement. Actually, in this case, two things. One is they got a great separation agreement even with the person who didn't like them and forced them out. They got a good separation agreement. So they negotiated that on the back end. And the other thing I should say is, as I say in the book, I am not into stories. It's modeled after the advice I would give. But I'm not in the story because the story is totally fictional. But it's as important to get a good separation agreement and be professional on the back end as it is to get an employment agreement on the front end.   Joe: So this has been bothering me, like, why did you stop? Fifty nine and I go to sixth. Why did you go past fifty five to fifty nine?   Jotham: The truthful answer is I didn't count them up until the end, so I didn't know how many I wrote,   Joe: Ok.   Jotham: But there is there is a story there's two stories in my acknowledgments, one with a colleague who's worked with my law firm a long time. I thank her for reading many versions of the book. And I tell a story there. And once for the four people I dedicated the book to, I tell the last story in the book and that actually involves for four Long Island guy going to the beach, Jones Beach. And so it could be 60 one by.   Joe: Perfect. OK, I just it was something that I wanted to ask,   Jotham: The.   Joe: So just so with the way the world has changed it actually let me let me back up in the dotcom era. Right. But like when everything was all about equity, how   Jotham: Right.   Joe: Much has that changed now? Because I remember when that was going on, like, I literally this is going to be funny. You're going to. But when I was working for a software company before I opened my first company and I was working in New York, we were actually teaching corporations how to use a Web browser. I was literally at the beginning of the Internet. So I remember just companies starting and going come in and work with us. The pay is going to be low to nothing, but we're going to give you equity in the company. And it was just all over the place. Every company was giving shares away. Right. That's the that was that whole era of the dotcom portion of the world. How has that changed now?   Jotham: It's exactly back to the way it was   Joe: Really?   Jotham: And absolutely there are hundreds of thousands, tens of thousands, hundreds of thousands of people running around in Silicon Valley and elsewhere. Remember, I've license a license to practice multiple states. So we have clients all over the country. They want equity. It's all about an equity play. Now, having said that, there are many, many companies who don't really give equity to anybody but their senior officers. And there's many places in our country, in America, where you only get a salary. And there are many, many kinds of many salespeople who care about equity, but mostly what they want is commissions. And, for example, an uncapped commission plan would be there, their their golden golden goose. They don't want to have equity. But if you're talking about the old dotcom days, because I was there then, too. And now if there are many people whose deals is all about an equity play, they get less pay than they could on the market for whatever they're doing. They take the risks and and often, especially for those starting out, coming out of college, they may go to two or three startups which will fail. And then the fourth or fifth one is the one that gives them, you know, a tremendous upside so they can go buy their next their house or whether the house, multiple houses, whatever it is. So it's really the same as it was when you were doing that in the dotcom era.   Joe: Was was there a lull at one point after the dotcom where everyone felt so burned about equity and all of that, that for a while it wasn't even on the table or.   Jotham: I think there was a guy there was like it never went away for everybody, but yes, there was definitely a period of time when I remember the stock market was in, that was way down and there weren't so many IPOs and people wanted that was all about salary even before the start ups or upside bonus upsides. If you did a good job after a year, even though you got a lower salary. And so it did it did desire for equity and equity plays slackened? I would absolutely say that there was like a trough like this, but now it's back to the way it was in my view. And it's that way not just for the entry level person coming out of college, wants to get some equity in the company and not just for the mid-level individual who's moving from one company to another, but also all the way up to the CEOs who want more equity and and give up salary or bonuses. Now, at the largest companies that you hear about the fortune, one hundred companies, those executives are getting equity and very high. So and bonuses and what's called long term incentive plans. So it depends on where you're what you're talking about, what company context you're talking about, what region of the country. But in terms of the startups of the world, the smaller companies in the world, the equity play for everybody from from the person who takes out the garbage all the way to the CEO, it's it's it's the way it was.   Joe: That's incredible, and you would see a lot of that where you are in Palo Alto, where you're know Silicon Valley right here.   Jotham: All the time,   Joe: All   Jotham: And when   Joe: The   Jotham: You   Joe: Time.   Jotham: Think all the time and when you talk about that, if you're getting stock in a company and it means a lot to you, you better figure out or you should figure out how to protect yourself with that stock. So, for example, many times companies give out shares over four years, let's say, or five years, they vest over time. And in the first year they have what's called a cliff. So you got no stock, you don't get any stock, you know, right. To stock until the end of a year. What happens if you're fired at 11 months and 30 days just before the year the contract says you get nothing. So do you want to protect yourself against that possibility? Because that happens a lot. Right.   Joe: That's crazy. Wow. All right, so I grew up in a large Italian family that owned a restaurant business   Jotham: Ok.   Joe: And I literally I partnerships for me make me cringe. Just just the word makes me cringe.   Jotham: Right.   Joe: And and I saw my own internal family fight and I saw my my father, who has since passed by his brother, is still living. But I saw that literally just separate and not talk to each other for years and the rest of the family hating each other. So that's just the lead in to the question of partnerships. Is there a part in the book? Again, the book is "Even CEOs Get Fired". Is there a part in that book that talks about partnerships and talks about what to look for, red flags, things that that seem to always go wrong in partnerships, any of that sort of advice?   Jotham: So there is a little bit, but it does not heavily focused on partnerships because but but the teachings in the book on how to protect yourself, maximize your returns, put everything in a clear contract. That's very clear. There's two sort of parts of the Italian family having the restaurant business and then a fight among family members. OK, and and that is discussed in the book in a different way, which is, you know, make sure, you know, you're going into business with. But part of the problem is I can't protect you from a fight among man family members who are fighting for many other reasons and historical reasons. Right. I mean, they just weren't family members in the business. They had had a family history. Right. They grew up together. They had uncles and aunts and grandparents. And so that's that's a personal sort of a personal concern. Those people that's that that a lawyer can help you with, although we turn out being a psychologist all the time. So we might have been able to help. For example, somebody comes to us and this happens all the time to partners in fighting and we say, well, why are you fighting? You know, maybe it's better you break up. And before you have a fight about this, do you really want to sue each other? Because you wouldn't believe some of the lawsuits that are fought between family members of former friends. It's terrible.   Joe: Well, yeah, and I was going to say this was a push out, my father got pushed out, so this was a thing where he worked there all the help build this business his entire life. And in the end, this could happen and he got pushed out.   Jotham: So the worst part of those kinds of push ups that happens, and I'll tell you another one of my stories that repeats itself all the time, the worst problem of those stories that I hear about you're telling me about is the personal the personal suffering. Right, with getting getting kicked out of your own family business, getting stabbed in the back by your own brother or uncle. That worst part of that isn't the financial loss, although that can be terrible. The worst part is the personal loss and the personal relationships that are lost and the suffering that happens on a personal level, that sometimes people need psychologists for that to help them there rather than a lawyer. The second part of that is the financial potential loss that we could have helped to protect himself. Because if you have a contract and we've had some of these where nobody can fire the other person, contractually, you can't fire them. So they have to do a deal. Or in a typical family situation, somebody passes, you have a buy sell agreement. But imagine having a contract that we've had these with really sophisticated investors. So imagine like your manager, whoever pushed out your dad, not having the legal right to do that contract says the business is 50 50. And one or even the contract could say uncle gets 70 percent of the business. I get 30 percent of the business. But you can't fire me and you've got to keep paying me or well, if you fire me, at least you got to you've got to continue to pay me my exact same salary with a cola cost of living increase. You know, there are ways to help to make sure that it's negotiated out as opposed to a coup. Now, the story. You want to hear this story from the book.   Joe: A   Jotham: That's   Joe: Totally.   Jotham: All right there. The repetitive story that happens a lot. And again, the worst is just like your dad. The worst is the personal cost is the person who gets the entrepreneur who gets stabbed in the back and is forced out of their own business. The palace coup, the leader or not necessarily always the leader, but the person who following along, enjoying in that palace coup is a person who stood up at their wedding. And the wrongdoer is the person who stood up in the wedding. And so when the client comes to me with the story and it's happened many times, multiple times over the years, and the worst thing you feel both terrible about is the client here is now telling this story. They made a lifetime of decisions to have the wrongdoer stand up at their wedding and they believe that that person was their loyal friend. And the destruction of that friendship and and the and the new clients recognition that they got it wrong on a personal level, that's even worse than the the financial costs and the financial cost can be great. Being stabbed in the back by the person who stood up at your wedding stories only happened when money becomes involved. And the startup world, that's usually when equity suddenly becomes it goes from a penny a share and suddenly it's worth fifty dollars a share, twenty dollars a share. And by the way, unfortunately, I have to report that the wrongdoer can be a bridesmaid just as much as it can be a groomsman.   Joe: Wow. OK, so here's the question I have based on the circumstance we just talked about with my father having that business and it goes for any any business. If you start to think something's going bad, is it too late then to try to figure out a way to protect yourself?   Jotham: Maybe, but the first thing you should do if you get if you get concerned that something is going wrong is not wait around, it's go find a lawyer who knows what to do and might be able to help you. So this is something I do talk about in the book. If you get a lawyer while the things are going wrong and he or she acts as your shadow counsel, they can often help you, first of all, react in an appropriate way, in a way that protects yourself, maximize your protection while things are going downhill. But for example, in the email wars that might happen where somebody else is trying to paper file and and, you know, something's wrong, but you don't know what they're doing, you can paper that file to protect yourself. And so that's really important since actually what you just described. I've had that on my website. My my professional website, which is not the book's website, is "Even CEOs Get Fired" dotcom. So   Joe: Perfect.   Jotham: If you want to learn   Joe: I was   Jotham: More   Joe: Hoping   Jotham: About   Joe: You   Jotham: It.   Joe: Would say that.   Jotham: Yeah. Even see, it's one word, "Even CEOs Get Fired" dotcom.   Joe: Our.   Jotham: But even before that, I had a professional website being a Silicon Valley very early on and it talked about exactly what you just described as something you feel something's going wrong in business, in your job, in a relationship with an investor, whatever it is, call an experienced lawyer, not necessarily the your friend, the lawyer, not necessarily the person who did your your will or your trust, somebody who does entrepreneurial and executive law. And they've seen it before. And they can give you really good advice and you can really keep yourself from being really financially harmed if you do that.   Joe: And when something like that happens, like my my brain initially went to, OK, if I felt something was going wrong and I was in a partnership or some sort of partnership, but any circumstance where there are other people involved, because I'm lucky in my case, it's just. I don't have to deal with anything. But if I was in that circumstance, do you have to get the other party to sign? Like, if I came to you and said, listen, something's going wrong, I need to start protecting myself. We need to write up some documents. Are they not official until the other party has seen them or sign the.   Jotham: Now, you've asked me a complex question,   Joe: Good. Now, here we go.   Jotham: You could have an oral contract, right? Many   Joe: Ok.   Jotham: People have law contracts. You could have an oral contract evidence by a course of business doing business. So I really have to know more. That's something the first thing we ever do when somebody comes with a sort of a fact pattern, you just ask me is we want a full chronology of events. So if you come to a lawyer who's seen a lot of it before, they'll be able to figure out where you might have protection because you have an oral contract, for example, as one example, because the other side has it doesn't have anything in writing, even though they're trying to force you out. But I don't want to go back, if I can, to your father getting pushed out,   Joe: Mm   Jotham: If that's   Joe: Hmm.   Jotham: All right. Like,   Joe: Yeah.   Jotham: I don't know what happened. I never heard about it. So you just told me. Tell me now. But it's likely that your father groused a lot and was worried about it with his own family and didn't do what I just described, which is go find a lawyer who's shrewd and maybe unable, able to help him protect himself from the Paluska that that happened. And so it happens even in a small family business, you know, and now it's I'm going to a lawyer. You go to a lawyer and and you and you tell them the fact pattern. If they're good, they'll give you advice. And some of the advice might be, don't tell me I'm have a lawyer. Right. Just go along. You know when to disclose. You have a lawyer is it's a business decision and you want to maximize your return when you do that. So now that I went back to your father, I might have forgot what you just asked me. So   Joe: No,   Jotham: I have a question.   Joe: No, that's OK, I just I didn't you you alluded to the fact that it could be an oral contract. I didn't even know there was such a thing. I thought that in the eyes of the law, everything had to be written and signed. So I don't know what you mean by an oral agreement.   Jotham: So so OK, because you have listeners, I assume, across the country, I have to say, I'm not giving specific legal advice just so they understand   Joe: Yep.   Jotham: In every jurisdiction is different. And if you happen to live in Alaska or Louisiana, particularly Louisiana, it's really different. So, you know, if you're in North Dakota listening to this or you're in Illinois or wherever you're listening, you have to go see somebody in your own. And wherever you are, your own fancy word is jurisdiction, state, whatever. But in most places, they're an oral contract is equally as enforceable as a written contract. If two people come to a meeting of the minds literally about a contract and there's consideration and it's oral, depending on what the form of the contract is, you can have an enforceable contract. Now, they're in every state. There are certain contracts that can't be formed orally. A classic example in many places is you can't have a contract for land that's oral, but in most other places in all contract is enforceable. Is a written contract actually now a written contract is easier to sort of prove in some ways because you have it in writing. And if you ever have to go to a judge or a jury, you put that thing up on the screen and it says, look, you signed it and there it is.   Joe: Right.   Jotham: But it's equally enforceable, dependent, you know, there are always limitations on oral contracts that every state might be a little different, but absolutely. And so then there are other fancy things in the law, oral contract evidence by writing. So, you know, if you can prove it, you have an oral contract and you sent an email and that's your writing. So that might be a little different. An oral contract evidenced by a course of dealing. We always did this for the last 10 years. So that shows that we had an oral contract to always do this in the future. That's a possibility, too. So now I recommend in the in my book, even the CEOs get fired. You sign clear written agreements because that reduces your chances of getting into a fight. Right. If it's in writing and it's clear, even if the other side's a wrongdoer, you know, it's clear they're realize they're going to try to work around the clear language and and or what happens off to the business. If you have a really clear contract and they don't want you, they buy you out. The classic example being a separation agreement, they fire you, but they give you a good, good exit package.   Joe: So I had no idea so that it's a huge light bulb went off that I thought if it wasn't written and it wasn't signed, if both parties didn't sign it. Both attorneys didn't review it. It doesn't if it's not done in writing and signed, it doesn't exist. So this is.   Jotham: If you've had a meeting of the minds so so typically the kind of contract you're talking about in writing where it goes back and forth, back and forth to the lawyers and everybody, there is no meeting of the minds until the contract is signed. But, you know, now you're going to think about this. Well, have I ever had an oral contract with somebody else who might have something against me? So but yeah, sure, it could happen. So perfect. I'll give you an example. In your business, you're a CEO of your own companies. Imagine you. I don't know you. You met a successful person and you said, hey, I'll give you twenty five percent of my business if if you tell me how to increase my market share, using that as an example by by one hundred and fifty percent in the next two months. And that person then connects you that connect you with, I don't know, the great guru of market share. And suddenly in a month you've you've increased your market share by one and a half times. You might owe them 20 percent of your business as an example,   Joe: Yeah.   Jotham: Keep you from going out, making those promises.   Joe: Plower.   Jotham: So think of it this way. If you make an oral promise, you promise somebody something and they're giving you something back. I'm not talking about, you know, a family member or something, although it could be a family member. Lots of crazy disputes that way. But you promise somebody something in business and it's something to do with your business. And you say, for example, I'll give you twenty percent of my business if you do X, Y and Z. And the other person says, I agree, if I do it in the next two months, you might have an oral contract depending on what state you're in and depending on what it is you promised. Again, if you promise to to sell your property, not likely in most states, but   Joe: Right.   Jotham: If you're selling your securities 20 percent of your LLC, you might.   Joe: It's crazy, I literally it's an eye opener for me. I had no idea. So I'm glad we talked about OK, real quick, because I know I have to let you go. I wanted to ask how covid has has either as it happened with all the things that were going on and what you expect to happen once we reopen up, because, you know, there are these circumstances where people are furloughed. But what does that even mean? Like some of these people are furloughed. They're not getting paid. They have no insurance. It's just like, yeah, we might bring you back. I don't know. Legally, it doesn't seem to mean anything. What happens with people that are taking home equipment from the companies to use it to work from home? The the security of that data, it's no longer within the premises of the company, through their secured network. I mean, all of these crazy things that are going to going to open up as time goes on is is are you starting to see some of those effects or work on those types of cases or any of that sort of stuff?   Jotham: Sure, I mean, your question, we could spend another hour   Joe: I know, I know.   Jotham: Because it involved so many different things, right? I.P individuals coming back from furlough and so forth. So just as a general matter, covid obviously a lot of people working at home. And so there all those things that you just talked about are we get calls about both from the individual side and from the company side as well, because the IP sitting at home or on somebody's computer and not in the location because they're working at home, all of these things are really critical and they've happened since covid shutdown. And now what I think about coming back is some of those businesses wanting everybody back and people don't want to come back yet. So that's a big problem. On the other hand, some of the business want to keep people at home. They're like, OK, it worked really well, let's keep it at home. They don't need to be in an office lower overhead. And actually, sometimes they realize there's more efficiency at work because there aren't anybody to talk to when you're at the house. So it goes both ways. And then there are issues about how to come back from covid and what to do. So we've literally had calls and given advice on many of the things that you just discussed. And they're completely different, right? They're just issues that came up that nobody ever thought about before. I mean, they always thought about what they thought about them, but it didn't happen. Didn't happen. Like a whole country got stuck at home. And now there are all these issues. So happy to talk to you, Morna, in another podcast and we're coming to the end about it. But   Joe: Yeah.   Jotham: You just raise like so many issues. And one question.   Joe: Yeah, I know it's a it's and I was just and for the listeners, it means intellectual property says I want to make sure they understand what we're talking about, what we're talking about that. But, yeah, I'm sure it could be an hour long. Just talking about it real quick for any new laws created because of covid-19 and all of that. Have you dealt with new laws?   Jotham: Oh, yeah, there's a huge number, I mean, for example, the stimulus package that happened because of new laws, right? So there are other other laws associated with that. There's been a whole bunch. The legislatures, you know, have done done various things, but there's been three stimulus packages. That's just a one example.   Joe: Yeah, yeah, OK, perfect. Can you do me a favor and show the book again, "Even CEOs Get Fired".   Jotham: Even   Joe: It's a.   Jotham: Ceos get fired, you can get it on Amazon, so if you if you type in, "Even CEOs Get Fired", separate words like you're targeting in the words of a book, then you can get, you know, come up on Amazon right away. If you type in my name in the book, you know, do a Google search, it'll come up. The website is "Even CEOs Get Fired" dotcom. But it's one word. You have to type it all together. There's no spaces. So, yeah, like I said, I it's a really breezy read, so I recommend it to you whether you're at the beach, whether you're whether you're in the gym, like doing a bike and you want to, you know, wanted something to read while you're or something. And one of the other things at the gym or   Joe: Hmm.   Jotham: Whether you're on holiday, it will not bother you at all. Like those 59 stories. If you add the two at the end 60, what I think you really enjoy the read.   Joe: Perfect, Jotham, I really appreciate you coming on. It was a pleasure to meet you. It was a pleasure to talk about this is a subject that I have very little knowledge of. And every time I get to meet someone like you and talk about something this in depth, it makes me feel like a better CEO, even though I probably should know more about this than I do. But I appreciate it very much. I wish you all the success with the book. I really look forward to reading it.   Jotham: Thank you very much. Thanks for having me on your show, Joe.   Joe: You're welcome. Thank you.

In The Garden
Host-a-Hive

In The Garden

Play Episode Listen Later Apr 7, 2021 12:13


Keith:   I want to talk to everybody today about our host of the hive program and bees in general. We've been doing this host-to-hive for two or three years. It's a perfect introduction to beekeeping. It's a way to keep bees long-term without having a hive in your backyard.[00:00:55]Some people are allergic to bees but are interested in and want to participate.  It's more and more of a struggle to keep bees alive anymore. There's colony collapse, and there are a few different insect problems, and there are few different viruses that bees get. Yet they're absolutely a must for the pollination of certain crops.[00:01:13] Many of the crops that we get at the grocery store need bees to pollinate those crops. We must keep raising bees and then keep splitting hives and maintaining the population we've got currently.  If you're thinking about keeping bees, I feel like it's important to start with two hives.[00:01:32] There are years when we have 40% losses, and commercial beekeepers, in general, will have 40% losses. So it's getting harder and harder to keep a hive. It used to be that. You can set a hive out, and you'd have an 80 or 90% success rate. Now we're closer to 50 50 success rate.[00:01:51] If you're not willing to keep two or three hives and study bees and really understand bees. Then host a hive is a there's a great program. You can paint the beehive, make it personal. And then we keep the hive, and we move them around to different nectar sources.[00:02:08]That's one of the issues with bees in North Carolina is the nectar sources are mostly in the spring and then very light in the fall. So you end up having to feed the bees in between to keep them healthy and happy. What we try to do is we'll put 12 hives on a trailer, and your bees go on vacation, basically.[00:02:27]We'll take them out to Asheville, beautiful view great nectar source. It's probably one of my favorite things about beekeeping is finding the perfect window. We have to close the bees up at night when it's cool. And then we have to make that Trek. And get there before the sun gets on the bees, and the bees are ready to fly, and it's too hot for them.[00:02:50]Tends to be by the weather last-minute scenario. You know where you've got a schedule and many things that you can control in your life. This is not one of them. So I'll look ahead at the schedule, and then I'll figure out a time. It looks like Thursday morning is going to be the time.[00:03:05] to move the bees. So we'll prep them on Wednesday night. And then I get to be chauffeured to, to Asheville. I'll jet out to Asheville, to a friend's farm. We'll set the bees up. We give them bear protection. Bears love both the larva from the bees and the honey as a protein source and sugar source.[00:03:25]We'll put an electric fence up around to protect them from the bears. And you get to spend the day in Asheville or the day in the night in Nashville. And then you. Head back. So how exactly [00:03:34] Joe: does the host of the hive program work? You're going to take the bees that I'm hosting out to Asheville, right?[00:03:41]What are the benefits for the people that are hosting the [00:03:43] Keith: hive? We have highs locally at the garden center and in various locations around the triangle. So if your hive is in Nashville and you want to see it hive open or want to participate in a hive?[00:03:56]We'll open it, we'll schedule a time, and we have you come out. You can either gear up, or you can match from a distance. Sometimes we'll do group events where we do a screen room. And pop a tent up. They can stand in the screen room, and we'll, we're suited up on the outside, and we'll open the hive up and, we'll do educational things with kids.[00:04:16] We'll show them the queen. We'll show them what brood is. Show them the difference between brood and honey in a frame. And it's a good way to get your feet wet if you wanted to keep bees down the road too. So you're slowly learning the process of opening the hive and how you go into a hive, and that smoke relaxes the bees and gets them to start gulping up honey in a kind of a survival instinct and make some really easy to work with.[00:04:41] So we'll give them a little puff of smoke. You don't have to give them a lot of smoke and then. And then open a high for the person that sponsored a hive to pull stuff out and, and then other people want to be a little bit hands-on, and we'll have a day where they can actually go into a hive and pull the frame out themselves.[00:04:56] I always say beekeeping's like putting your hand on a hot stove. It's you're not supposed to do it, but you're going to go ahead and test it. You know that glass unit. To make sure it's off, why would you do that? You've been burned before. Beekeeping is much the same. You're going to get stung.[00:05:11] It's inevitable, any beekeeper that keeps bees has been stung, we get nucleus hives, which are five complete frames with the queen, and we'll buy those in the spring and unload three or 400 of them.[00:05:23]There was a day that I was stung a hundred times. It's funny that when you've been stung by something. You think everything that flies stings is the same, but honeybee stings or a quarter or a half of what a hornet or a yellow jacket, or a lot of these other flying things are.[00:05:39] So they don't hurt that much. And if you're not affected by a bee sting, they don't really bother you. Once you get into the hive and you get comfortable, You'll find yourself just mesmerized by what's going on. Probably two years into keeping bees, I would find myself open a hive and pulling a frame out and just leaning on the hive, and the bees are flying all around me.[00:06:03] I dive, and almost as if you're looking at a piece of coral. A million things live in there, and they're all doing different things at different times. You can sit there and stare at that one piece of coral for 15 minutes, you can't believe that something, this new thing, just popped out of that space, and it's changing colors, and different things are going on.[00:06:25] Same thing with bees it's when I was growing up, they would, you could buy an ant colony. And you sat there and watched the ants lay eggs and move the eggs around and tunnel, and bees are probably one of the most complex insects out there.[00:06:40]It's similar to ants. They're just fascinating to watch, inside the hive or outside of the hive. When I first started keeping bees, people would say, they're so relaxing. I go out there with my coffee every morning, coffee or cocktail, and it's, and I'm like, I don't think I'm going to be drinking coffee or cocktails with my bees.[00:06:57] And sure enough, a month in, I'm standing there; I can't wait to see what's happening today because the weather's warmed up or the hives are really doing well. And you want to get a quick visit in, so you're drinking your coffee and watching the bees. Something about that[00:07:11] hum of the hive is like the yoga home. It's very relaxing, and you'll find yourself mesmerized by them. [00:07:18] Joe: So if somebody [00:07:18] wanted to host a hive with Garden Supply Company; what does that look like? What does it entail? [00:07:22] Keith: They go onto the website or come into the store, and they sign up; it's $295 a year. And then we provide them with a hive body. They can take it home, paint it. Personalize it put their kid's finger and handprints on it, or we've got some excellent artists that you bring back, amazing paintings on the hive box.[00:07:43]And then we set the hive up, usually early spring. We'll set the hive up, and then they get pictures of their hive. They get these open visits to their hive updates on where the bees are going. What's going on with the hives[00:07:58]during that time a year. What kind of nectar are the bees going after? Because bees will be very selective about where, what they're going after, or what they like. And so early spring, you'll see bees all over the flowers at the garden center, and you'd come out, and there are bees, honey bees buzzing around all these flowers.[00:08:16] The minute the tulip poplars open. Whether they're because they like tulip Poplar more or because it's an abundant nectar source, the bees all moved to the trees.  You won't see a bee anywhere. They're all just hauling nectar and as fast as they can and producing honey.[00:08:33] So that in North Carolina in our, in the triangle tulip poplars are probably the number one nectar source. Redbuds are a good early one. Maple, and then later in the year, more towards the mountains black locus will produce almost a water clear honey.[00:08:52] It's beautiful honey and, and then Sourwood is probably the most sought-after honey.  It's elevation sensitive.  They don't produce well like we've got sour woods here in the triangle, but the bees will go there, and they'll get nectar, but they don't get enough nectar.[00:09:06] And there are too many other things going on that they'll get some Sourwood and then a little bit of everything else. And. [00:09:12] Joe: So what happens with the honey from the host to hive program? So [00:09:16] Keith: we harvest the honey, and it's a great program from that sense because we provide each one of the people that participate with 10 pounds of honey.[00:09:25] So you'll have 10, one-pound jars of honey which is more than. Most families would consume Winnie the Pooh. Yeah, exactly. It's honey, and you can share with friends its local honey. Having local honey is an absolute health benefit. You're getting a taste of every pollen. We screen the honey, but we don't filter it.[00:09:46]There's pollen moving through with the honey when we harvest it. So you're getting exposed to every pollen that you would find in North Carolina. So if you've got allergies, it really does benefit from having a microdose kind of that type of pollen with your coffee or your tea in the morning.[00:10:03]Joe: How many people can be part [00:10:04] Keith: of the program? It's limited to about 200 people. And we're getting close, close to the end, and this year, it. [00:10:11] Joe: sounds like it'd be great for families like [00:10:13] Keith: really educating. Yeah. It's perfect. And it's beekeeping, in general, is like beekeeping is more like keeping an aquarium if everything's going well.[00:10:21] It's effortless. You walk out and take a look at it. If it goes awry it's, you must fix that situation quickly. [00:10:30] Joe: It's like a gateway drug into beekeeping. Cause you can get involved as a family, but you don't have to have that thing in your [00:10:34] Keith: backyard.[00:10:35] Exactly. And you're not, it's a way to, it took me six months to. Feel comfortable walking up to a hive, popping the top, not worrying about being stung if I got stung. So it's a way to get, to get exposed to bees and to do something great for bees and do something great for pollinators in general, it's that's the other thing that you can do, besides a host of hive program is planting pollinator gardens and planning, nectar-producing trees in your landscape throughout the year, but particularly in the fall, things like goldenrod. Adding goldenrod to your garden is a really great thing.[00:11:11] Or adding Clover to your lawn because our nectar season is so short, and the triangle it gives extends the season. [00:11:18] Clover's a beautiful backdrop to just about anything. It's good for turkeys. It's good for the deer. And then the bees white Clover, any clever the bees get a lot of nectar and pollen from it. Where can people find out more so? On our website, which is GardenSupplyCO.com, They can sign up there.[00:11:37]They can call the store it's (919) 460-7747. Jason, we've got a full-time beekeeper. If you ever want to keep bees, or if you ever want to sign up for the Host-a-Hive. You can email him at jason@gardensupplyceo.com.[00:11:55] 

The Joe Costello Show
Marty Ray from The Marty Ray Project

The Joe Costello Show

Play Episode Listen Later Mar 31, 2021 60:49


It was a pleasure to sit down with Marty Ray from The Marty Ray Project. He shared a wealth of knowledge on how he used social media to go viral with his videos and how he continues to put in the time and effort to share his talents. You will also learn how authentic, transparent and caring he is and the love he has for his family, friends and fans. This was a blast for me and I hope you enjoy it as well. As always, that you for listening: Enjoy! Joe Marty Ray -  The Marty Ray Project The Marty Ray Project: Chats Connect with Marty on all social media platforms: @martyrayproject Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.libsyn.com Subscribe, Rate & Review: I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to: https://joecostelloglobal.lybsyn.com Follow Joe: https://linktr.ee/joecostello Transcript   Joe: All right, I want to welcome my friend Marty Ray of the Marty Ray project, and he is a Nashville country artist. And I get to pick his brain not only on his entertainment and musical artistry, but I get to pick his brain about his own podcast and I get to pick his brain, even more importantly, to some of the audience members about his marketing skills because he has amassed a huge following. So, Marty, welcome. Man, I'm so glad you could do this.   Marty Ray: And I'm honored that you would have me on your show, brother.   Joe: Now, this is exciting, man, so   Marty Ray: Don't take my brain. Don't pick my brain to order. You might get down.   Joe: So I want to do a little I want to start with sort of the back story, if you can give us just, you know, how you got started. Was it the music part first? You know, whatever. You can just give us the whole thing. And then from there, I'm going to I'm going to dig in on some of these subjects so that we can really bring some some real knowledge to the audience when when they get to listen to this.   Marty Ray: Well, I always tell people I came out of the womb singing and that's the truth, I just know just always could do it if if I can do it now, I could always do it. I never learned how I mean,   Joe: Yeah.   Marty Ray: So I don't even know if I do it right. But it seems like a lot of people seem to like it. So that's good. It's good for me and they say it's good for them. So it makes me happy. As far as what came first podcast or music, you could say music came first. I started writing songs when I was 12, but as far as professionally. I did. I had a podcast back in like two thousand seven hundred three either.   Joe: Yeah, no worries,   Marty Ray: But that cut off didn't   Joe: Just   Marty Ray: Just   Joe: Just   Marty Ray: Cut   Joe: For a second,   Marty Ray: You off.   Joe: Yeah, just for a second, it's all good.   Marty Ray: The alarms man. Those alarms, I wish you could put the phone in airplane mode while you're doing things like this, but I don't think that works like it shuts the Internet off. But anyway, so I actually was doing a podcast in 2007 when nobody knew what podcasts were. They got no respect. It was so hard to get actual guests to come on the show back then because. If it wasn't radio, they didn't want no part of it. So I actually named my podcast back then, Memcache Radio, so it would fool them into thinking it was your radio station.   Joe: Wow.   Marty Ray: And I was I was actually successful at getting some pretty high. How to, you know, high falutin client client clients and our clients have fluting guest on. I got a very Rucker. He was one of the moment   Joe: Wow.   Marty Ray: And I was at that time, I had no fans, don't know nobody. He just he was on there, gave us some of the greatest, greatest advice I've ever gotten at the end of that podcast. And I said, what advice would you give? An artist trying to be where you're at and apply this to everything in my life and I think everybody else should do, you should just play. Don't just look at every opportunity as if it's. So it could be something big. It could be something that could change your life, you could change your career. And so that's what I do. I look at every situation and I go, even though they might be this person, that person, they might not be big yet or but who knows what tomorrow holds, you know? And I think that's how we're supposed to live, especially like me, because I'm a Christian. So I live, breathe, breathing for others. That's that's my goal in life. I try my best to not be selfish and I try to breathe for people that that are all around me, you know, like like you, Joe, I'm trying to breathe for you. So instead of because that's what Jesus told us to do. So that's kind of where my life started with a podcast and. I ended up doing a video to learn how to make music videos, so I did a music video, went and rented a camera, and the camera was a black magic cinema camera. They just they just released these cameras. And I wanted to learn how to do a professional style music video. So I wrote disparity to all about that bass, and it was all about that beard. Believe it or not, I don't know. I don't know where that came from. That's weird.   Joe: You're right.   Marty Ray: Yeah. I'm still trying to remember how I came up with the beard thing, but we'll figure it out someday.   Joe: Yeah,   Marty Ray: I don't   Joe: Exactly.   Marty Ray: Know why the beard came and now the. So then I did this video had no clue really what I was doing too much. And you could tell in the video. But I posted that video and it got two million views overnight and.   Joe: Wow.   Marty Ray: I was like, man, I got to really be consistent now because I told, you know, for years I kept saying I thought I could sing, but I was mimicking other artists. And I would I would try my best to sound just like them boys demand. Because you said a country singer. I'm really not a country singer. I know I look country, but I don't really do a whole lot of country anymore. I used to for my first album, I only did country because people told me that's what I better do because I look like a country   Joe: Mm   Marty Ray: Artist.   Joe: Hmm.   Marty Ray: So I said I will call it country. But when the blues radio stations said my album was to country and the country radio station said it was too bluesy, then I wrote a song for my next album called Too Bluesy for Country to Country for Blues. And then I just said, forget it. I'm going to do what I want to do and I'm going to release everything on the album at one time. And that's what I've been doing ever since. So I got on my last album, Mixed Emotions. I got EDM songs on there like like club club music.   Joe: Oh, wow. So it   Marty Ray: I   Joe: Must be   Marty Ray: Can see,   Joe: Yeah,   Marty Ray: You know.   Joe: Yeah, it must be just the first couple of videos that I clicked on, I just happened to click in the wrong spot or just, you know, I just.   Marty Ray: Well, you probably think, you know, I understand how mad nobody you probably clicked on a couple of songs and thought, here you see the acoustic guitar, you see a big bearded cornbread fed fellow from the south, and you go, this must be country because you might not listen to country. Right. So a lot of these people, they don't listen to country music, but they see somebody like me and they go, I guess this is country. I kind of like this man. I know. I like country. I get that a lot. I get that comment a lot, though. So I didn't know. I like country and I'm like, you still don't know if you like country, to be honest, because this ain't really country. I got nothing against country. Right. When I was growing up, I hated country when I was a boy because my parents love country. So I listen to RB and I grew up listening to the gospel like Shirley Caesar, Mahalia Jackson, Rance Allen, people like that. And then that turned into listening to RB. Still isn't the gospel today though, RB? Then it got into soul music and I got into blues music, and then at 12 years old, my mama took me to a Garth Brooks concert and I saw him live at the Pyramid Memphis, Tennessee. And I said, maybe I should give this a look. And I did. And I gave it a look. And I liked what I see, what I found. And he was because that was the that was the first time that I heard music. That was it was really telling stories like actually telling. If you listen to thunder rolls. Have you ever heard Garth Brooks?   Joe: Yeah, but I don't know well enough if you mentioned a song, I'd be like, I don't.   Marty Ray: Have you what would you listen to, what's your genre?   Joe: I listen to everything I you know, because I own a booking agency in Phoenix here, so I have to book everything across the board, so I listen to everything.   Marty Ray: Listen to everything but Garth Brooks, I got it.   Joe: No, no, no, I just want no one saw you named. I think he's amazing. I think if that's your first exposure to country music, that was a hell of a way to see it, because he's I mean, everyone   Marty Ray: It wasn't   Joe: Loves   Marty Ray: My first   Joe: Him.   Marty Ray: Exposure. It was the first time because, like I said, my parents, all my mom and my dad, but my mom, my dad was born to like Chicago and stuff, which I actually   Joe: Mm hmm.   Marty Ray: Love that   Joe: I   Marty Ray: Back   Joe: Love   Marty Ray: In   Joe: That.   Marty Ray: The day. I still love Chicago. My daughter, who was 15, is a massive Chicago fan of your favorite band. Believe   Joe: That's   Marty Ray: It or not.   Joe: Crazy. That's amazing.   Marty Ray: And I actually did a show with Bill Champlin, who   Joe: Mm hmm.   Marty Ray: Was a member of Chicago, and he's the one that wrote Hofmeyr saying, I'm sorry, I just want to stay. I'm a right directly to you. That's weird. And   Joe: No,   Marty Ray: That feel weird,   Joe: No, not at all.   Marty Ray: Even though even though when you look, I hope this power doesn't go out from his eyes. You see that. You see his lights blinking.   Joe: Oh.   Marty Ray: Anyway, I'll try to sum the story up. This has been going on for too. I'm a long winded. I'm like I'm like, oh, Pentecostal preacher. You get your rain, you got to start   Joe: Yes,   Marty Ray: Yawning or something. You   Joe: It's   Marty Ray: Got start   Joe: All   Marty Ray: Yawning   Joe: Good.   Marty Ray: And let me know. It's like I if I don't hear any Armand's,   Joe: No,   Marty Ray: I might   Joe: This   Marty Ray: Go   Joe: Is   Marty Ray: On forever.   Joe: This is perfect. That's what I like, real people, real conversation.   Marty Ray: That's all I know how to do, I call myself a conversations, I   Joe: I   Marty Ray: Don't   Joe: Love   Marty Ray: Know if   Joe: It,   Marty Ray: That's a real word, but   Joe: That's   Marty Ray: I called I   Joe: Perfect.   Marty Ray: Call myself the anyway, the question was how to get started in music. That's how it all started making videos. I made that video and. After that, I said, OK, I'm going to. I'm going to keep on, I must stay consistent because I told God, look, this is what you want me to do. I'm going to I'm going to start singing, look, putting videos out and you honor and because he honors the effort, if you if he gave you a gift, you don't bury. So I'm just going to keep on doing the same thing I've been doing, putting out videos. And he seems to keep on honoring it. So that's kind of how it's going.   Joe: That's cool, and how do you so if you're performing down in a is nationally, so I'm not even going to say I've already stepped on my toes a couple of times in this conversation of saying things that aren't necessarily true. So what's the environment in Nashville musically? Is it still very heavy country or is is there a lot of different varieties?   Marty Ray: You know what's weird is I don't play in Nashville, I'm trying to I play the people don't realize it. I'm not really a I'm not saying you, but people don't realize that I'm not a bar band. I'm not against bar band, but I could never do what they do. My hat's off to my golf buddies. That's exactly what they they've done for years. And they play those people play for four hours and go to another gig playing for hours. I can't do that. My voice wouldn't hold up to that. I sang. I only know one way to sing. Like I said, I probably don't do it right. I'm just saying from the heart. And I push notes out really hard so I can give you two hours, maybe three, if you. That's what we mainly do. Private show. So the main thing we do is private gigs and I love doing props. Doesn't have to worry about getting people to buy tickets. So   Joe: Yeah,   Marty Ray: It's really nice.   Joe: Yeah.   Marty Ray: But I do. I have done festivals and the festivals are really cool because it's a bunch of people gathering tickets. So it's just a very scary thing to. To not know what your fan base is in a collective area,   Joe: Mm hmm.   Marty Ray: If I always tell people, I say if all my fans, I got like one point three million fans across the board, if every one of my fans were local and national, I would probably never leave Nashville because I would not would actually book a show throughout the year. Once a month, it would sell out. And I would then by the end of the year, I could start over again and service the same people that were serving at the beginning of the year,   Joe: Mm hmm.   Marty Ray: You said.   Joe: Yep.   Marty Ray: But unfortunately, fortunately, I always say unfortunately, fortunately, these fans are all across the world like I got people to say, and when you come to Scotland, when you come to Ireland, when you come to Europe, when you come to Australia, you've got a big fan base here. And I don't know. I don't I think it's scary to try to book something in another country and then think so. The only way we can do it is if people pay us up front, we say it's up to you. I don't know what my fan base is, but it's up to you like I am now, though, kind of branching out. It's the first time I've ever done this in a while. Where I got to show in Tampa in March, March 11th, and it's the first time that I've ever first time I've ever seen the first time in a long time that I've actually sold tickets to a show. So I'm terrified that this time will show up and there's going to be five people there. You don't know me. And   Joe: Yeah,   Marty Ray: This place   Joe: No,   Marty Ray: Only   Joe: I know.   Marty Ray: Holds it only holds 250 people. So, you know, you just never   Joe: Yeah,   Marty Ray: Know. You   Joe: All right.   Marty Ray: Don't you don't you don't know what's going to happen. But which we're going at it, like I said. Got it. Got honors effort. And I'm to put forth the effort even if it's failing. You know, Timberline is.   Joe: Demeanor, boots.   Marty Ray: No, Timberland, the the producer.   Joe: I don't think so.   Marty Ray: Joe, I don't think you listen to everything, I think I think I think you think. You think historically I think I say what you. Let me pick out what you actually do on a daily basis right now. But look at you. Let me say I'm getting I'm definitely getting. I know you like Chicago. I know.   Joe: Yes.   Marty Ray: I know. That's probably on a regular. So I'm thinking like soft rock. Salved, rah, rah, rah, rah.   Joe: I do, I listen to everything, I mean, when I put on Aleksa, I say, but I mean, I don't all day I'm working, so I'm not listening to stuff and I'm not staying up with everything. I force Alexa to say, hey, play me. What's the latest play the latest pop station and she'll just play all these things are or whatever. But I mean, I'm I've played everything as a drummer. I've played everything I've played for Jewish weddings and bat mitzvahs and bar mitzvahs to playing a rock show at the Whiskey A go go in L.A. to playing jazz and then all the rest of the stuff. So.   Marty Ray: What do they miss? They play at a juice bar mitzvah.   Joe: Oh, man, it's just that same that same beats just like that, it's just like they're dancing. I mean, I played that beat for forty five minutes straight with a tux on and I had to peel the coat off me. It was just crazy.   Marty Ray: Wow. So   Joe: Yeah.   Marty Ray: It's like so they don't. They don't have, like, different varieties of music at this stage. It's just that it's almost like I don't know what it is, but it reminds me, when you were doing that, it reminded me of a like a   Joe: It's like a poker groove, kind   Marty Ray: Yeah,   Joe: Of.   Marty Ray: Like a polka sound   Joe: Yeah,   Marty Ray: Like a trumpet   Joe: Yep, yep, yep.   Marty Ray: And people dancing and holding and holding their arms and dancing.   Joe: Yeah,   Marty Ray: Is that kind of what it's like?   Joe: That's so during so the one I haven't done a bunch of them, but the one that I did was forty five minutes of that and it was all of the different relatives dancing. And then they lift them up on the chair and they do so literally for forty five minutes to turned around to me and said, just play this groove and do not stop till I tell you.   Marty Ray: Kylie, I hope you got paid well.   Joe: It was a struggle, just speak, but it was   Marty Ray: Man.   Joe: Called was fine, so.   Marty Ray: The funny part about bringing a Polke is my that when I. Interviewed Darius Rucker, we just talked about that one of the things we ended with, I said, so we need to write what song? Because I was right when he had ship, when he had went from Hootie   Joe: So country,   Marty Ray: And the Blowfish   Joe: Yeah,   Marty Ray: To going into country   Joe: Yeah.   Marty Ray: Music. And I said, what other one of the genres are trying to write? He said, Man, I'll do anything, man. I said, I mean, you polka we're doing a polka song together. And he laughed and said, Let's do it, man. Never did it. Matter of fact. I had Dariusz number on my phone for four years and. I tried to call it the other day out of the blue to try to get him on this new podcast   Joe: Mm hmm.   Marty Ray: In the number of change. So I was like, oh, crap.   Joe: Well,   Marty Ray: So,   Joe: That's good.   Marty Ray: Yeah.   Joe: So let's go. So twenty seven year podcast pioneer, right, you come out with one. And what was the the theme behind it? Was it it was just all musical artist.   Marty Ray: No, it was actually the same exact setup as I have now, because I love I love having interesting people on, but the interesting people usually are in time, not always, but they're usually entertainment, meaning. Any realm of entertainment that   Joe: Mm   Marty Ray: Could   Joe: Hmm.   Marty Ray: Be boxing, that could be in a that could be sports, could be wrestling, it could be comedy, it could be music, it could be active. We've got all of it on this show now that we've that we that we started work. We just had Bert Krischer on last episode. And before that it was before that it was a food review episode. We did we just me, Chris Wallace and Jared Callinan, my buddies, we love food and if you can tell or not, but I kind of like food a little bit. I know. I know I don't look like it, but I do like food. And before that it was. I don't remember who paid for that, but it's like Darryl early, so country artists that you probably know the country.   Joe: Right, so   Marty Ray: No,   Joe: So.   Marty Ray: We actually actually also have Vanilla Ice on.   Joe: Oh, I saw that now I saw that picture of you and him. Yeah, so that was cool. How was   Marty Ray: It   Joe: That   Marty Ray: Was   Joe: Interview?   Marty Ray: Very. I was great, we were already buddies, though,   Joe: Ok.   Marty Ray: Before then, so that's usually how I try to make it, even if I don't know the parts. Like if you go listen to me and Burt talk, you will think that we have known each other for a lifetime, but we really haven't. And I didn't know him other than just being a fan. And I just sent him a message. He hears where he made his mistake and I told him this a comment. I was always commenting funny things on his own, his Instagram post, and he one of them he liked and laughter and he followed me and said, That's where you made your mistake, because you followed me   Joe: Right.   Marty Ray: As when you followed me. I was already following you. So as soon as you followed me, I said, well, now he's going to see these messages. I'm partisan.   Joe: Ok.   Marty Ray: So I sent a message. I said, hey, big fan, yada, yada, yada. And it's true. And I said, I'd love to have you on my podcast because, you know, he's a he's actual podcast. That dude that do makes more money podcasting than he does doing a TV show.   Joe: Crazy.   Marty Ray: So you're talking about a pioneer and he's an actual pioneer in podcast. But anyway, so I'm sending his message. He sent the message. He goes, yeah, I'd love to. And I said, All right, well, how about this such day goes on. We're going make it happen. That's right. So we get closer to that day. And I say, how bout it? No, no response. No response, not cinema next. And then the next week I said I said, how about it? We're coming up on it. And then this just went on and it would be times when it would be a long gap of me. Every month I would   Joe: Hmm.   Marty Ray: Send him a message. I would say, hey, you should be all I love you. Let's do it. Let's make it happen. So and I and then I started getting I started going like, this is a game at this point now. And I told him, I said, this is because this went on for a year. Now, keep in mind, this went on for a whole year,   Joe: Wow.   Marty Ray: Maybe sending a message, these dams. And I started saying, this is not going to stop. Until you either say yes or no or block me or you're on my show one or the other, and I said, that's it, I'm going. I still love you regardless. But they're saying I'll stop within the next month. I was like, here's your monthly Maadi message. And every now and then he would put LML every now and then. And so eventually we finally got to he finally sent me his phone number. But what I had to do though, at the very last, I actually sent him a list of people we had had on   Joe: Mm hmm.   Marty Ray: To kind of show him NYSUT. I've had famous people on my show, like, in case you're wondering, I've had famous people, we we didn't just start we've been doing this for a while. We know what we're doing. You know, I don't think you're going to waste your time, if nothing else, to have a good time. And so that's what he sent me, his phone number. And I said I said, what's different now? Because I got a phone number. And and so it happened and it was great. But if you listen to it, anybody else, it's on the Marty Ray project charts. I should say that probably that's the name of the podcast, the motorway project. Yes.   Joe: Ok.   Marty Ray: If you listen to that, you're going to think and it's funny because he read I told him, I said read some of those messages that I sent you and he read some on the show and he read most of it. We're just busting out laughing because it was so funny thing ever, because he said most people will say, be on my show. And I say, yeah, I'd love to. And he and he I think he really would love to be able to do everybody show, but. He knows realistically that he can't there's no way he could do everything and he said that and he said, but most people, by the time he don't answer back after the first time or the second time, they start getting very, very hateful and mean.   Joe: Oh, wow.   Marty Ray: And he said he said you never did. He said after a year, he said you never got eight boys. That was always respectful and nice. And it was like still love. He said it was almost like falling in love with your neighbor. So I guess he said, I feel like I know you   Joe: That's   Marty Ray: Said to   Joe: Awesome.   Marty Ray: Me, too. It's really cool. Anyway.   Joe: Yeah, all   Marty Ray: I don't   Joe: Right.   Marty Ray: Know if I answered your question   Joe: Yeah,   Marty Ray: Or not.   Joe: And also so what happened with the first podcast, when did that actually end to go away? At some point?   Marty Ray: Yeah, because. The podcast, I don't want to do a podcast by myself, meaning what we're doing here,   Joe: Mm hmm.   Marty Ray: It's OK, it's OK for me to be a guest, but me personally, for instance, if there comes a time. I just enjoyed bantering with a friend   Joe: Sure.   Marty Ray: And not having the full load on me of the podcast of getting the guest book in   Joe: The.   Marty Ray: The guest and doing this and that. So back then, that was kind of the same way I had I went through I went through three co-host on that show, and I was the one putting up all the money. I'm the one putting up all the I'm the one actually getting the guest and they're not really helping. But I'm thinking if we can get a little bit of momentum going, they'll they'll start to see this is a very viable thing to do and they'll start picking up some of the load. Never happened. They they all kept quitting or not showing up. And I was actually for four for coast. And after the fourth one by the fourth one, I already did that all about the beard video.   Joe: Mm   Marty Ray: And   Joe: Hmm.   Marty Ray: I started progressing. And music stars like forget them, like I was trying to help them out, not just myself, but trying to help them out, to bring them up with me. We could have made something great, I believe, if we would if I would have kept doing that podcast, I'd be one of the biggest podcast in the world today. I do believe that.   Joe: Yeah,   Marty Ray: No question about   Joe: I mean,   Marty Ray: It.   Joe: Based on when you started, if you mean it's all about consistency, right? If you   Marty Ray: A.   Joe: Had kept that going, you totally would have been.   Marty Ray: I have no doubt in my mind, but, you know, God had other plans because had I had that podcast blew up. That's all I would have done, I would not have probably never would have pushed music too hard, to be honest,   Joe: Mm hmm.   Marty Ray: Because my dream, even from childhood, my dream has always been. To have my own talk show. You know, maybe like a radio, like Howard Stern type   Joe: Yeah,   Marty Ray: Talk show,   Joe: Yeah.   Marty Ray: And so I said, if I know for a fact, I said because God knows better than we do. He knew that if if I if that would have blew up, I would have just said, forget music. That's too hard. That's just too hard.   Joe: That's interesting,   Marty Ray: That's a.   Joe: I hear you.   Marty Ray: Yeah.   Joe: Yeah, well, so OK, so when did that podcast end about   Marty Ray: I said, I'm horrible at times   Joe: Was   Marty Ray: And   Joe: It right when   Marty Ray: Tamla.   Joe: That video hit?   Marty Ray: No, I think we still went. Maybe a couple of months after that, but at that point, I was I was literally trying to carry the load of the podcast and be consistent in making music videos. So I just said. Nobody, because nobody cared like me, nobody had the same drive or passion about the podcast that I did, so I was like, man, this is just crazy. I'm trying I can't do all this by myself. And so I believe it's about a couple of months after my like. I don't know the exact dates. Might not have to be honest, we I'm so bad with dates.   Joe: Ok.   Marty Ray: I know that. It might not even have been I might not even had the two million video yet, but I might have had because it all started on Facebook, not YouTube, like you can't even go back in the timeline of Facebook, YouTube and go,   Joe: A.   Marty Ray: Ok, look at this date and figure it out. Because if you look at the date when Ice Ice Baby was posted on YouTube, it was actually posted to my actual Facebook profile, my personal profile, because that's all I had at the time   Joe: All right.   Marty Ray: When I was making these videos because they were getting so they were having success on my personal not not a page, not anything else. And so that's where it actually first went viral, that both both videos went viral. Their first. Did I lose you?   Joe: Yes, for a second target.   Marty Ray: Did you still have audio?   Joe: Yep.   Marty Ray: Ok. Anyway, so, yeah, but a. So I was actually pushing everything from my personal Facebook profile, so I don't know the exact date, but I think the show actually ran for about a year and a half, I believe. And then and then I called it quits, so.   Joe: Ok, so then so you have this video and this video you say got over two million views.   Marty Ray: In a day, yeah, we   Joe: In   Marty Ray: Posted   Joe: A day.   Marty Ray: It, I posted it. That morning, just just a random post like any other thank you, don't you don't think about what's the best time to post,   Joe: Mm   Marty Ray: What's   Joe: Hmm.   Marty Ray: The best strategy here? You don't think about any of that back when you first start and you just like, hey, I got this simple post you don't understand. Algorithm's probably never heard the word of the enemy. So you just post a video like I did and I posted it and it's like a set it and forget it like an infomercial right now, just opposing it. And my buddy went to Nashville because at the time I didn't live in Nashville. I lived in Memphis and we drove to Nashville. He was doing an acting audition and. We got all the way down to Nashville. He did his audition. We're headed back. He starts getting all these text and people are saying, and I've seen you in that video, it's crazy, that video. He goes, oh, OK, cool. You know, thinking   Joe: Right.   Marty Ray: That   Joe: Sure.   Marty Ray: Thinking that is because those are those are people that know him. And he was like, when I talk to them a long time ago, that type of thing. And that's where he should. And so eventually after a few texts, he he went Facebook, a lot of the videos, brochures, videos that this video is over a million views there. And I said to what?   Joe: It's   Marty Ray: A   Joe: Crazy.   Marty Ray: Million views and then I pulled it up. I pulled it up and I said, oh, wow, this is crazy. So then I text my buddy Jared who? Who does filming with me? He didn't do that video. I don't want to put that evil on him because he was definitely. Way more prolific at it than me at that time, way before me, and while now I can do a pretty good video by myself, like I just released a music video for my new single that I released in the last year for the new album called Picture. And I did that whole thing, directed it, wrote it and did the whole thing myself. It might not be the best in the world, but it's better than the most, you know.   Joe: Yeah, no cold.   Marty Ray: So anyway, I called Jared, I said, hey, man, you look at the video. I said, you need to check it out, I said it's over a million views. He goes, he goes really? And he went and looked and he couldn't find it. And I sent him a link. He goes, Wow. That's incredible. That is nuts, and I said I said, well, we made it. We made it, and at that point, you don't you have no clue what's coming from a viral video, you   Joe: Mm   Marty Ray: Don't know.   Joe: Hmm. Right.   Marty Ray: And I didn't really make it from that video, but that was a star.   Joe: Sure.   Marty Ray: You can have a viral video right now and not. Never, never yield any kind of profit from it or anything like that, you know, but it's what you do after that viral video that makes you profit Bishop Marketing. Well, that's that's a marketing tip for anybody listening. Don't don't focus on your own. Your first viral video focus on the plan after that first viral video, because that viral video, if you stay consistent and you're getting better and better, it will come no matter what it will come. I've had it happen many, many times and it's just from me being consistent. It's not because anything that any song that I put out or any video that I put out is any better. It's just because it hit at the right time, in the right way. And it was what did I do that every time a video goes viral, you have to have a plan to capitalize on that wave because that wave is going to be like here and it's going to come down.   Joe: Mm   Marty Ray: It   Joe: Hmm.   Marty Ray: Happens   Joe: Yeah.   Marty Ray: All the time. So anyway, so that was kind of where it all began. Right, there was that video and then I was trying to be consistent, so I'm sure you want to talk about the anelli sort of kind of some of what how that happened. So then I was posting videos, try to be consistent. And then I missed two weeks of posting on. This was still on my list, was still on my original Facebook profile.   Joe: Not even   Marty Ray: Now,   Joe: On YouTube   Marty Ray: This time   Joe: Yet.   Marty Ray: I. Not even. I mean, I   Joe: That's   Marty Ray: Don't even remember   Joe: Crazy,   Marty Ray: If I had the YouTube set up yet,   Joe: That's   Marty Ray: I   Joe: Even.   Marty Ray: Don't know if I had it set up yet,   Joe: Yeah,   Marty Ray: But.   Joe: That's.   Marty Ray: I think I might have set the channel up after the all about that beard. I really do. I think I might have done it, but I didn't post anything there besides some old concert videos originally. I believe that's what happened. And that was that was a little while after because I didn't even think about it. I don't know why, but I thought, well. And I'm I'm I'm trying to do this on Facebook, this is where it's at right now. That's   Joe: Hmm.   Marty Ray: Where I was like I was under the nails. I was like Facebook personal profile. These are all hit. They all had every video I posted seemed to have had tens of thousands of views, which was crazy to me at the time. And I was like, this is great. I got I got a two man view video, two million plus video, and I got some one hundred thousand somewhere. Two hundred. Some ten, some twenty. It was it was a good it was a good time. And then I didn't even realize   Joe: You.   Marty Ray: I had set up a Facebook page Martinrea project and I didn't have to check it, though. I never checked it, didn't realize that because like I said, everything was happening on the personal.   Joe: Mm hmm.   Marty Ray: And when I posted that it was three o'clock in the morning and I hadn't been consistent and I made a post with the Vanilla Ice Accoustic. And I said in that post, I said. Listen, I'm sorry I missed a couple of weeks. I don't know if anybody Zoom care about this or not, but here's the way I've been doing. Ice, ice, baby. I'll be all like it if you do. Great, if you know there'll be another one soon. There's kind of like that. And it was kind of a throwaway video. And that's another that's another testament to just put every idea out there, because you never know which one is going to be the one that put you on stage with Vanilla Ice. Right.   Joe: Yeah,   Marty Ray: That's what's great. You   Joe: Right.   Marty Ray: Never know. And Vanilla Ice can be anything for anybody. I don't have to be literally Vanilla Ice, but opposed to that. And that video went bananas when it went next level. So then after that video posted, were people going and subscribing to my YouTube channel, like in my Facebook page by the masses because they took that. And so then after a while after Bam Margera, he posted it, world star, hip hop posted it. It got posted all over, all over the Internet, all over social media and moderate project for a while was everywhere. I was trending on on iTunes, like number two on iTunes, trending right below some. This has happened twice, actually trending right below as independent artists. Nobody, nobody behind you, nobody helping you besides God and your fans trending number two on our terms. And I screenshot of that because while for them it might be that it happens every now and then when they when that label gives a good push, got nobody pushing me but myself and   Joe: Mm hmm.   Marty Ray: Like I said, and got in my face. So that's it. So it was like, any time that happens for me, it's a real treasure. So it's a real treasure. It's almost like winning a Grammy for me   Joe: Yes,   Marty Ray: Because   Joe: Sure.   Marty Ray: I look at that. But anyway, so that got that video has hundred. Well over one hundred plus million views on Facebook. Yeah, if you   Joe: Is.   Marty Ray: Add every every video together, everyone, if you can find them, all people are still still in that video opposing it and going viral and building their own channels when their own page is off of that video   Joe: Mm hmm.   Marty Ray: And some of them don't even tag me.   Joe: Yeah,   Marty Ray: So   Joe: That's   Marty Ray: And I hate that crap.   Joe: Yeah.   Marty Ray: Yeah, someone don't tag me.   Joe: Yeah, that's not right,   Marty Ray: I dropped   Joe: So   Marty Ray: My ears out.   Joe: It's all right, so I have a question to sort out, just the sort of create the foundation of who is Martinrea today. What does Martinrea doing day in and day out? What is you what is your main focus? You know, because then I still want to talk about the marketing stuff. And then I want to also let you talk a little bit more about the podcast if you want. But I also, you know, so it's it's it's still those three things. But I want to know, like, who are you today? What is your main focus? And then we can branch off to talk about what you're doing on that podcast and then what you're still doing marketing wise with, you know, whatever you're posting and then what you're musically trying to do. What are your goals for that?   Marty Ray: Well, today, I do the same thing that I've always done at any any opportunity that comes along. Entertaining and I'm will tell you a lot of times this actually happened recently. A lot of times they pay off and it's there's a scripture that lives that used to live on my phone, my, my, my, my wallpaper or whatever, lock screen wallpaper, whatever it's called. And it was it says a man's gift making room for him and bring it to him before. Great man. That's literally my life. I promise you that there's no secret that I have other than putting forth the effort and continually making sure that even if I get behind a little that I'm going to steal, I'm not going to give up. I'm never going to quit. Because I think the only difference I think if you anybody can see this, if you read the biographies and you watch biopics, you're going to see that every success story, the only difference that separates the successful people from the unsuccessful people are the successful people never stopped. They never gave up. So when they were digging in that for that diamond, they didn't stop digging until they found the diamond.   Marty Ray: So that's kind of where I'm at now, where I want to be. My goal is has been for a while, has been to get to get to where I'll have a million fans on one platform or another. And I don't really care too much which one that is. But I think that's a big milestone to say there's a million people in one place. Are saying, I like what he does so much that I want to I want to see everything he does. So that's that's kind of and it's not just numbers for me. It's not just the people aren't just numbers to me. Everybody that like or commented or has ever watched any of my videos, every view that's a human that's a soul to me. And I love those people when they know that if anybody is a fan of mine, they've for any time, any, any, any, any span of time at all, they've probably had a reaction or a comment that they've left because I answer in the beginning, I was answering every single comment. I was just days and days I would spend   Joe: I   Marty Ray: Going   Joe: Know it's.   Marty Ray: Through answering comments. And now I can't do that. Now I can't answer every single one. But I still get a lot of when as long as it notifies me, I still get all those comments. And and even though now a lot of people that's like a strategy that people use in social media. And I hate that it's a strategy. I hate that it even is part of because I didn't I never knew that until recently that it was years before I knew that actually by me commenting on people, by commenting everybody as everybody. Thank you so much. Thank you so much. I love you. I thank you so much for listening. I didn't know that that was helping me on the algorithm. I didn't know that. I was just genuinely so thankful that these people were listening to my music because I had people when I was growing up tell me this would never happen, that I would never that I would never have an effect. Some people told me I couldn't sing at all. And I believe that for a long time. And some people said, you can sing, but it's a pipe dream to think that you can do music professionally. That's never going to happen. That's crazy. That's a very visceral world out there. And only few make it so. To see all these people when they start commenting, it just warms my heart even to this day. If I could answer everyone, even today, I would. But I got a family, so I got to I got to spend some time with my family, too, you know.   Marty Ray: But as far as where I want to be, I want this podcast. Ideally, my ideal situation would be for this podcast to be earning enough money to where I can not only make a living myself doing that alone, but my co-host, Chris Wallum and the producer and anybody else that we bring in with the team for everybody to be making a great living doing that, because it's a blast. It's a blast doing that and it's fun. And then also with my music, my goal is to now that I started to see that there's people that are independent and they. Have won Grammys independently, that would just be crazy, man, for me, for my fans. To catapult me up to a place that's what's a project, you know, it's not it's not moderate's margrave project because we're all part of the project. So as a project, we all are lifting this project up to where an independent guy with nobody behind him truly, truly independent in the truest sense of the word. Wins a Grammy like that would be nuts, right, and I know that could happen, but. And I know that I see that happening at some point if the world goes on and they don't get crazy or even crazier. I could see that happening for sure at some some some time down the future. The last thing I would say in my head is not that I'm not thankful for all the success that. These covers have done for me, like there's several videos on YouTube that are that are way shoot at the sound and get out,   Joe: No.   Marty Ray: My battery is low and it keeps it keeps popping up that low battery.   Joe: Oh,   Marty Ray: Anyway,   Joe: Yeah.   Marty Ray: There's several people I mean, there's several covers that are on YouTube and performed have outperformed Ice Ice Baby at this point. And my my real dream and goal is to have one of my originals be what I'm known for   Joe: Yeah,   Marty Ray: More than any cover,   Joe: Sure.   Marty Ray: You see. And the real fans, the real true Martinrea projectors, the projectors, as I call them, and myself, even we're all projectors is they they actually prefer the originals, you know, and that's that's how you know, that they're that they're because most people don't listen to the originals. They don't even. And that's OK. That's fine. I need those people too,   Joe: Mm hmm.   Marty Ray: Because and I'm thankful. And I've had people say that certain songs have saved their lives that aren't my original. So I have no animosity towards the covers. I'm just saying my goal was to be known by my own music at some   Joe: Right,   Marty Ray: Point. And   Joe: Right.   Marty Ray: If that never happens, it never happens. It was still a good life and it was a good career.   Joe: That's cool,   Marty Ray: So   Joe: So   Marty Ray: That's about it.   Joe: So that's cool. So your your your main focuses are on the podcast, the new podcast, which what is the name of the podcast?   Marty Ray: The Marty Ray Project Chat's   Joe: Perfect. OK,   Marty Ray: At.   Joe: And then writing music and performing is the other piece of what you're doing.   Marty Ray: Right,   Joe: Ok, and   Marty Ray: Yeah.   Joe: When you perform, it's mostly for private events or corporate events, you're not doing this out in Nashville at the bar scene or things like that.   Marty Ray: No, and but I do respect those guys, I don't know. But listen and thank Marty's bad talking people that go to the bars because I stopped playing the bars. That's not me. I'm not some of my closest friends do that. Matter of fact, the guy that plays with most of the time, C.J. Wylder, that's that's what his whole career is, man.   Joe: Mm   Marty Ray: And.   Joe: Hmm.   Marty Ray: But I'm not a guess that I just can't do it. My   Joe: Yeah.   Marty Ray: Hat's off to them, though. I   Joe: You   Marty Ray: Just   Joe: Know,   Marty Ray: Cannot do that.   Joe: I've I've seen it where I was in Austin visiting and I spent a week there with just being able to go see music all the time, and I would literally see the same guy three times in one day. I'd see him like at 11 o'clock, set somewhere, and then later on at a dinner time and then later on that night at like one of the other clubs. It was insane.   Marty Ray: Really, especially if you're a singer, like if you're if you're playing, it's not as bad, but if you're singing and you're singing eight hours   Joe: Yep.   Marty Ray: And you're really giving it all you got. But most of them, I'll be honest, most of them aren't giving it all they got every time.   Joe: Right.   Marty Ray: Because when you look into a bar, nothing I hate about bars and I'm not saying I haven't played a bar have and I will play a bar if they pay me to play that bar,   Joe: Right.   Marty Ray: I got to play anywhere I play anywhere in the world. If somebody somebody will pay me to play, I'll play. I don't care where it is. That's what it is.   Joe: Mm hmm.   Marty Ray: But they got they got they're going to pay for me to come out there and play. I'm not going to come out there and hope that I get money. I'm not going to come out there and play for two hundred fifty bucks or 300 bucks. Not going to happen because the difference is I'm not knocking people to do that either. I'm just saying the difference is I'll be better off posting a YouTube video because I might. That video might go viral. I'll make way more than that. I'm just doing a YouTube video,   Joe: Mm hmm.   Marty Ray: So or pushing a podcast or or doing a private show or you know, it's just there's a myriad of things that I could do rather than play a show for three dollars. And and I think I think everybody only has so much life in their vocals if their singer. I don't think that lasts forever. If you if you really sing with heart and soul, I don't believe it goes forever. I believe that because, I mean, you get old, people get old. So I don't want to waste I don't want to waste my time. I hate to say it this way, but I don't want to waste my money, the life of my vocals on shows. That are. People in a bar that are not even listening to me and I'm saying   Joe: I   Marty Ray: Like these,   Joe: Totally get it.   Marty Ray: Like they're not even listening most of the time they're in there, they're drinking and they're partying and they're looking at each other. They didn't come there for me. They're just at the bar.   Joe: Mm hmm.   Marty Ray: It's different, though, when they come for you. I did a show in Nashville at Kimbro and we actually sold tickets to the show. You know, that was a bar. But all these people came to see me. So we were all in this room, just packed in his room. And but there wasn't anybody blabbering back and forth and and they were drinking, but they weren't talking because they were there to see me because they were fans. But if you go into a random place and you start singing, they don't care where you are, you know, and that's the kind of bothers me. And I don't know how I don't know how people do it. I really don't I don't know how my buddy like Chris Schrader, he does it all the time and you just get. No. You just get no feedback.   Joe: Yes.   Marty Ray: Yeah, it's almost like you're playing for nothing. It's like you're they might as well be playing music on the jukebox.   Joe: Yeah,   Marty Ray: And I don't like that   Joe: Yeah,   Marty Ray: I'm sorry, I just don't like.   Joe: I get it. So let's talk real quick, I don't want to hold you, you know,   Marty Ray: Oh,   Joe: We're   Marty Ray: You're good.   Joe: We're close, but I don't want to hold out. I want your phone to run out. I want your electric to go so   Marty Ray: Yeah,   Joe: Soon.   Marty Ray: I know.   Joe: So here's the question. So we got the podcast where you originated from with that and then the new one. And then we have the music stuff that you're writing and performing covers and doing your original stuff. Talk to me about the marketing. What all of that is that you doing whatever marketing that takes place currently.   Marty Ray: That's all me, unfortunately,   Joe: Ok,   Marty Ray: That's   Joe: So it's   Marty Ray: All   Joe: All   Marty Ray: Me.   Joe: Social media, all the stuff that you're doing on YouTube, Facebook, are you doing Instagram and Twitter and are you doing any funny Tic-Tac videos or any sort of stuff on Tic-Tac?   Marty Ray: I'm everywhere. Anywhere there's a there's an eyeball   Joe: Ok.   Marty Ray: Or an ear, Marty, right projects there and it's always the same at moderate project everywhere.   Joe: Awesome.   Marty Ray: But yeah, I'm I'm always at this point in my career, I know the game. So I have to as far as what I say, I know the game. I know that I have to be consistent on every platform. Now, I also know. That you never want to post the same content the same day to every platform across the board, and I also know you don't want to use a posting service to post across the board either because their algorithms don't like that. So I kind of know a few things at this point about the algorithms. I do know now that by answering your comments, it helps your algorithm. It calls you a conversation starter and now keep keeping people on the platform. I don't encourage people to answer comments because of that reason. I encourage people to answer comments because they should be answering these people that care about them.   Joe: I love   Marty Ray: They   Joe: That   Marty Ray: Have,   Joe: Man,   Marty Ray: Yeah.   Joe: I love that that's the authenticity that is winning you over, because you can just tell that's what it's about for you. If you love the people following you, you're authentic about it. And even like when you talk about that night that where you just threw up that video, it's like I'm not sure if you guys are going to like this, but I had fun do it. And here it is that's   Marty Ray: You   Joe: Being   Marty Ray: Have a.   Joe: Authentic.   Marty Ray: It's all it's really the only way I know to be, and I think I think people know that I got nothing to hide, that I'm. I'm pretty transparent, you know, a lot of people, when they get into music, they won't talk about Jesus. For instance, you never go catch me, not that about Jesus, because that's who I serve. Right.   Joe: Yeah.   Marty Ray: So a lot of people won't mention his name and all these things ain't going to happen. Not with me. And I got people I got fans that are atheists. I got fans that are agnostic. I got fans all across the board. I don't judge them, but they know what I am. There's just like I know what they are.   Joe: Mm hmm.   Marty Ray: There's nothing wrong with me knowing. But the minute that somebody goes, I'm going to I'm going to bend my morals or bend to let people know who I really am because I'm scared they might not like me. That's definitely not authentic. If you're if you're somebody in your house and into your fans or somebody else because you're online, that's not authentic. That's that's a lie, man. I'm not living that lie, so I won't do it. And again, if anybody, because this is taught in every in every workshop, it's social media workshop now. Now, back in the day, there wasn't I don't know if there was a workshop when I was when I first started, I was after this comment. Now, that will tell you, be sure your action, your comics take time out of the day. Answer your comments. That's going to boost your boost for an hour. And I'm sitting here thinking, how dare any of these people? How dare any of these people answer a comment because it's boosting their algorithm. Right, because. I wish that anybody that was doing that had that mindset, I wish. OK, you're not getting no more comments until you learn to appreciate that. Are people are taking the time to actually comment on your video because they like it? And I actually comment to the people that don't like it. I say, hey, God bless you. I still love you. Thanks for listening. Maybe we can get you on the next one and that's the truth.   Joe: That's awesome.   Marty Ray: And then most of the time they go, oh, man, I never thought you'd see that. I'm sorry, man. I really do like it. I'm like, you know, and you're like, why are you why are you bashing it then hours. Then   Joe: Right.   Marty Ray: It's OK if you don't like it. I'm not trying to make you like it if you don't. But if you really do like it. But you said you didn't. What the heck are you doing. What's the point?   Joe: Yeah.   Marty Ray: Because there's times when. There's many, many times where, especially on YouTube. YouTube is a violent place and the comments sometimes now, not necessarily in my comments, like I've been blessed with mainly 90 percent positive comments. But there's a few times when people say things like how many just horrible things. And I will come back and I say, hey, man, I appreciate you stopping by. I love you. And I don't know what you're dealing with right now. You're probably dealing with something, but you're not going to hurt my feelings. God bless you. And I pray that your life gets better. But I will say at the end of that, I say, listen, I want to I want to just post something to you. Somebody like me. I got the thickest skin you could ever have. I said, but there's a lot of young people on this and on this on this website on YouTube that are really putting themselves out there. And if you go to their page or their channel and you leave a comment like that, you very well could be the final straw that pushes them to a place they shouldn't go. I said be mindful that life and death is in your tone. Not just not just words that people aren't reading, life and death is in it. So I have told people that many times   Joe: And   Marty Ray: And.   Joe: That's powerful, that's that's really cool.   Marty Ray: That scripture, that's where they make the credit, as the Bible says, life and death is in the song and you see it, we live that man. We see that people say sticks and stones, never sticks and stones may break my bones, but words never hurt me. That's not true.   Joe: Yeah.   Marty Ray: You'd rather be hit by a stick than these words, man, because this   Joe: Oh,   Marty Ray: Up here,   Joe: Yeah.   Marty Ray: This right here is forever, though sticks that you might break a bone and it heals. This right here can never heal it if somebody don't let it, you know what I mean? So anyway, I ain't trying to preach. Don't give me. I told you I'm like a preacher. You got you've got yourself   Joe: So   Marty Ray: Something.   Joe: It's all good, but I'm loving this, so this is something that I don't want to I don't want to. It's important for me to get this aspect of what you think about this. But I started a new since I'm a booking agent and I'm a musician myself, I used to play seven days a week in doubles on the weekends. I've seen it. All right. So   Marty Ray: Hmm,   Joe: But now I'm in a   Marty Ray: That's   Joe: Position   Marty Ray: All.   Joe: Where I can employ a bunch of musicians to play at various venues and resorts here in Phoenix and Scottsdale. And with what happened with this pandemic, I've seen just like lives being crushed. Right, because they there's nothing happening. So I just started this new venture called Making Money, Making Music. And the whole goal behind it is just to educate anybody. And it's not just musicians. It could be a sound engineer, a producer, songwriter, a lyricist. I don't care anybody that's in this entertainment realm that we're in to learn to diversify what they offer, that they have more than one talent and that talent could be used to generate revenue. And whether they're on YouTube teaching someone else how they book their band or how they write a song or how they figure out what a lyric would go well with. I don't care what it is or how you mix this particular album. Show me what you know, how you got those sounds, what Mike do you use on the kick drum or whatever? But my goal behind it was to try to educate as many people that are willing to watch and listen to either the webinars or the master classes or the video or whatever. It doesn't matter. What have you been doing to to sustain yourself during this time with the pandemic being around?   Marty Ray: Well, fortunately for me, and I know there's a lot of people it's sad to see. These musicians that a lot of them have just given up. Fortunately for me, my whole career is only a career because of online. So since I was blessed on line first and not offline first. I was already geared toward that and I was already making money in that realm, so where it did, it did. I'm not saying I didn't suffer, but it was very, very minuscule, what I saw, the financial things that I suffered, because, as I said, I only I've only ever really done private shows. And and the majority the bulk of my money came from and still does come from music sales streams and YouTube and now Facebook. So I'm going to change this, Mike, because my phone's about to die. Going to say might not sound as good, but I don't want it in the interview, just abruptly saying,   Joe: Yeah, no worries,   Marty Ray: Can you still hear me?   Joe: Yeah.   Marty Ray: Ok, let me turn this let me turn this up. I'm so sorry about all these technical difficulties.   Joe: It's all good, man.   Marty Ray: They do their.   Joe: I'm here.   Marty Ray: You're very low, but I'm going to go that you can not not can you hear me? Good.   Joe: Yeah.   Marty Ray: It's just amazing. Anyway, I can I can I can make I can finish the interview, though. So the only thing that I did differently was. US instead of doing it, because I'm never have done like a live concert full on concert online, so the real thing where this is a word, if you're are you in a clubhouse?   Joe: I am.   Marty Ray: Yeah, we need to follow General Caldwell. But this is a word they throw around so often. But it's a good word, but it's so overused on there. I would never say it on clubhouse, but I must say it here. I pivoted. Right.   Joe: Yeah,   Marty Ray: Heard you heard   Joe: Yeah,   Marty Ray: That clubhouse, right, Kivett?   Joe: I'm guilty of saying it, I sometimes it's the only word I can think of,   Marty Ray: It's   Joe: So I   Marty Ray: Every   Joe: Took.   Marty Ray: Time I hear it, I go. Oh, Coble's, but outside of clubhouse, it sounds better, but it's like everybody a clubhouse is trying to they're saying that because everybody's saying so it's weird. I never say Tacloban's, but it's a real word. And it's a really it's a really good thing that people need to learn to do is they need to learn how to adjust. So I just did. Slightly my strategy to wear when I wasn't able to do private shows and things like that, I started doing a full on of concerts and getting donations. So then could my Venmo and my PayPal and cash. You have stuff like that and. To be honest. Some of those shows, some of those shows just killed it, man, I mean, really killed as far as financially. And so. I still want to do that very same thing that we were doing one a month every month, but I haven't done one in three months now, I'm really due for one, but. Probably won't have one. I'm going to I'm trying to get the show at Tampa, trying to figure out how to make that one as well so I can kind of double dip   Joe: Yeah.   Marty Ray: And. Do a show for my online fans and for people in person, I think that'd be really cool if I could figure that out, but if not, it is what it is. But that's that's kind of the only that was the biggest drastic change that I made was actually doing full on live shows, even some with live bands online. And I would I would encourage everybody that's in music, in any part of music to embrace social media with everything. We don't matter which one. Start with just one. But be everywhere, be available everywhere, but start with just one where you're putting time and effort into it weekly. And I would say everybody should start with tick tock if you want to. My suggestion, because tick tock is anybody and everybody can go viral on tick tock. You don't have to have followers you have that can go viral from a video and have no followers. So I would suggest everybody utilize that while you can. So and clubhouse, if you're able to get on clubhouse. I've made some phenomenal connections on clubhouse.   Joe: Me, too. It's   Marty Ray: You   Joe: Amazing.   Marty Ray: Wouldn't believe. I mean, just I just did a room. We did a room welcoming of I brought up Vanilla Ice onto the app and I did a welcome Vanilla Ice to Clubhouse Room. And it got like almost three thousand people in that room   Joe: Wow.   Marty Ray: Because of him, not because of me. But it was just crazy how many people were sitting there listening to us, our conversation just like this one. So that's really the only thing I can think of. That really changed for me.   Joe: Ok, cool, so so you did have the advantage because you were hip to the whole online thing and that's how you had started, that's where you found a lot of success. And when this happened, you didn't have to change much about what you were doing. But that's what I'm trying. You know, like if you have the advice you just gave is exactly what I was hoping you would do, is say this is what you need to do if because I see a lot of musicians that all they did was depend on gigging. And now, you know, I hear the horror stories from them and I can't there's nothing I can do until them till the work comes back, you know. So luckily, I'm lucky five of my resorts have come back. So I'm now giving a lot of workout. But I, I have more musicians that I have work for. So, like, everyone gets   Marty Ray: Nicole.   Joe: Like one or two dates a month where before I had all the corporate stuff and I had so much work, I was looking for people. So I'm glad I'm glad you brought that up about, you know, getting active on Social and I club clubhouse. I've heard it more times than I can even count that every expert on there kept saying tick tock is the place to start.   Marty Ray: It is I'm up to almost 300000 followers there. And I haven't I don't know how long I've been on there, but I have been on there too terribly long, maybe it has been a while. Like I said, I'm over timelines, but just being can see if you just if you just post consistently on their hash tags, no hash tags, trans, no trans, you just never know. You never know what could anything could really go viral. And it's it's a it's kind of like the Wild West out there. Just start   Joe: Yeah,   Marty Ray: Shooting,   Joe: Get.   Marty Ray: Start shooting and see what happens.   Joe: Yep, all right,   Marty Ray: Now   Joe: We'll   Marty Ray: You   Joe: Call.   Marty Ray: Say you're there. How did you how did you how did you pivot?   Joe: Well, I just I was lucky that I had such a great year in twenty nineteen that I had a bunch of money put away that I could just sustain myself off of what I saved. And then for me is where does this might sound when the pandemic hit? I needed the break. I had been going so hard. So I always wanted to start a podcast and literally I started it like the moment the the world went silent. I was like, OK, now I have a chance. So I'm going to start my podcast. And then my partner, Joel and I, we've been together for twenty years. We started a YouTube channel and we just did whatever we felt like doing. And all our recent episodes was a 28 day trip that we took from here, going to Hilton Head and then running a car in

The Joe Costello Show
Brian Bogert - No Limits - Embrace Pain In Order To Avoid Suffering

The Joe Costello Show

Play Episode Listen Later Mar 16, 2021 60:16


I had the honor to interview Brian Bogert who for me, is a real life superhero in a sense. He has dealt with his share of adversity and he continues to brush himself off while continuing to bust through barriers to create his best self. I admire all that he has accomplished in his life and he's here to help other accomplish the same and more. He goal to impact over a billion people is lofty yet if there is anyone who can do, I'm putting my money on Brian. This was a special episode as Brian was so gracious and share so much and sometimes the conversation gave me a lump in my throat as we went deep. I sure hope you enjoy this episode as much as I did creating it with Brian. Thanks for listening! Much love, Joe Brian Bogert: Human Behavior and Performance Coach, Keynote Speaker, YouTuber, Podcaster and Course Creator Founder - Brian Bogert Companies Website: https://brianbogert.com/ No Limits: https://brianbogert.com/no-limits/ Instagram: https://www.instagram.com/bogertbrian/ Facebook: https://www.facebook.com/bogertbrian YouTube: https://www.youtube.com/channel/UCmhaMgY8q-tMMCj0rpGg7iw LinkedIn: https://www.linkedin.com/company/the-brian-bogert-companies/ Email: info@brianbogert.com Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.libsyn.com Subscribe, Rate & Review: I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to: https://joecostelloglobal.lybsyn.com Follow Joe: https://linktr.ee/joecostello Transcript Joe: Ok, today, I want to welcome my guests, Mr. Brian Boger. Brian, welcome.   Brian: What's up, Joe, I love I love that shirt you're rockin no limits, soldier, right there. I   Joe: Hey,   Brian: Love it.   Joe: There you go. You know what? So since we're talking about the shirt, we've brought it up. Explain to me the purpose behind this shirt. I know that you give all the money away to   Brian: One hundred   Joe: Charity.   Brian: Percent of the proceeds, huh? Yeah, so I'll first describe kind of what no limits is just high level and then we'll talk about kind of where this is. No limits is is part of our branding. And it's this belief that I genuinely feel like we all can live with no limits. It's not that we're unlimited and we can do anything we want. It's that we can live significantly beyond the limits we place on ourselves and certainly be on the way the world has placed limits on us. And so that infinity sign, there's a lot of intentionality around it, which is really about awareness and intentionality and how those weave together to help us find who we are so we can live with no limits with our life in alignment. And so as we've been building this brand, there's always been this altruistic philanthropic side of me. Everything I do and desire for me to be financially successful is also for my ability to distribute that wealth back out into the community. So when we had an opportunity that people started to really attach to the brand and what they were doing were like, you know what, let's make some apparel. And we've got, I think, five different t shirt designs, both in men and women. We actually also have a dog design, too. I'll explain that in a second.   Brian: But the reason we did it is one hundred percent just to allow people to attach to it. You see, there's not Brian Bogot companies and stuff written all over it. Right? It's really the infinity in no limits and embedding people in that. And one hundred percent of the proceeds are going to nonprofits that we're going to rotate on a quarterly basis. And so, you know, it's just another cool way. You know, I'm not gonna make a bunch of money off t shirts. That wasn't something that needed to move the needle. But, you know, people can attach to the brand and feel like they're doing something better. Their investments also helping more lives. And a big part of who I am, I'm on a mission to impact a billion lives by twenty, forty five. This is just another way to perpetuate that. The dog shirts are that we're an animal family and my wife is like obsessed with them. And she's like, we can't have apparel without matching dog apparel, which just saw me die laughing because I still think it's so ridiculous. But I love my wife to death and every time my animals wear clothing, it just makes me laugh. But it's been cool because, yeah, those are those who go to support our local Humane Society and ASPCA as well. So some of the proceeds.   Joe: That's great. Yeah, and it's a beautiful shirt. I'm always nervous about when you can't you can't feel it first, but when I took it out, I was like, I don't know. I've been in the gym a lot lately. I might be a little a little too big for him. It's like fit perfect. It makes me actually look better than I should look. So I   Brian: Well,   Joe: Appreciate   Brian: You know,   Joe: It.   Brian: I'm super anal about t shirts as well, so I'm actually happy that he said that because I before we ever posted them, before we started selling them, we actually tested a bunch of shirts. And I wanted to make sure that they fit and they felt like I like shirts to fit. Not that that means everybody else needs to like what I like. But I've had so many other t shirts and different apparel that they just don't fit right in. You never wear it. And I'm like, if I if I'm going to buy something for my own brand or have something for somebody else, I want something that people feel comfortable in.   Joe: Yeah,   Brian: So   Joe: Yeah,   Brian: I'm   Joe: So   Brian: Happy that you feel that way.   Joe: Yeah, and besides wearing it out like normal, like this with her jeans and whatever, I definitely am going to get some more because I think it's cool and it'll be a gym shirt for me. And then I think people will come to me and go, that's cool, what is that? And then send more people your way. So that's my goal.   Brian: I'm so grateful, yeah, for the gym one, you're going to get one of those embrace pain to avoid suffering shirts. That's   Joe: There you go. That's   Brian: That's   Joe: Right,   Brian: That's that's the motto in the gym that's   Joe: That's   Brian: Going to help push you, man.   Joe: Right. All right, deal. So I always I know you've told your story a zillion times, I'm sure. And I want you to tell as much or as little as you want to bring us up to today. So however, you can kind of let the audience   Brian: All   Joe: Know. Yeah.   Brian: Hold it a million times, so I feel like I know the points I want to hit, so I'll just I'll just run with it. I'm going to ask you and anybody who's listening, unless they're driving to just close your eyes for just one second. And I want you to imagine going to a store, having a successful shopping trip, heading back out to your car. And it's a beautiful day. And you think you're just going on with the rest of your life like it was just any other normal shopping trip. And then you get to your car and you turn your head and you see a truck barreling 40 miles an hour right at you with no time to react. Go and open your eyes. That's where this portion of my story begins. My mom, my brother and I went to our local Wal-Mart to get a one inch paint brush. And anybody who's known me followed me or even in the few minutes we've been talking can probably tell. I've always had a lot of energy. It's the first one of the car and not a surprise to my mom because I want to get home and put that paint brush to use. You know, this is back in the days, though, before they had key fobs. So I had to literally wait for my mom and brother to close the gap of those four or five feet, catch up, stick the key in the door and unlock it to get on the other way.   Brian: And as it happened, the truck pulls up in front of the store and a driver, a middle passenger, get out. And the passenger all the way to the right felt the truck moving backwards. So he did what any one of us would do, Joe, and he screwed up and put his foot on the brake instead of the gas combination of shock and forced Zoom up onto the steering wheel, up onto the dashboard. And before you know it, he's catapulting across the parking lot 40 miles an hour right at us with no time to react. Now, we were in that spot, so we went up into the median, went up to the car in the median, ultimately knocked me to the ground, ran over me diagonally, tore my spleen, left the tire tracks, scar on my stomach and continued on to completely sever my left arm from my body. So there I am laying on the parking lot on one hundred and fifty three day in Phoenix, Arizona, my mom and brother just watched the whole thing happen and they look up and they see my arm 10 feet away. Fortunately for me, so did my guardian angel. She saw the whole thing take place, she was a nurse that walked out of the store right when this happened.   Brian: She saw the literal life and limb scenario in front of her and she rushed immediately into action. She focused on life. First, she came over and stopped the bleeding and she saved my life. And then she instructed some innocent bystanders to run inside, grab a cooler filled with ice and get my detached limb on ice within minutes. Had she not done one or both of those things, I either wouldn't be here with you today or I'd be here with you today with the cleaned up stop. That's just the facts, right? So I will expedite a whole lot of the rest of that particular story. We can dig deeper if you want to. But as you can imagine, there was years of recovery that came from this. Twenty four surgeries and a whole lot of lessons and observations. What I've definitely learned is that I have an extremely unique story. I'm sure that your listeners weren't expecting it to go there today. But what I've also realized is that we actually all have unique stories. And what's important is that we pause and become aware of the lessons we can extract from those stories and then become intentional. How do we apply to our lives? And we all have the ability to do that. We also all have the ability to tap into the collective wisdom of other people's stories, to shorten our own curve, to learn something to share with you two primary ones.   Brian: And then we'll just see where the conversation goes. The first is I learned not to get stuck by what has happened to me, but instead get moved by what I can do with it, and the second I didn't realize until far later. I was a kid. I was seven, eight, nine, 10, 11, 12 years old when I was going through the meat of all of this. Yes, I was the one doing the the therapy. Yes, I was the one having the surgeries done to me. But I was also being guided through the process. So I was a little bit in a fog. My parents, however, were not they were intimately aware of the unceasing medical treatments, years of therapy and the idea of seeing their son grow up without the use of his left arm was a source of great potential suffering for them. So they willed themselves day in and day out to do what was necessary. It was tough to embrace the pains required to ultimately strengthen and heal me. So whether it was intentional or not, what they did was they ingrained in me a philosophy and a way of living which I embody and everything I do now, which was to embrace pain, to avoid suffering. And I believe when that's done right, that's also where we gain freedom.   Brian: So it's these concepts that I use to not only become this unique injury, but how my business partners and I scaled our last business to 15 million with the span of a decade. And now how is a human behavior performance coach and entrepreneur? I flip that on its head. You will have individuals and organizations just like you, just like the people listening, become more aware, more intentional, and who they already are, their most authentic selves. You see, I believe that's when magic starts to happen and the door starts to crack to perspective, motivation and direction. And that's when people have the opportunity to have joy, freedom and fulfillment and to back into their lives. And those are the reasons I'm spending the next twenty five years of my life committed to trying to impact a billion lives on this planet. Because if we can reduce the level of suffering that people experience, which there's a lot, and we give them the chance to experience joy, freedom and resentment, we give them the permission to be exactly who they are and know the world will embrace them and love them for exactly who they are. And we can bring vulnerability and authenticity into everything we do, which are the glue that binds human connection. Then we can come together and leave this world a lot more. Beautiful place for my kids, my grandkids.   Joe: Well, let me start here first. Do you still are you still in contact with that nurse?   Brian: You know, I am actually on a mission to find her right now. I've never spoken with her. And so part of the reason I also talk about that role in that process on so many platforms is I want there to be a lot of exposure and hopefully the world is going to help me track her down because I just want to say thank you.   Joe: Sure, that time that I've heard the story, it was like, I need to ask him that question, I'm just wondering if they're in connection with each other.   Brian: We're not I'm actively looking for her right now.   Joe: Got it during the time you were going to school. How did you handle I would assume you were treated differently, right,   Brian: Of   Joe: By   Brian: Course.   Joe: Your by your friends and teachers and they always whatever the case might be. How did you handle that?   Brian: Yes, so I think I handled it from a place to survive and protect myself, although I didn't realize that's what I was doing until far later. I didn't I didn't like being the center of attention and I didn't like. Being defined. By boundaries that were placed upon other people's view of what they'd be capable of in my scenario, and so I got this really adamant approach to I'm not going to be defined by those boundaries and I'm going to break beyond boundaries for my entire life, because why not? If I want to do something, the limitation is inside. Right. I need it. And there may be a physical limitation in some ways, but like I can always overcome the physical limitation. If I have a will and desire, that's great enough. But what happened right to protect myself is I created this intellectual narrative, which was I'm good, I'm strong, I'm capable. I don't need anybody's help. And it served me really well for a long time during that period of time, I was able to really hone my emotional intelligence because I got so good at wanting to divert attention from me that I got very strong in my ability to read people, read environments, read situations so that I could almost ensure that that attention wasn't on me. And so it honed those skill sets. And it also honed my mental toughness, which, again, I'm a huge believer is a big part of the equation to be kind of successful. That intellectual narrative ended up biting me later in life. And when I was 20 years old, I broke my arm in a snowboarding injury.   Brian: Compound fracture almost lost it again. And that was the moment that I realized the power of our narratives because the world bought into mine. I had I had sung that preached that narrative so strong. I never even said those words right. That's just the message that I was sending with my energy and how I showed up and how I interacted. And now all of a sudden, I'm in my most vulnerable period ever as an adult, not having the same infrastructure and support system that I had at home that I probably took for granted up until that point, how much support I had. Now, sitting in this vulnerable position, I didn't have the courage to ask for help. So I had a lot of friends, a lot of family. Nobody showed up and they didn't show because they didn't love me or didn't care about me. And they showed up because they just believe Brian's goody strong is capable. He doesn't need anybody else. And so that's kind of the during that whole school adolescent period. Right. It was really about me proving that I could overcome the physical limitations, that I could protect myself, that I could get myself there. But what I really downplayed the importance of was the importance of human connection. So that whole next year of my life, I shifted to vulnerability and authenticity and how do I hone the relationships that I was developing so strongly through emotional intelligence to be able to focus on a true connection.   Joe: So it sounds like your parents were super special. Did they go out of their way and whatever normal way for them to handle it, to not limit you from doing anything like when somebody knocked on your door and said, hey, can Brian come out and play and we're going to play football? Did they say, Brian, go have fun? Like, is   Brian: Yeah.   Joe: That the approach they took?   Brian: You know, nobody's ever asked me that question, you just gave me chills when you asked that. I think it's a blend, honestly. They did. They never wanted to be the reason that I didn't do something. But as you would expect, all parents have a protection mechanism that kicks in. So immediately after the accident, I was I was in slings and during surgeries for a few years. And so that first year after the accident, no, I wasn't going out and playing at the level that I would have right between seven and eight. But it wasn't long after that that it was it opened up. We started having good friends in the neighborhood. We played football in the street. We played basketball on the street. We rode bikes nonstop. And so they were never going to tell me that I couldn't do those things. Now, what they didn't want me to do, they didn't want me to join a football team where we were playing tackle because for obvious reasons, I get hit really hard on that arm. Even though the doctor said the bone wasn't strong, we don't know. Right. So so they would limit it in terms of like, exactly the application. But at the same time, they got so used to me doing what I was doing that whenever the phone rang and it was somebody a number that my mom didn't know back then, she was expecting insert branded something again because I needed I think they appreciated the fact that that's who I was when I was born.   Brian: I mean, I was always the guy that was pushing the limits even before this. This gave me perspective in humility that I wouldn't have had otherwise. And so they at least were aware enough to recognize, like Brian's got a higher risk threshold and probably has an even higher one after the accident than he would have had anyway. And they they knew that they needed to give me those outlets to be able to spread my wings and be free. So they always encouraged. Right. Like, if I wanted to go mountain bike and do jumps, they'd be like, OK, you're going to get hurt. And then if I got hurt, we'd figure it out. Right? I mean, within reason, they gave me the freedom. I think they made the right decision to not let me play tackle football. Who knows what could have happened, but did I play on other sports teams? Absolutely. So, yeah, I think my parents really did encourage and they still do to this day, despite the fact that they know you know, I think my mom has just gotten used to constantly being on edge, like expecting that Brian is going to do something crazy and get hurt. That's how we find our limits in this world, is we've got to push them.   Joe: Well, tell her to not follow your Instagram account so she doesn't have to see you squatting. Four hundred pounds. I saw that. I saw the photo of you sitting there. I'm like, oh, my gosh, I can't watch this. This is killing me.   Brian: Well, I mean, and that's one of those things I had to learn, right? I mean, my biggest limitation for some of those things is my hand strength. And so I have to get creative and I figure out how to do things. And when I first started deadlifting, I mean, I knew I couldn't deadlift with a normal bar because of the imbalance in my body already, but I could deadlift with a bar and protect myself for the most part. Well, that worked really well until the one time that my strap broke   Joe: Oh.   Brian: While I was lifting. And this was like early on. So I had to, like, learn these things. Well, my instinct wasn't to just let go of the bar on the other side. And I think so what you saw the other day, I wasn't 400 pounds. I think it was two hundred and   Joe: Yeah,   Brian: Forty.   Joe: I know, I just I couldn't remember,   Brian: But   Joe: But.   Brian: But I but I have I have reps significantly above 300 pounds. I don't say that to impress. I rest to the point I was doing that in this one scenario when the strap broke and I didn't let go on my right hand because it wasn't instinct, because I wasn't expecting the strap to break. And this was a learning experience because it tweaked me really bad. And I mean, I didn't deadlift for a few months after that. I had to recover. But once I started getting back into it, it changed my form. It changed my focus, it changed my attention. And now I'm like intimately aware of, like every movement on the strap. And I'm like ready at any moment to just drop so that I don't tweak my back. But my core strength is a big part of my ability to not be in debilitating pain every single day. Those deadlifts keeping my upper thoracic, keeping my shoulders, keeping my back because I don't have a lot on the left side of my back, keeping them strong is essential for me to not be literally in debilitating pain every day.   Brian: And so those are the those are the pains I have to embrace. I've got to embrace the pain of figuring out how do I lift in a way that pushes my body, gets the hip hinge in there, gets the movement, my back and my core strength and all that stuff engaged in a way that's going to allow me to maintain a livable amount of pain in my back because the imbalance versus debilitating suffering. So it's funny that you mention that. But yeah, I think my mom is just used to it. My wife is too. I mean, my wife is incredible. She literally is like I know that if you set your mind to something, you're just going to go do it. And there's a high degree. At some point you going to get hurt. She's like, but what am I going to, like, box you in and continue? Like, you're just going to go do it anyway. I was like, yeah, see, like, I love that, right? It's like just let people let people spread their wings.   Joe: That's right. Well, that's great before we get off of this subject and move on. I know that you and Blake do mountain biking,   Brian: Yeah, we do,   Joe: Right?   Brian: Yeah.   Joe: And that's like a big thing he loves to do with you and you with him. And so that's got to be at least I mean, I've done it and that's a lot on the arms.   Brian: Yes, so what's funny is I have no other perspective because I didn't learn how to mountain bike until after my injury, I didn't I didn't learn how to mountain bike when my when my son did at five and six and seven. So, yeah. It isn't in balance. Yeah, it is difficult. And I did it for almost. Let's see, I did it for probably 20 years before I actually started adapting my bike. And so there's no tricep, so Tricep and Laerte are the two muscles that you absorb, all of it, all of the impact with when you're mountain biking outside of the suspension. So I don't have a lot of tricep. So there's an automatic imbalance in my body, but I've learned how to balance it because I didn't know any other way and I was motivated and wanted to do it. Mountain biking is one of the few places that I'm absolutely free. And the reason I'm absolutely free there is I don't have the ability to think about anything else. Almost any other workout I do, almost anything I do like there's time to think. Mountain biking, you've done it right. You know, like you've got to be on your game.   Brian: One hundred percent focused on what's ahead of you. And so because of that, I've learned how to how to modify my body, my weight distribution, the way that I actually handle the handlebars. But two years ago about I started researching modifications for people with upper extremity injuries. And I landed with this company in the UK that they're actually right now building a product for me that I think is going to take my mountain biking to the next level, which is cool. But what I did is I got a steering stabilizer almost like the ones they have on their bikes. There's a company in the US called Hoby and they make these steering stabilizers for for mountain bikes. So I ended up getting that which what it essentially does is it's a spring unit which snaps the bars back to being straight. I thought it was going to help me more going downhill than uphill. What's crazy is it's actually helped my climbing more than anything because I can pick a line and put all the power I need to in the pedals and not worry about the imbalance in the handles, because it'll it'll keep my lane pure   Joe: Yeah.   Brian: And with slight, rigid and then downhill. It just gives me more confidence as well, because if I were to hit a bump and it goes on the left side, your weight goes forward, the handlebars collapse. Right. And just like twist the bars, this steering stabilizer stabilizer allows me to balance it with the muscle structure having the right arm and how I can balance my body on the left and then hope, hope he breaks is also another brand that I actually found out they just released this last year, a brake unit that has two master cylinders in one unit so you can have your front and your rear brake both on the same side. I've always never used the front brake in mountain biking   Joe: Sure,   Brian: Because my right   Joe: All that   Brian: Side   Joe: Pressure.   Brian: Is always   Joe: Yes.   Brian: What you want to be able to use primarily anyway, right? Whereas road biking, which I do a lot of the front brake is more important. Mountain biking, the rear one's more important. So I was always able to get around the corners, but I never had the confidence that I could actually stop and modulate my brakes effectively. So I would take things a little more cautiously now that I have these brakes on both sides and I can truly modulate, like just with, like little twitches in my fingers and the steering stabilizer and it's changed my mountain biking game. I can go out there and rip at a level that I've never been able to with confidence. And then there's like I said, these are these two other products that I'm really excited about. But, you know, one of the things I never knew any different, I wanted to do it and I figured it out. And I think that, again, that's one of those things that I could have just told myself, like, nope, you can't do it. You don't have tricep, you don't have a lot. But I genuinely believe if you want something badly enough and you take the time to think, plan and put things into trial and error, you start to realize you can do a lot more than what the world conditions us to believe we're capable of. Mountain biking is just another example for me on many things that I've been able to break those boundaries and expectations. I see I go mountain biking. People are like, how do you do it? I'm like, how do you do it? I mean, you could you could explain to me with a fully abled body how you do it, but I wouldn't understand because that's not my experience.   Joe: Yeah, that's crazy. So, Blake, is your son Addisons, your beautiful redheaded little daughter? With what happened to you, do you believe that certain people on this earth are have the power to get through some of these things where I just think about what you've gone through? I think about even my own brother, who, when he was young, why they were there at my parents house, they were splitting wood with one of those hydraulic splitters. That goes really slow. Right. But the   Brian: Oh,   Joe: Log   Brian: Yeah.   Joe: Slipped and he had like these two fingers crushed   Brian: Yeah,   Joe: And   Brian: Yeah.   Joe: Then, you know, reconstructed but not usable in a sense. Then he lost his son at 21 years old in a car accident. And I think about this and I go, God, I. I am not I don't have the capacity to handle something like that. And I guess when it happens, it's different. Right? You figure it out. But I almost feel like certain people I don't know if they just they're born to be able to handle these things. And if this is more for the audience   Brian: Yeah.   Joe: That might hear this and go, oh, God, there's all of these things that come into people's lives that they're they're given to deal with whatever that might be. And is it just the chosen ones that can handle it? That's why they've it just doesn't make any sense to me. So that's.   Brian: Yeah, so. I really appreciate the direction your questions are going. By the way, I just have to compliment you on that. You're asking a depth of questions that don't often get contemplated. And I think that there's a lot of truth behind even what you said. You know, it's interesting if you even think about what you just said when you were talking about your brother, you say, I look at him and I'm not sure that I could have handled it. And the reason I pay attention to that is because that is what I truly believe in, how the world has viewed me, they have viewed my limits through their own lens of what they believe they're capable of. I don't think that people truly know what they're capable of until they're tested. And that can be done either intentionally or externally, right? Sometimes we get tested not by our choice. Clearly getting run over by a truck was not by my choice, but it was a test. And I could show my strength to myself into the world by how I stood back up and what I've now done with it. Why I say I have a unique story is it doesn't matter the trauma that I experienced because it's unique solely to me. The trauma that your brother experienced, the trauma that other people experience with divorce or loss of a loved one or financial despair or like you name it, we all have our own unique challenges that we face. And I don't care who you are, if you're still on this planet and you're still standing. You are a survivor. None of us get through this world unscathed.   Brian: None of us. Perspective allows us to really pay attention to what other people are going through, but what perspective is really doing is allowing us the opportunity to get in someone else's world to gain perspective, to apply to our own. So it's not necessarily about what each one of us are inherently able to handle. It's that I think we're all dealt a unique set of cards and it's how we play those cards that matter. So the thing about pain, and I'm just going to speak to that, because my experience was pain, your brother's experience was pain. He had physical pain, probably emotional and spiritual pain with the loss of two fingers and a deep emotional, mental, spiritual, and probably manifested as physical pain with the loss of his son. Pain, that's what it is. Now, pain can't be measured independent of the person experiencing it. But the one thing we know is that it's a universal human experience, we all experience pain. And so what's important is not to question can I or could I have handled that? But just to say I've handled everything that's ever been thrown my way and I'm still standing here today. So what that tells me is you're probably capable of handling a lot more than you thought you were capable of at a prior period in your life. And if something were to happen that's devastating, right in that moment, you have to choose, is this going to define me and keep me stuck or am I going to use this as fuel to who I'm capable of becoming because of what I've gone through? That's why I said earlier I learned not to get stuck by what's happened to me, but I get moved by what I can do with it.   Brian: I realize I have a gift not just in my own natural abilities and gifts and intuition and emotional intelligence and all the things. But this has given me perspective that I couldn't I couldn't have gained any other way. I can put myself in other people's shoes and know what it feels like to not be seen, to know what it feels like, to feel like nobody understands me, to know what it feels like, to have people question everything I'm capable of for my entire life, even if it has nothing to do with my physical ability, even if it's one hundred percent mental, one hundred percent job and application, they view me. As not capable of doing I know what that feels like and I've had to battle that my whole life, I don't know a single person on this planet who has never felt that way. We all feel that we all experience and it's real to each one of us uniquely so I know it's probably a lot longer of an answer than you were hoping for, but the depth of the question, I think, required that approach because it's not about what you believe you could handle based on other people's circumstances. It's about what you already have handled and what you're very capable of handling if you change the way you think and feel about what you're capable of, which, again, is typically limiting in our own belief system.   Joe: So because we're doing this recording and you and I have not talked about what we could talk about or what we couldn't talk about, I want to ask this and obviously I can always edit it out. And you   Brian: Free   Joe: Know   Brian: Game, buddy, go ahead, go ahead.   Joe: What? So when does someone say, like, did you ever have these dark moments? And this is not the part of the question that I'm going to ask. This is just in front of it. And you ever have a moment that you said, why me? Like, did you ever   Brian: Absolutely.   Joe: Ok?   Brian: Absolutely, and I have those moments still today when I get when I get hit with certain things. The reason I was able to shift out of that so quickly, I remember being seven years old and that was the first thing I remember when I woke up, one feeling like it was a dream. And then I was like in this hazy state of like what this altered reality felt like, it didn't feel real. And then it was probably a day or two before I really came to and was like awake, awake, not just like in that dazed awake. At least this is from memory, I don't know the exact timeline. This is just how I feel it. And I literally remember. That question. Weiming. What is the rest of my life going to look like, like this sucks. I felt sorry for myself. I was given the opportunity to snap out of that quickly because the uniqueness of my story drew a lot of attention to it and there was a lot of families in the ICU with us who were coming up to us saying, we're so sorry for what happened to you. This is so horrible. We can't believe how hard this must be for you as a family. Let us know whatever we can do to help. Just getting wrapped with love and support from strangers to strangers saved my life. Right. That's crazy to think about. A stranger went into action and saved my life. Had she not chosen to do that, I wouldn't be here.   Brian: So I don't take that lightly, but what's happening in the ICU with these families is we start to realize that these families that are giving us just unfiltered support. Are also questioning whether or not their kid is going to survive another 30 days from the terminal illness that they're in the ICU with. Only immediate threat to my life and not at that moment knowing whether or not I'd be able to use my arm. I knew I'd be alive and over the course of the next ten years, being with those kids and all of us who wanted to rally around this cause to help more people, to bring perspective, motivation, direction to an organization that helped us so holistically in a healing process, either physically, emotionally, spiritually, whatever. Right. I lost multiple of them to their terminal illnesses over the course of the next ten years. And so although I don't think about them every day, when I'm asked questions like that, it really centers me on grounds me because I'm here happy, healthy and productive, living a life that many would dream of. And those kids didn't have the opportunity to do so. And so I have to just know and honor that it was me for a lot of reasons, I might not know all those reasons in this lifetime, I believe I know a lot of them at this point, but I still ask that question. I mean, last week was an unbelievably challenging week for me.   Joe: I saw the story and, yeah, that's part of where,   Brian: Yeah,   Joe: You know, this   Brian: I mean,   Joe: Is   Brian: Last   Joe: Going.   Brian: Week   Joe: Yeah.   Brian: Was an unbelievably challenging week for me, for a variety of reasons. One was around this fabricated reality, around a date that in some ways is very significant, in other ways is not significant. But coincidentally or coincidentally, I got kicked in the stomach multiple times last week. And yet it didn't really totally faze me in a way that brought me down to the deepest, darkest moments, because every time I face those things, every time I start to ask the question, why me? It starts to reveal itself faster and faster the more I go through the pain. And and and so I now have this element of trust in surrender where the literally last week I was like, why do I always have this stuff happening? Why am I the one that has to deal with this? Literally? I mean, I said to my wife last week and then in the same breath, I'm like, I know why. And so for those that did ask that question still. I would just encourage you to recognize that there absolutely is a resum. Nothing happens by accident. You could call this my accident, but this was for a purpose, it wasn't on purpose, but it was for a purpose. And I realize that now more holistically than I have in my entire life, but it's the same thing for everybody else. I mean, I guarantee that your brother has learned from his experiences and having to adapt and do things with the loss of two fingers. He's had to learn and adapt. What does it mean to be a parent? And there's so many are out there who live on their lives without their child. Still a part of it. Parents aren't meant to outlive their kids.   Joe: Correct. What's   Brian: Right,   Joe: The what   Brian: And.   Joe: The worst car I could think of?   Brian: And by the way, there was this pending doom around this date last week that was connected to that for me, as well as from a parent's lens now. And the data is reference to a couple times I didn't I didn't say specifically on the show, but this last Saturday, March 6th, was the day that my son, who's my little clone, my little mini me, my my only boy and my oldest. Was the exact same age to the day that I was on the day of my injury. Twenty nine years separated. And. There was a lot to that most of what happened in the 10 days leading up to it had nothing to do with my son. But they were absolutely clarifying moments that needed to take place in that window. And Saturday was kind of a new start for me and a whole variety of ways, which was just unbelievably cleansing and freeing and purifying. And so even the questions last week, why me? Why does this always happen to me? Why do I have to be the one to do this? We're very clear. I know, and I think all of us do we just fight and we resist because it's not in alignment with what the world tells us. It's not in alignment with what the narrative is externally. Right. But it's not about being the victim. It's about recognizing that if we have ownership and accountability with everything we do, we recognize that there's always a reason, there's always a cause, and there's always a way through it if we desire it enough. That's when we start to become free.   Joe: Ok, so here's the the part where I want to talk about Blake and Addison really quickly, I don't want to stay because, you know, I know you're super productive, positive guy. And I don't want this episode to be like the Debbie Downer episode. But you went through a lot in your life up to this   Brian: Yeah,   Joe: Point. Right.   Brian: Yeah,   Joe: And   Brian: A lot.   Joe: Then, Blake, I remember you talking about this, so I'm only bringing this up because I think you've talked about   Brian: Yeah,   Joe: It and.   Brian: I've shared publicly on stuff, I'm sure I know where you're going,   Joe: Yeah,   Brian: But go ahead.   Joe: So so you said it is is on the spectrum, right, and so you there's an extra amount of attention that has to happen   Brian: Of course,   Joe: There. Right.   Brian: Of course.   Joe: So then you deal with that another moment where you said, why me? Like, I haven't I haven't. I gone through enough. Why me? Right. And then now you have yet a third time now with with Adderson with her here. Right. And I could be another time we go. What is it going to stop. Like why me. Right. I'm sure there's people out there that do not handle this anywhere near as well as you do. And I'm hoping your words of wisdom, if they run across this episode, that it will help them understand how you I mean, you can look at their beautiful faces and go, oh, it doesn't matter. You know, they're amazing. It just it's a it's a small little blip on the radar. But it's still some people can't even handle the bullet. So   Brian: They   Joe: That's,   Brian: Can't.   Joe: You   Brian: They   Joe: Know.   Brian: Can't. And by the way, there's a lot more depth and truth to that statement than than you probably even realized, I mean, to the point that when we found out about our daughter's hearing loss. The audiologist actually said to us she does have loss and she could benefit from hearing devices. And I paused and I said. She could benefit, like are you saying she needs hearing aids, like is her hearing profound enough that it's not like she would benefit? She she needs it to restore it to what we would expect are going to be? And she said, yeah. I said, why didn't you just say that? And she said, because most parents don't want to hear it. And she said that even when they do want to hear it, she said, because of the reports that we get when we plug in hearing aids, even if they go through the process of getting hearing aids, even if they go through the process of doing these things, she said. Most kids, the hearing aids live in a drawer. Because of some reason, right, that either the parents don't think it's important they're embarrassed by their kid or whatever, like there's a whole slew of things. You're exactly right. And in both those moments, by the way, when we found out about our son's diagnosis on the autism spectrum and we found out about our daughter.   Brian: It was it was challenging, right? It was absolutely challenging for both my wife and I and we both we both grieved in different ways. And why I choose the word grieve is any time we have a vision for our lives. And that reality that we've created gets stolen from us, we experience loss. We literally go through the grieving process, the multiple steps of grieving, sometimes it's anger that manifest first, sometimes it's just like absolute depression. But but recognize it for what it is like having something happen to your kid and realizing that they might have an altered future from what you always desired and hoped for them. You have to process that, but then once you process that and you start to realize like this doesn't define the kid, just like a mine accident didn't define me right. What this really does is it's a gift because what getting both of their diagnosis is as early as we did, what allows us to do is wrap them with services, wrap them with all the support they need to close the gap between whatever their diagnosis limits them from doing to what a typical kid might be capable of doing. It shortens that gap early in those foundational early development years so that it won't really ever hurt them.   Brian: Plus, the more that we talk about it not as an ailment, but just a part of who they are, right. It's no longer a label. It becomes a term of empowerment because they recognize that like they have superpowers as a result of what their diagnoses are. So the answer is yes. There's there was absolute grieving for both my wife and I, for both children. We're well beyond that at this point. But it hung with us for a while. And and there are still moments where the difficulty and complexity of our household that most people will never understand and ours is light compared to what some other people's situations are. Right. So we keep that in perspective, too. Is it harder than most parents and most households might have to be? We believe so, but it's not about like we have got it more difficult than what they have. It's just this is the cards were dealt, so we're going to play them as best we can for both of our kids. We know how lucky they are to have us. My wife is brilliant. My wife is brilliant and what she has done to allow our kids to feel authentically who they are in safe, despite all of these things, despite the fact that they know they're different in certain ways and honoring and cherishing, encouraging them to just make do the things that make their hearts happy and stand up for what is right and know that they're worthy of receiving love like exponentially.   Brian: And all these things, like my wife and I were partners, but our kids are lucky to have us at the counter to that is we also feel extremely privileged to have our kids because they have challenged me to go to depths of myself, my soul, my emotions that allow me to be more effective in the world. That had I not recognized those scenarios for what they were, which is we can handle them and let's figure out the plan forward. It probably would have made me feel stuck longer than it did. And so for those parents that are listening out there that might have kids like this or even if there's not a diagnosis, but you just have a challenging time or there's an injury or there's something like, again, nothing happens by accident. And so the only way through it is through it, and if you if you desire something on the other side, then you've got to go through and that's really what it comes down to.   Joe: Really powerful and I appreciate you sharing leading up to this interview, I wanted to talk about those things and I was just like, I know he's talked about it, but I I didn't know how to actually go after it and   Brian: You did it beautifully, my friend, it was   Joe: Think   Brian: Great.   Joe: I'm grateful that you shared. And so, OK, so now you and I know this is a big jump, but I just want to I know we   Brian: Yeah,   Joe: Have limited   Brian: No, let's go. We got it, yeah.   Joe: We have limited time and I don't and I want to get to where you are today. So then you get into the insurance business. Correct. So you're in that for you grew a company. I think it was from like.   Brian: Quarter million to 15 million over the span of a decade.   Joe: You just picked that that was just a career that you pick at one point and.   Brian: Yeah, you know what's funny, I saw depicted it sort of picked me up, I was my junior year in college, was deciding that I needed to go get an internship. And so I started looking at a whole bunch different places. And I actually ended up getting into insurance because my one of my childhood friends and my childhood girlfriend, in fact, that we grew up together. And a lot of ways I always had her parents were like second parents to me for a lot of years. And I always had a great lot of respect. But I always viewed her dad as this very successful man. But I knew nothing about what he did. And I reached out to him as a mentor, frankly, and just said, hey, I'm going out. I'm doing these interviews and I have these things. And I talked to my own parents and they're successful. They've done these things as well. But I wanted extra perspectives. And he ultimately was like, I'm going to pass on your resume to so-and-so. And if you don't get a call in three days, call me. I was like, OK, not a clue what it was. It was the only one that was in insurance. Right. Very, very amazing opportunity. And it just took off from there. And nobody grows up wanting to be an insurance, right? I mean, and if they do and if you're listening to this, I apologize if you always had a desire to be an insurance. I know there's some people who love it. I never loved it. It was a great vehicle for me. And it was a great testing ground for me to grow and develop who I was as a professional, who I was as a man. I kind of grew up in it, but yeah, no, I didn't seek out insurance. I kind of fell into it and it just it fit.   Joe: Right. So while you were there with your inner voice saying there's more out there for me, I want to do more, whatever it might be. I mean, how did you make the jump then when you left   Brian: Yeah.   Joe: There to now what you're doing, which is the coaching and the speaking and and the podcast. And I mean, I, I look at your website and I get tired just looking at all the all the different menus that I could take a look at stuff. And then I went into the podcast when I was like, wait, is he doing actually three podcasts? Like, how is he doing all this? So how did you decide how did you decide you were going to leave insurance and then pursue the Brian Bogot we know today?   Brian: Yes, so I'm going to start with the first question you asked, which was, did I always know? I knew for a long time I've always had this gut feeling that like there was something meaningful that I was meant to do. No idea what that meant. OK. And then I conditioned that out of myself, and when I first got out of college, it was like bright eyed and bushy tailed, I was going to go take over the world and make a ton of money. Right. I'm going I'm literally going to be running the company. I'm going to climb the corporate ladder. I mean, it was all external. And, you know, this is one of the things I talk about now is I chased the what like so many of us did. Right? I chased what house, what car, what amount of money, what amount of success, what image do I want to portray? What, what, what, what, what. And I lost the who along the way. And I woke up one day after having accomplished all the words that I ever desired, way earlier than I thought I would have, in a way bigger level than I ever thought I would. And I realized, like, what have I been doing all this for? The more money I made, the less I cared about money, the more I got into a successful career, the more I was like, why am I doing to myself? And then I'm running in circles with people making six, seven, eight figures who all were having high of success and they were all miserable to.   Brian: And so those were the turning turning point moments over the probably the last seven to eight years, maybe six, seven years, if I'm being real honest, because when I first started coaching, it was because I had my son and I always said that I'm going to do everything for the benefit of my family always. And I did. But then six months went by when my son like that and I realized I missed all of it except the first week because I was burning the candle at both ends, I was still living the life that I was to create this abundant amount of external success and validation that I needed to prove to myself I could do it and I never recalibrated my life. So part of providing everything for my family is with finances and security and opportunity and safety and all those things. But but but it's also love and leadership and presence and connection. And I don't want to be that guy that did everything for his family, then woke up twenty five years later and never had a relationship with any of them.   Brian: They decided that I didn't serve a role for them outside of money. It's not all about money. It never was all about money. And so it was the first in my life. I didn't have the people in my life, the mentors, the experience or the intellect myself to figure out how to fix it. So I hired my first coach. And he said to me, a month of working together, because you're going to be doing this, like, what are you talking about? He said you need to be coaching and speaking. So you've been on stages since you were seven because you've got a unique ability or a unique story and you have an ability that you're not afraid in front of groups. And he's like, you're all about building people and building businesses. Like you're always helping. You're always finding ways to level people up. You're always helping them connect dots. And I was like, yeah, whatever. I was like, I'm paying you a lot of money. Not that's how great I have to figure out this stuff. And I completely threw it out the window. And then it just kept trickling. It kept trickling in every single month for about nine months.   Brian: And then this crazy experience happened, which again, nothing happens by accident. But the universe gave me the sign that I needed, which was he told me what I needed to hear, not what I wanted to hear. And that's when I started to desire a little bit more and started to feel like maybe I wasn't in alignment. But I had to ask the question if I'm going to jump in being in coaching, is this complementary or conflicting to everything else I had because I was so significantly invested mentally, physically, emotionally and spiritually and monetarily. Right. In this other business that we built, that was the fruits of its labor were just starting to pay off. And it's like, let's let's make sure that we forge ahead on what we're doing here. So I started coaching and speaking and I did it alongside for about five years and then summer of twenty nineteen comes around. And again, I told you, I'm running in circles with people that are miserable. And I realized my relationship with my clients started shifting to more coaching relationships. We were placing multi million, hundreds of millions, tens of millions of dollars of insurance for people. And my conversations had nothing to do with insurance with the people that I was actually interacting   Joe: Right.   Brian: With at the C Suite.   Joe: Yeah.   Brian: Right. I was coaching them on how to be better people, how to be better leaders, how to change the culture of their business, think through and problem solve on things that really had nothing to do with insurance. But the insurance was how we were in the door. And so the more that started to migrate, we have this connection moment summer twenty nineteen with my wife and I. We go away for a weekend and it was one of those that like mentally, spiritually, physically and emotionally, like brother, like our souls were bonded like we were one and we're driving back to pick up our kids and she looks, everybody goes, how would you feel if you did have to go to the office on Monday morning? And I was like, that's a pretty loaded question.   Joe: No.   Brian: Why don't you tell me more? Well, I had some other I had some other health stuff that impacted me pretty significantly a few years back. I'm good now. It's all all squared away. But she said, I think you let some of this stuff allow fear to enter into your world in a way I've never seen you operate. She said, I feel like you've convinced yourself that we need the money, the status, the prestige, the security, the all of the above, what's been built. She said, I'm here to tell you we don't I don't care if we live in a cardboard box. What we need is one hundred percent of you. And she said, I don't know if you see it or not, but I see you dying a little bit inside every single day. You live in insurance. And and so she said, I think you're barely scraping the surface of your potential, nor do I think you have any impact on the world that you want. And then she said, you know, there's nobody on this planet I'd rather take a bet on than you. We took a big bet on you once and it paid off. Why don't we double down on that bet and see what you can do? And so, you know, this was one of those moments where I was flooded with fear, flooded with a whole bunch of emotions. And I had to spend three months really unpacking it with complete awareness, complete intentionality, understanding where my blocks were and ultimately came to the decision that I needed to embrace the pain of walking away from the easy button, from the sure thing, to avoid the suffering of not ever knowing what I could become or what I'd be capable of doing from an impact perspective.   Brian: So you fast forward to today and you know, I spent 10 months unpacking that business left at the time, the best year ever in that industry, the year I left and was simultaneously building the foundation for where we could go. And, you know, I'm not sure if I said it or not yet on this show. I think I did. Yeah, but but that's that's now where I'm so clear and convicted on this billion lives. I genuinely believe, like we've got an opportunity to to change the world and make people feel at a level that they've never felt and feel free. And so I know what that miserable, dark place looks like. I've spent a lot of my life in moments like that. No one deserves to feel that way, but a lot of people do. And right now, I feel more free, more fulfilled, happier and more like myself than I have in my entire life. Everybody deserves to feel how I'm feeling right now. And so when I started to get the curiosity, I didn't even lean into it. My wife pushed me. And she, along with my other coach, told me what I needed to hear, not what I wanted to hear, and it's not lost on me, the courage it took in my wife to take that leap of faith with me and give me the push knowing it could upset her entire lifestyle. And so that's what I had to honor because my kids are watching, I don't want my kids to see me do what I want my kids to see me do what's right.   Joe: Incredible. I love it, so your podcast, what are there, is there are there three, is that   Brian: You   Joe: Right   Brian: Know what, I actually   Joe: Or.   Brian: Don't even have my own yet,   Joe: Ok.   Brian: I I'm in the process of developing a few. What you've probably seen as I have Bogarts Bullets, which is a regular consistent thing, but and it's going to be repurposed into a podcast. But right now it's just on YouTube and it goes on all my social channels. We have a marriage hack's string that we've started that my wife and I, we've now done we've only done one episode, but we repurpose it into three. And then my content team and strategist's decided that there are a whole lot of thought leaders, influencers, speakers in the world that create intellectual content similar to what I have for years, Bogarts, bullets putting things out, podcasts, other pieces of content to get distributed. And then there's bloggers that are much more niche, but there's nobody that's doing both. And so he's like. If you talk about how you live, you talk about these philosophies, you talk about these guiding principles, these lessons, these things that you do. Why don't we pull the curtain back and show people behind the scenes that that's actually how you operate. And so those are the three things that you've probably found is bogus bullets, the marriage tax and then the No Limits blog. And all three of those, although they're not currently set up as podcasts, one of them will be repurposed that way. And then I'm actually in the process right now. I'll be a co-host on at least two podcasts. We're going to be launching here soon, likely three if this other concept takes off. The podcasting world has kind of changed my world in a lot of ways, in a way I never saw coming. And I've been on over one hundred and fifty other people shows in the last seven, eight months, and it's allowed me to have opportunities to meet people like you. Right. And the connection with Ken Joslyn and Steve Sams. Right. Which both were people that I was on their platforms, on their shows. Like it's allowed me to align myself with incredible individuals on this planet so that we can truly have collective impact. So those are the three shows that currently exist. But they're not podcast currently.   Joe: Got it. OK, so you have things coming up, I know that you're doing the Ken Joslin's   Brian: Yep,   Joe: Boot camp, right?   Brian: Yep, yep, I'm doing his boot camp in April, I've done two of his I've got some other speaking events coming up. And then we've also got a few things launching that I'm really excited about. So we're still doing all of our work with no limits university, which is really like the concepts and the philosophies to help people understand who they are, leading them on intrinsic journey. But we also have another entity in a movement that's called Who before what that's launching as we speak, which is really an attempt to help us change the language and narrative in society about putting more emphasis on what we do versus who we are. And it's not that one or both don't matter. It's that they both matter. But one needs to lead, which is who. And so we're going to change the narrative because it's this whole idea that you go to a networking event. And the first question everybody asks is, what do you do? And even if you asked who you are, like, tell me who you are. Ninety eight percent of people answer with what they do, not who they are.   Joe: So   Brian: Part of the   Joe: True.   Brian: Pain and suffering that exists on this planet, as so many people don't know who they are. And so a lot of the core of the work with everything we do with our coaching and the No Limits university and those things are all about that. But we're actually creating a specific movement to bring into conscious awareness this idea of who needs to be before what.   Joe: I love that is the university and the who before. What are they separate from your actual coaching piece   Brian: They're   Joe: That you   Brian: All   Joe: Do   Brian: There, it's all kind of integrated,   Joe: Ok?   Brian: So, yeah, my my I would say my one to one coaching is the only thing that's kind of outside of that umbrella. It all fits on the same coaching philosophies. But just with the people I work with one to one, it's it's just inherently different than the other structure that we have. But it's the same philosophies, what you'll know about me and a lot of what we do with the no limits you and everything is this idea that we truly have the ability, if we are aware enough and influential enough to build a life of alignment that can become self-regulating. So for me, I'm very clear on who I am. I'm very clear on where I'm headed. I'm very clear on the impact I want to have, as well as the hierarchy of importance in my life. Family being first. Right. After that, because I'm so clear, everything I do is in alignment with where I'm headed. So when you ask the question, are they all, yeah, they're integrated because they're all holistically apart and in alignment of where we're going to impact a billion lives. How those are translated look a little bit different. But they are all towards the same intent, which is to impact a billion lives.   Joe: So it's the YouTube channel, it's eventually some podcasts on their way. It's but no limits university. There's the Who before what portion of that? There's the coaching, which is one on one with you. Correct. Speaking engagements. When when? I mean, obviously, you still do it virtually, but you're actually going to be live at that bootcamp coming   Brian: Yep,   Joe: Up in   Brian: Yep.   Joe: April. So as that opens up again, I mean, when I watched you on the Growth Now summit, which I attended, your portion of, it was brilliant. I   Brian: Oh,   Joe: You   Brian: Thank   Joe: Know, I   Brian: You.   Joe: Just said, I mean, you're an amazing speaker.   Brian: Thank you.   Joe: You're just not talking to us. But you bring people in to the story.   Brian: Thank   Joe: And   Brian: You.   Joe: I just   Brian: Thank   Joe: Sat   Brian: You.   Joe: There and I was like, oh, this is unbelievable. Like, I would have paid thousands of dollars to   Brian: Thank   Joe: Watch.   Brian: You.   Joe: So it   Brian: Thank   Joe: Was amazing.   Brian: You.   Joe: Did I miss somewhere on your website? Because it's just so much on there. I can't figure out.   Brian: No,   Joe: But   Brian: You   Joe: Is   Brian: Didn't miss you didn't   Joe: It.   Brian: Miss anything. There's going to be new sections actually built on the website, Zoom. Let's put it this way. You listed a lo

The Joe Costello Show
David Meltzer Interview - Be Kind To Your Future Self

The Joe Costello Show

Play Episode Listen Later Mar 10, 2021 21:34


David Meltzer Interview - Be Kind To Your Future Self I was a true honor and thrill to have David Meltzer on my show. He inspires me and I love his approach to life. I look forward to creating a genuine relationship with him in the years to come and being mentored by him as well. David Meltzer is the Co-Founder of Sports 1 Marketing and formerly served as CEO of the renowned Leigh (“Lee”) Steinberg Sports & Entertainment agency, which was the inspiration for the movie Jerry Maguire. His life's mission is to empower OVER 1 BILLION people to be happy! This simple yet powerful mission has led him on an incredible journey to provide one thing…VALUE. In all his content, and communication that's exactly what you'll receive. As part of that mission, for the past 20 years, he's been providing free weekly trainings to empower others to empower others to be happy (held each week at 11AM Pacific Time).  Link to Register: https://dmeltzer.com/training David Meltzer Co-Founder of Sports 1 Marketing formerly served as CEO of the renowned Leigh (“Lee”) Steinberg Sports & Entertainment agency, which was the inspiration for the movie Jerry Maguire Website: https://dmeltzer.com/ Weekly Free Trainings - Fridays 11am PST https://dmeltzer.com/training/ Instagram: https://www.instagram.com/davidmeltzer/ Facebook: https://www.facebook.com/davidmeltzer11 LinkedIn: https://www.linkedin.com/in/davidmeltzer2/ Twitter: https://twitter.com/davidmeltzer YouTube: https://www.youtube.com/channel/UCflt1OopRWIApMOjVgZyJ6Q David's Podcast - The Playbook: https://www.entrepreneur.com/listen/playbook Text Community: (949) 298-2905 Email: david@dmeltzer.com Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.libsyn.com Subscribe, Rate & Review: I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to: https://joecostelloglobal.lybsyn.com Follow Joe: https://linktr.ee/joecostello Transcript Joe: So my guest today is David Meltzer. I've been very excited to have this interview and I can't wait. So, David, welcome so much and I appreciate you coming on my show. David: Oh, thanks for having me. I appreciate any opportunity to share a message on your platform to help other people make money, help people have fun, be happy. Joe: I appreciate it. So is it really weird if I tell you that I love you? I mean, I love if I start the interview off that way, that I love everything about you. I'm so glad I found you. For me, you are the the full package of someone that I look up to all that you do, your humble, your kind. When I see you on your live videos and you're talking with people, you can see the emotion that's there. It's just hard to find the whole package like that. David: Well, it takes years of work, internal work to allow yourself to love yourself, and they told me that if I could ever learn to love myself and I'm still on the journey, that more people would love me. So it's not weird to say that it's we're connected. We're connected in those people that feel me that here and listen to me. And it moves them just there's a clear connection between us. The tree has no branches. So I am well adjusted in the fact that I take it as a huge compliment. If anyone says that to me that I'm doing the right work internally so that other people feel the same way. Joe: I actually wrote down different notes, one of them is kind of your future self, I'd like you to explain that. David: My favorite could ever be kind of your future self is a perspective of finding the light, the love and the lessons, the super power and everything, so many people, they look for what they don't want. They look for what's missing in their lives. They look for what other people want for them, and they're not being kind to their future selves by doing so. When you look for the superpowers and others in yourself, when you look for the light, the love and the lessons, your being kind to your future selves. And people ask me, well, how how do I do that? Pragmatically, David and I have a simple, pragmatic methodology, which is do good deeds, smiley people wave out that my wife still thinks I'm a complete kook? We go walking, hopefully every day we go walking together. It's one of the things that I do is an adaptable routine to make sure I spend a minimum of time with my wife, but I'll wave and everyone. And so, you know, that person know she looks at me like I'm absolutely insane. But to me, that's being kind to my future self. And you never know. I'm telling you, so many people have told me that I've impacted their lives because I've had that perspective one word at the right time or one action of letting someone in front of you at the grocery store. There's a woman that sit there and go, she had babies and she had items. And I just, you know, I'm on a coaching call. What's the difference about doing it in my car or in line at the grocery store? I let the lady before me. She turns around in tears. I was like, Are you OK? She's like, No. She goes, We moved here and we thought we had to move back. And I told myself, if I don't find somebody, you know, to show me that kindness that I was going to think about moving back. And there you were. And I was like, that's what we do. That's being kind to your future self. And all that impact aggregates together to change the world. Joe: One of the other things that I wanted to ask along the same lines is, are you a believer of we are where we are supposed to be? You know, the thing that people say, you know, the universe delivers when you're ready. And I just thank God, doesn't the universe have more for me? I want to live a much bigger life. That's why I completely look up to you. And I aspire to what you do. And I just feel like I just turned fifty nine in February and I'm like, God, there's got to be something more. I want more. I want to live a bigger life and I can't believe this is all the universe thinks I deserve. David: Yeah, so the paradigm that needs to be shifted is, yes, I believe that we are at the right place at the perfect time, that we have everything we need or we wouldn't be here. But I also believe that we need to live in the Law of GooYa and the Law of GooYa. Get off your ass. John Assaraf taught me that and he was explaining first time I met him, you know, he I started to read the law of Attraction, thinking he would dive deep. And he said, whoa, whoa, whoa, whoa, whoa. I really don't believe in the law of attraction. I believe a lot of Coya, which creates a frequency that will allow things to happen. And it really changed my perspective, because what I want you to think about and everybody out there is what if you already have everything? Meaning what if you already are connected to the health that you want, the great wealth that you want, and the great happiness that is yours? You talk about the minute we say that there's more for me, we actually are thinking about what's missing in our lives instead of shifting the paradigm and saying, I already have it, what am I doing to interfere with it? I stem from a belief above exactly where I'm supposed to be. I'm going to do everything I can, the law of GooYa, to angle to what I want, to clear the interference from me to what I want to come through me for others, because I'm going to give it away anyway. David: But there's much more for me because I live in a world of more than enough. More than enough of everything for everyone. It's my job not to go get it, not to think that there's something missing, but to figure out what's interfering with me and everything that is already mine. The greatest source of power, light love lessons, the greatest source of abundance of everything that is beyond our fathomable dreams and imaginations called infinity. And if I can, just for an instant every day, touch limitlessness an infinity, if I can do that through my perspective of gratitude, forgiveness, accountability and inspiration, just an instant that allows me to hopefully tomorrow have two instances where I've cleared everything out of the way and I feel that way of abundance, truly unconditional love. And so I want everyone out there to think about what is already theirs to remind themselves. Remember all these words, recollect again, knowledge, the fact that we already have it, and when we don't feel as if we have it, that it's an illusion created by an interference, usually the ego is creating that interference. And so what do we do to clear that out of the way so that all of the things that are already ours, the material wealth, the extraordinary health, the extraordinary happiness that they actually come to us more rapidly and accurately. They come through us for others in the same way. Joe: So you're saying that I by doing that, I will be able to identify what the resistance's. David: Correct. You already have everything you dream of, you're just resisting it and you're creating void shortages and obstacles between you and what you already have. Joe: I just I'm getting in my own way, is what you're trying to say in a nice way. David: So, no, I think that is a nice thing to say, I'm in my own way all the time, I'm just limited by what what I'm doing in comparison is an extraordinary way of stealing your joy. So I'm consistently trying to expand my own pipe to what I already am. And as much as I can see where you have that perspective of, there's so much more. Why don't I have it? That's the world of not enough. And I live there for a while. I know what that's like where you become a victim, where there's not enough of anything and you should have more. And why do they have this? And I don't have this. And then even the world of for me, you know, everything's for me. And I lived in this abundant or supposedly abundant world where I bought things I didn't need to impress people I didn't like creating more resistance in my life to teach me even more valuable lessons. But I try to spend only minutes in moments and interference instead of days, weeks, months and years. And I live as much as I can in the pursuit of a world of more than enough of abundance, where I truly believe that infinity is my possibility. Joe: So I read about in your book, so I love this book, and I bought 10 copies because I want to share this with people I care about. And I read in there about how you talk about meditation and manifestation. And the really cool thing was the point where you say you get up and you meditate at and you said in the two a.m. and four a.m. time period is when there's less vibration around. And so the four a.m. time slot for you is really important. So if meditation was taken away from you for some reason, just hypothetically, what would that do to you or what would you think that the importance of meditation in your life is? David: Yeah, it would it would diminish my capacity to plateau and grow, it would diminish my capacity to have a baseline in which I can recognize, recollect, remember my highest frequency so that I know when the ego based consciousness is that I have are interfering with me and what I want or what is already mine. And so I think without the practice of being quiet, it would be more difficult to expand, grow and accelerate at the pace that I do to spend minutes and moments and ego based consciousness instead of days, weeks, months and years. It's a very essential time. Is important is meditation is to me, so is the shift in the paradigm that I've utilized for my time in all of the things that is not in to goodness, that has evolved from connected to goodness. The book that you have is that I have a philosophy about my days. My tomorrows starts today. So where everyone gets excited about tomorrow, that means 9:00 PM to me. So I've shifted the man made construct of time. I know it screws up my wife in the calendaring because I'll say, Oh, I can't wait for tomorrow. And then my tomorrow starts at 9:00 p.m.. And the reason it does is that it shifts my entire perspective of life, that I have an unwinding routine to start my day, that my day starts at its highest frequency at nine p.m. David: I then put my mind, body and soul in the right position to recover at the beginning of the day, to recover physically, then to allow the greatest flow of connection with the least amount of resistance to start my day, which is sleep. Sleep is the physical, natural realm of being able to get out of your own way. And so to utilize nine p.m. is the beginning of my day to set me up for what most people call tomorrow. But now I call it tomorrow. Today is extraordinary because then leading into four a.m., I'm now at my physical recovery of the highest vibration. But I also have elevated my awareness through less interference between subconscious and unconscious connectivity to the greatest source of light, love and lessons, which leads to what I call the plateau and growth methodology of life. So you're not living and can move the stranger's myth of Sisyphus pushing a boulder, which I live many years of my life feeling this way, pushing a boulder to the top of the hill just to start over in the morning. My tomorrow starts today. I think the nine p.m. and routine is equal to, if not greater than importance to the practice of being quiet. My for a meditation for twenty minutes. Joe: And what does that 9:00 p.m. unwinding look like? David: So for me, it's understanding negative energy, so temperature wise, for me, it's sixty seven degrees so that I'm in a state of temperature that allows for the most physical recovery dark, no negative conversation, no negative content, disturbing content. Everything to me is to whine down, no eating, no drinking, no drugs or alcohol, obviously, which I laugh at. But there's plenty of times, believe me, after nine o'clock, that I was partaking in things that were interfering with what was the most essential time for me to connect to the greatest source that has helped me to elevate my life and other people's lives. So, you know, the unwinding routine is a discipline of making sure no emails, no dams, no communication outside other than the intimate conversation with me in my family and I regulate. If someone brings up, you know, I want to quit college, that conversation is not going to be had at nine o'clock. I do have an adaptable routine. You know, I have my priorities. I take inventory of my values. So if there was an emergency, you know, somebody either my my health or my family's well-being, then that would take priority over the unwinding routine. So I do have an adaptable routine. So I'm not like some strict robot. You know, my daughter is like, oh, well, I need you. Nope. Sorry, it's nine or five. I'm not here. I can know I'm a human being. I prioritize my family. But I will tell you that I feel differently in the morning when I allow interference to the beginning of my day. And I can definitely feel the difference. And once again, I'm blessed because minutes in moments is all I'm spending there lately and very few days. Do I have to even implement my adaptable routine? Joe: So if someone comes in contact with you via, let's say, social media and I don't even know how you keep up the pace that you do with the live videos on Instagram and Facebook. And I have a question about Miles that I want to ask you before we finish up. Are you getting to bed at 11 like it mentions that in the book? Are you actually only sleeping five hours? You're getting about 11, getting up at four for meditation. David: So this is the great Dave Meltzer lie that I wrote and connected to goodness that Joe: Ok. David: Pissed my wife off because my wife has rolled her eyes at this question more than not, because she's been the victim of me passing out at nine or five, nine thirty, ten o'clock. I mean, if I was more honest when I wrote that book, I would have said I have unwinding routines starting at nine. I must be passed out by 11 and there are many road trips to hundred of them. A year before covid where I was pushing myself because I didn't have the family aspect of being on the road. So I pushed myself and make sure I was passed out by 11 p.m. Pacific Time. But most of the time I've passed out before 11, so somewhere between five, five and seven hours a night. So I would say I averaged six. But there's many times I've gone months and months and five hours. I prefer it's it's interesting because physically I'm getting in better shape. So I was just talking about Mondays. I take my day off of physical, hard, physical exercise and I do yoga stretching balance. And so I've been finding that I wake up at two thirty to three if if I fall asleep too early just because I'm pushing myself, I pass out at nine thirty. Now I only go to thirty. So I just need the five hours. Today was one of those days like driving everyone in my business crazy because they woke up with one hundred emails. Joe: So I want to know if I can steal your bunch or make a lot of money, help a lot of people and have a lot of fun. I love that. Is that OK to steal? David: Absolutely Joe: It's totally. David: Share Joe: I love it. David: Share my concern and do good deeds. Please tell everyone to make money, help people have fun as part of my mission to empower over a billion people. And the more you tell people, hey, this comes from my mentor, David Meltzer. Join him for his free trainings, books, exercises, guys, whatever I can do, please share that message, because that's the definition to of happiness. If you make a lot of money and you help a lot of people and you have a lot of fun, I promise you you'll be one of the happiest people you've ever met. Joe: I love it. OK, I know our time is limited, I could sit and talk with you all day. I have a question about Miles is David: My son. Joe: Is yes. Is he going to be it seems extremely knowledgeable about sports. When I spoke with one of the Instagram where you and he was sitting on your lap and you were doing a Sunday morning and people were rattling questions off in the comments and he seems to be a sports fanatic, what's he going to what's he going to be when he grows up? Does he know yet? David: Whatever he wants, he knows that three things he knows that I tell him every day. Number one, I'm proud of him to that I love him. And three, I always have his back. I tell him I need four things from him. I need one him to be happy, too. I need him to be healthy. Three, I want him to love me. And four, I want him to appreciate me, meaning that allow me to bring value to his life. So those are the three in the fours. And then whenever we do activities, I always tell them we have three objectives. When we do activities together, whatever they may be, he has to do his best. He has to have fun and he has to learn at least one lesson. So if he does his best, has fun and learn the lesson following all the other constructs or whatever it is he is in, what he loves to do, it will find and it's already there. And he is extraordinary by all my four kids. I'm blessed to become even a better father now than it was. But I'm blessed. They have good genetics, which helps. But they also have really good mindsets and hard assets to follow the quantum genetics that they've been gifted with. Joe: Well, they are lucky to have you, David. This has been such an honor for me, I can't even begin to tell you. Thank you so much for your time. And I hope our paths cross someday. I would love to meet you in person. And thank you so much for doing this. David: Come visit me. You're welcome every Friday for my free trainings, we have a studio where covid safe if you want to wait till after. You're always welcome to come visit me on a Friday Joe: Thank you so much, David.

The Joe Costello Show
Brad R Lambert - Producer, Talent Manager & International Speaker

The Joe Costello Show

Play Episode Listen Later Feb 24, 2021 76:01


My conversation with Brad R Lambert was a complete joy. To see someone so successful living in a town where egos can definitely get in the way of being human, Brad is a shining star. We had a real life conversation involving real life circumstances and in the end, empathy, love, comparison and the want to help others, trumps all. Success has not ruined this young man and he is an example of what is very right with the world and how he plans to love his life and leave his legacy. Enjoy, Joe Brad R Lambert: Producer, Talent Manager, International Speaker & Author Website: https://www.bradrlambert.com/ Instagram: https://www.instagram.com/bradrlambert/ Facebook: https://www.facebook.com/thebradrlambert LinkedIn: https:https://www.linkedin.com/in/bradrlambert YouTube: https://www.youtube.com/c/BradRLambert/ Email: brad@bradrlambert.com Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.libsyn.com Subscribe, Rate & Review: I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to: https://joecostelloglobal.lybsyn.com Follow Joe: https://linktr.ee/joecostello Transcript Joe: Brad, thanks so much for joining me on the show. I really appreciate it. I'm so looking forward to this conversation with you, Matt. Brad: It's great to be here, thanks for having. Joe: So I want to start I always like to get the back story, because I really think it helps people know the person and become more familiar with where you came from and where you are today. And so if you don't mind doing that, that would be awesome. Brad: Oh, of course, I am from Pittsburgh, Pennsylvania, so I'm actually from the East Coast, was born and raised in the Steel City, spent some time in North Carolina as well in Charlotte. I went to college at NC State, but I started really working, working when I was like 16, 17, 18 years old. You know, I had the traditional jobs of, you know, working at a sandwich shop or a movie theater. Like I worked at a movie theater all through high school and college for side income. And that's why I really fell in love with movies. So we'll get to that. But working working wise, I really found my entrepreneurial self at that age. I was very passionate about sports, so I wanted to be a part of the sports industry in any way, shape or form. Specifically, I wanted to work directly with my athletes, the guys that I cheered on Sundays and Mondays, now Thursdays, you know. So I wanted to provide whatever value I could for those guys. So I was able to get connected to a few of the Pittsburgh Steelers. And at that age, I was, like I said, still in high school so that the age gap between me and a lot of these athletes was pretty significant. So the disconnect was there, but I had to prove myself and build that trust and credibility through my actions. So I learned very quickly how to connect with high level people at a young age, and that was by building genuine relationships and adding whatever value I could to benefit them both personally and professionally. So, you know, simple things like, you know, later on down the road, it would be like, hey, man, I'm in Arizona training. Can you swing by my house and move my car for me? Yeah, dude, I'm around whatever Joe: Right. Brad: You need, you know, or, hey, help me with this massive campaign endorsement deal, whatever. So I had a range of things that I did for these guys. But at the start of it, it was at the the initial beginnings of Facebook and social media. So these guys didn't understand how to utilize social media to benefit themselves. And I had been playing around with it for a while. So I saw the opportunity. So I was able to then bring that knowledge and expertise to the table to help establish these guys on social media, help with content creation strategy, etc.. So through high school, I worked with these athletes and some agencies just do my own thing. Then all through college, I actually worked with a marketing agency while I was at NC State. So I was basically full time with the agency and doing school at the same time. So it was such a great experience because I had, you know, got in at the right time with this agency, proved myself and that I was going to New York City almost twice a month, sitting down with Fortune 500 brands in these, you know, Penthouse suites in New York City. And it was my job to sit there and be quiet, that that's what I was told. And that at the time made a lot of sense. So I would just sit there and soak up the room, all the knowledge, all the exchanges, everything. And a funny nickname I had was these guys were just so used to me sitting there very stoically and just listening. Now they're like, who's this silent assassin? Like, who is this? You know? But I was just following directions, you know. But now, obviously. Joe: And what what year was this? Sorry to interrupt, I just want Brad: No, Joe: To get the timeline. Brad: Not a problem, I mean, freshman sophomore year of college, I was working with this agency, maybe even through junior year, I'm not sure, Joe: Like Brad: But I was young. Joe: What year, what year, like. Brad: Oh, I. She's 20, 21. Joe: That's how old you are. Brad: Yeah, so I was 2009, 2010, maybe, so I was I was young and it was started college for me, so I was, you know, doing school work and then doing work, work and then traveling and doing both. And it was just such a great experience for me because it got me ahead. It put my feet to the fire and challenged me at early age, which I love. Like I'm fearless in that regard. I'll try anything. I'm not afraid to fail. At worst case, I learn one. I'm not good at it, or I learned how to do it a different way. So, you know, I'm not really caught up in those elements of what if I fail or, you know, I'm like, screw it. I'm just going to try. And if I fail, so be it. I'll learn and move on, you know, and be better because of it. So, you know, with that experience, man, like, fast forward to, you know, after school and I moved back to Pittsburgh to work with a sports agency. And then eight months later, I was out in L.A. working with Robert Downey Jr. and his team. So those elements of that experience from high school to college, where I was working with high level celebrities and professionals and entrepreneurs and things like that, it didn't bother me. Brad: So, you know, being in the same room with professional athletes or celebrities or talent like Robert Downey Junior, it doesn't bother me like they're just like us. They're just normal people. They just have high profile jobs and lives in general. So I'm able to build that trust and that credibility because, one, I'm not a fan girling, you know, in front of these guys and to it's it's all business. I want to have a genuine relationship with these people. So it's not about, you know, hey, what can you do for me? It's about what I can do for you. And my scale of giving and receiving is so far skewed and giving. And I'm not complaining. I'm just stating a fact. That's how I live my life. And I'm so happy because of it. The relationships I have are just mind blowing. I mean, just from status and success and, you know, credible people as well, as well as just good people. At the end of the day, that's all that really matters to me, is like you could be the most famous successful person in the world. But if you're not nice or kind to other people, I don't really care to associate with you. And I've had to cut off some big fish, but I don't care. Brad: Like, I really don't want to surround myself with that negativity, that ego or that hate. So my circle is very specific about who I associate with and who I call a friend and family and so on and so forth. So. You know, I moved out to L.A. and got my feet wet in the entertainment industry and going back to what I said earlier about working on a movie theater, I was the guy rep and tickets and cleaning up popcorn and stuff in high school. And I fell in love with that, just going to the movies. And, boy, I can't wait to go back when it's safe to do so. But, you know, that's where I fell in love with all the different genre of film, because before I worked at the movies, I was like, oh, just action, you know? But then that opened up my palate, rom coms and dramas and the horrors and literally everything, thrillers like thrillers. So now I have an appreciation for all different genres of film and that whole process. So coming out to Los Angeles, I wanted to pursue film, TV and entertainment as a whole. I never wanted to be the the actor, you know, BSR. That was not my my goal. I always wanted to be involved at whatever capacity. Brad: So I brought my marketing, my business background out here and that's what got my start. And I really started to find myself out here. After working with Downey, I went to Warner Brothers and I was managing the marketing campaigns for TV, film and catalog titles. So that experience really helped me find the producer in me because I was given task with large budgets. I had to collaborate with different agencies and teams and then flex my creative and business muscles to get stuff done. And that was me managing those very high level campaigns for Warner Brothers. So for me, that was like as a producer, you have to have a good balance of business and creative. And that that was me and I really was like, wow, I can do this. So I actually went on to executive produce my first film, which was a horror film I helped raise. I think it was between three to five million dollars, which I'd never done before. So that was just I was grateful to be a part of that project. And just once again, someone threw me an opportunity instead of being afraid of failing or oh, I don't know how to do this. I was like, give me a few days and let me see what I can muster up. Like, I don't know what I'm doing. Brad: I'll figure it out. And I ended up making a bunch of calls and connecting dots, and we were filming a few months later. So it was just to be a small part of that project and kind of have that experience now moving forward with the other stuff that I'm doing from music videos to commercials to I have a full slate of films right now that I'm working on getting funding for because they're all independent. I'm taking calls with voices and, you know, investors and things of that nature. So once again, that early experience. Pays dividends, you know, so waiting for the perfect time to to try things is not always the best route to take. You know, if you can start early while your competition is not, I think you'll really get an edge for yourself. And I am by no means you know, where I want to be yet. But the progress I've been able to make, and I'm only thirty two. So I'm I'm I feel the momentum. I feel myself coming together and who I am and what I'm about and the people I surround myself with and I'm just grateful for. And they inspire me and they need to be better each and every day. And I couldn't ask for anything more. Joe: That's incredible. So you're going to have to forgive me, because I know the part about this that means a lot to me is helping to educate the audience on how you become the type of person that you are that a lot of people want to be where they have to put one foot in front of the other and actually go through the stuff and not overthink it, not over planet. So I'm going to pull you all the way back to high school because I know what I was like in high school and I just I played soccer. I was interested in girls. I, you know, whatever. I never had the focus that it sounded like you had. So my first question is, did this come from your parents? Was there something that they instilled in you to say, hey, Brad, you can go out and do anything you want, just go and you just going to ask, how Brad: Yeah, Joe: Did that happen for you? Brad: Well, it's funny to ask that is so spot on, you'll laugh, but my mom always said if you don't ask, you don't get. And that has stuck with me from day one. She she's always been my biggest supporter. I love her to death. Obviously, you were a part of the Growth Now summit, but she was there. So Joe: Yeah, that's right, it's. Brad: In one of my she's my biggest supporter and I love her to death. So she's inspired me in so many ways. And, you know, so, yeah, she definitely pushed me. But I would say, you know, I was wired differently, you know, just in a sense of I was a dreamer man. Like, I, I always swung for the fence, whether it was asking out the the hottest girl or, you know, trying to get the biggest opportunity or whatever, you know, I didn't care. I was like, you know, my standards for what I wanted. You know, I didn't want to talk down to myself or limit myself of, oh, I could never accomplish that. Like, what kind of mindset is that? You know, I would say if you're not challenging yourself, you're never going to know what you're truly capable of. And each and every day I'm constantly stepping into something that I never thought was possible. Like I just got approached with an opportunity that wasn't even on my radar, not even remotely maybe down the line, but it was thrown in my face three weeks ago. And I've had to be scrappy and jump on the opportunity. But I wasn't planning on it. But I also was not going to be like, I'm not ready for this or now talk to somebody else. I'm like, I'm going to give it my all and it's either going to happen or it's not, you know, and that's how I look at things. So, you know, I'm fairly confident in that. And that project I was just mentioning, it's come along nicely. But what's cool about that project? I'm not going to dive into details, but I was approached for me. Brad: Get this done, but instead of looking at it like me, me, me, lalala, I was like, you know what, I'm going to bring in some heavy hitters and we are going to win together because including then we'll take away some stuff for me, but everyone will benefit and the project will be that much better because of it. And I want I want that to be very clear, I could have done this by myself as I. I could have done a good job, but it wouldn't be what it is right now if I didn't include these other heavy hitters, so it's having that selflessness to step aside, right. And say, you know what, this is what it is, I'm going to I'm going to bring in people I care about, people who I have a lot of respect for, who are so talented in their own right that are going to really complement what we're doing or what we're trying to do. And man, the the the masterpiece that we've kind of put together for this project, I'm so excited about it. But once again, I could have taken the ego approach to made it all about me. And I was like, no, I'm going to bring in the squad and we're all going to benefit and when because of it. So it's just that kind of approach where it's like, you know. Am I trying to just get it done or am I trying to go overboard and do the best job possible? And a lot of people want one hundred percent of the credit, whereas not many people are OK with 12 percent. Joe: Something great, as opposed to one hundred percent or something semi, you Brad: That's Joe: Know, Brad: Nothing Joe: I mean, right, Brad: Once one hundred percent of nothing. Joe: Right. Brad: I mean, that's that's the reality of it. So a lot of people only want to think of themselves or they want all the limelight and they want all the shine and credit. And it's like, look, at the end of the day, nobody gets anywhere by themselves. And people who say otherwise are either insane or they're egomaniacs to the point where it's like there's no talking to them. They just they are who they are. So for me, it's like I never want to be put in that category. I think ego is one of the biggest turnoffs up in general and to it's one of the biggest inhibitors to success, growth, relationships, period. And being in Hollywood, I'm sure you can imagine the egos that exist here. And it's funny from people who have no right to have egos here have egos. So it is it's fascinating to me where, you know, I'm from Pittsburgh. It's a blue collar town. It's a hardworking town. It's a good town. The people are kind. They're giving, they're generous. And, you know, so coming out here, I was very much an alien in a way because I didn't subscribe to the norms of L.A. and the behavior and the competition and the wild, wild West nonsense. And, you know, I didn't get along with people who who played that game because I'm not going to play that game. I'm not going to cut somebody's legs off to to win. That's just not who I am. So that's what allowed me to kind of separate myself and find myself and find my lane. Brad: And, you know, there are consequences to your actions and how you treat people. And in this business, they always come back around the person you screw over. Now, I guarantee you you'll see them in five years. That's just how the business is. Unless you leave the business because it's not for you and you fail, you're going to see him again. So you need to treat everyone with respect and kindness. You may not like them, but that's not a requirement, right? Like there are a lot of people I don't like in this business, but I still will treat them with respect and kindness. I don't have to like them. You know, I wouldn't have to be friends. We can be acquaintances, professional. Relationship, but aside from that, like we're not going to be grabbing a beer, watching football, like that's just, you know, that's not. But everybody, once again, they're still like this with so many aspects of their life, just like this, where you need to widen. That view and why, in your mind and your horizon to the possibilities of not just what you're capable of, but looking at situations differently, like I try to plan five to 10 moves ahead if I do or say this, this, this and this is going to happen, you know? So it's it's it's mental chess in a way of understanding how, you know, things move, how things operate, how people move and how people operate and everybody's different. Brad: But if you can understand, you know, interpersonal communication and kind of get a good read on somebody, you can understand the ebb and flow of conversation and their actions. People are very stuck to patterns. They behave a certain way and they rarely change. So if you can identify that pattern and how they move and how they speak and things like that, you're able to kind of ride the wave in a way of like, this is how this person is. I got to kind of change chameleon wise to to be able to deal with it and make it successful because we can't just stay the same core values. Yes, stay the same. But in regards to, like, how you communicate with certain people, some people, you got to have the most amount of patience in the history of time. Other people, it's like it's so chill, like it's a chill work environment. Whatever other people you have to really kind of be on them to to make sure they're getting whatever tasks done. And so everybody's different. But you have to you can't just stay the same person with everybody. You have to understand that each each everybody's different and you have to kind of change to best suit that like a puzzle piece, because if you don't. That's where the issues happen. You know, you're not the way I want you to be, Joe. So we're going to have problems Joe: Ok. Brad: Like that. That's not how it works. But put a lot of leaders are like that where it's like you don't fit what I want. You're out of here. You're not a brainwashed zombie. You're out of here. And trust me, I've had so many experiences like that where it's like if you have an opinion, if you're your own person and it's the way the business is, it's the wild, wild West. And I will say this, those people make it far very quickly, but long term, you know, fall on their face. Joe: So and that's what attracted me to you in that that Growth Now summit. I heard you talk and then I started looking at all that you've accomplished at the ripe old age of 30 to Brad: Thank Joe: Like Brad: You. Joe: I was like this. He is the most humble person that I've seen with the accolades that you have. And I just was like, got to have to talk to this guy because I just turned fifty nine. And there's many things I want to do with my life. I didn't do all of the things the way. I mean, I don't like I don't want to say regret, but I definitely feel like I have some regret because I just didn't if I don't know, I've always had really high goals. Did I work as hard as I should have on all those things? Probably not. So I take all of the blame. But I just think that I want to surround myself with people that even now, like, I could just say, well, you know, it didn't work out. I'm just going to just going to do it constantly. I think a big motivator for me with this podcast when I started it almost a year ago was I want to be around people that are successful, people that through me and these conversations can spread the word of what they did to make things like this happen. And so, yeah, you you definitely had to be wired different. The fact that a in high school, you were doing all that you were doing and then again in college, college is like, wow, I'm finally out of the house and I'm just going to I'm going to do as little work as I can and I'm going to have a great time. Brad: Look, Joe: It's just Brad: I Joe: It's. Brad: Don't think I went to one party in college, I'm Joe: I Brad: Not Joe: Know Brad: Getting. Joe: It doesn't surprise me. It sounds Brad: I Joe: Like. Brad: Just I had no interest like the the one to one exchanges and the nonsense now I had fun in my own way, but like I just that college, like it just didn't it didn't appeal to me. But I was also so busy on the other things that I was trying to do. And I saw the potential and the benefits of the things that I was doing. I actually stepped away from school for a year because that marketing agency opportunity was thriving so much. Where I'm in these boardrooms at Fortune 500 companies, I'm like, why am I still in school? You know, like and so I took a year off and I went all in on this marketing agency and the experience I got out was crazy. And I ended up finishing school online. But it was like that's the kind of real world experience that, you know, I had a conversation with the young lady the other day in Canada. And she's like, how do I how do I get to where you are? And I was like, what are you doing right now? You took the time and the effort to to follow up with me on LinkedIn. And we finally found a time to talk. And I'm giving you 15, 20 minutes to talk. And however I can help you, I'm going to do it. And she was just very laser focused, right, on what she wanted to get out of this conversation. And I was like, your hustle, your focus. Like, that's going to get you really far. Brad: And now you just have to act on it. You can't worry like it's like sales. You're going to knock on two hundred doors and you might get one or two answers. But the second you're about to quit that next door might be the one that changes your whole life. So that's why it's like you just got to keep going. You've got to ignore like there are things where I have an opportunity, biggest opportunity ever and I'll just like I'll do what I need to do. But then I move on. Like, I'm not waiting or dwelling, I'm just like next, you know, that's not something that I, you know, I don't want to waste time because it's out of my hands. Once I do what I need to do, I hand it off and then what will be will be right. So I'm not going to sit here and and be kind of bent out of shape of, oh, my gosh, I haven't got one. Yes. Like I've got so knows I've lost count. But that is what we need to do. Like we have to persist, we have to keep going. And that's something that a lot of people aren't like. Some people can't handle failure and I get it. But at the same time, like you're capable of more than you think, you just have to rewire how you look at things. Once again, it's not you're a loser, Joe. You failed. It's that opportunity wasn't meant for you. And what did you learn out of it? Well, that changes the whole game like that, I don't feel like a loser, right, because I did it when, you know, when I win, I learn. Brad: When I lose, I learn. But I don't look at it is like, wow, I failed, you know, just like look. And if anything, it's another chip on my shoulder, right. Somebody passed on me. The opportunity didn't work out, whatever. But like a great example is what's right behind me right here. This this poster of Avenger's, a game that's signed by the entire cast. OK, I'm a huge nerd. I love pop culture. I love film. I love TV. I love comics. I grew up with these characters. So to be able to work with a guy like Downey, you can imagine how awesome that was. So I wanted to work for Marvel after Downey. I went to Warner Brothers and at Warner Brothers, I was working on all these IPS and campaigns and titles that I loved. And I was like, this is so much fun. I would die to, like, go to Disney and do this for Marvel. I have to do this for Marvel. So I tried. I tried it, tried even it down. I tried to get a job at Marvel and I came second place. And then when I was a WB, I had, I think, two tries where I came second place. And I was just like, oh, it's not it's not working, you know? And a lot of people would have just given up on that dream. It's never going to happen. Brad: I'm never going to work for Marvel, never going to work for Disney. It's just not meant to be. All right, fine. So I'm going to create my own path. That's why I did I was doing my own thing. I was producing, managing, consulting, and I brought value. To Marvel and Disney put this collaboration together with one of the biggest artists on social media, and he designed this incredible artist, so freakin talented, but the goal of working with Marvel and Disney right there. So I went from failing multiple times, not giving up and then working on the biggest movie of all time, being a very small piece to that campaign. And that's something like like I said, it's signed by the entire cast. And that's a living reminder every single day where it's like. You know, I got this tattooed on my arm, if you say a tattoo right here says whatever it takes and that's a line from Avengers and game, whatever it takes to get it done, whatever it takes, make it happen. And that's that's right there, Sam, with this one, like it's like I, I don't set limitations for myself and I will fail constantly, but it's, you know, getting hit, getting back up and keep going and trying again. And what's the definition of insanity. Doing the same thing over and over again and expecting different results. Right. So when something's not working, you got to create a new path or try something else. And that's what they did. So to fail as much as I did trying to get that job with Marvel and Disney, those opportunities didn't work out. Brad: I went out, did my own thing, created my own path and ended up working on Avengers and being part of that marketing campaign. And then I followed that up with working on Spider-Man Far From Home with Sony Pictures. And I grew up with Spider-Man. So that was an unbelievable experience for me. So once again, like chasing your passions, adding whatever value you can around those passions and staying consistent and persistent with that approach. And that was my goal, like Disney, Sony, Universal. What value can I bring to your campaign to make it the best campaign ever? Like and that's how I looked at things. I look at things from a broad standpoint of, OK, there's an opportunity here. I'm going to try to fill that hole with Zouliou. You know, but a lot of people are like, I need you to tell me. What you need to do, as I know you've got to be scrappy and self starting in that regard where it's like. I followed this artist for so long, I know I knew what he was capable of, I knew he had a huge following. So working with WB, I knew I paid creative agencies a lot of money to create assets for campaigns and then they would deliver the assets and that would be it. So I was like, why not pay an artist who has almost a million followers? To do art with a demographic that's your target market, right, so the value there was way more than what it would be with a creative agency. Brad: The value was the creative agency doesn't have a million followers that they'll post and push it out. So not that Disney needs the extra million followers, but if you're going to pay for it either way, why not be smart about it and get the most bang for your buck? And that was the approach I brought creatives influencers talent to the table who could add a unique twist to these campaigns where, you know, working on them as much as I did for two years would be a lot of the content looks the same, the same countdown images, Meems, quote, images, static images, trailers, same thing. So what can we do to make it different? That's how you make it different. So it's finding those opportunities and trying to be self starting in a way of I recognize talent. I'm going to go out and get that talent and do whatever I can to help that person. So win win. Right. And that's, you know, I'm going to bring value, you're going to bring your talents and we're going to win together, that's it. You know, and that. It's that simple, but a lot of people once again, they want all the light, they want all the credit, and those are people that are really shooting themselves in the foot because at the end of the day, that's where ego comes in. And once you get sucked into that big fat ego, you're done. Joe: Yeah, again, on that that call that we did or that video that you were on, I was like, how is this guy so humble and down to earth? And it was a total attraction to me because I mean it from my heart. I grew up just a couple hours north of New York City, and I spent a good 12 years there as a musician. And I've been to L.A. doing auditions where I was the guy from out of town. And I've seen the egos on both sides of the coast and I get it. And for you to to be the way you are and be in this business for as long as you have been and still you are who you are, that's that's a you know, you should pat yourself on the back for that because that's a big thing. So. Brad: Well, I a big thing is, you know, your reputation is everything. So when you let ego come into play. You're really once again shooting yourself in the foot and your reputation will take a massive hit because of it, because at the end of the day, man like especially in a business like this, like nobody cares, like they want whatever it is done, they don't care how it gets done, just get it done. You're not as important as you think you are. That's just the way it is. So, like, why have an ego? And plus, I'm not where I want to be. You know, there's a million people better than me. Like, that's just around. I'm 32 years old. You know, how can I possibly have an ego when there's a guy like Elon Musk walking around? Right now, I'm serious, Joe: I know. Brad: I'm serious. It's like, you know, how can I have an ego when you know a guy like Gary Vaynerchuk taken over the world? You know, like but Gary is a friend, you know, so like, where's the ego come into play? To me, it's like I have so much more room for growth and learning and just continuing to grow in that regard where it's like, how could I possibly have an ego? But I also don't want the people who I'm friends with in sixth grade to be like, wow, you really turned into a jackass. I don't want that, you know? But, you know, the guy who is on the growth now said the call was my best friend in elementary school and middle school. He was in that room. And I hit him up afterwards and thanked him for I didn't know he's going to be there, but he was there and he he thanked me profusely for acknowledging his existence in the room. And he was like, you're a good dude. My best friend from elementary school and middle school Joe: It's crazy. Brad: Just said I was a good dude after all the time had passed all the experiences I've had, but I'm not perfect. You know, I make mistakes, but it's never done in a I'm better than you, you know, way. I just I don't believe in that. We may have a bad exchange. You may catch me on a rough day. We're human, but there's a difference between. A mistake and an exchange and just being a pompous ass, right? Huge difference. And there's if you look hard enough, you'll see the difference. But I try so hard to make sure every interaction that I have is a good one. And it's not just about. I got to make myself look so cool in this chat. It's like I want Joe to really enjoy this conversation and have good things to say about me, hopefully on the end. That's my goal. But if I'm here like Joe, you are a worthless dude. Like, I mean, come on. Like, it's just like Joe, you wouldn't understand. I'm in the big leagues, Joe: Right, Brad: Bro. Joe: You're right. Brad: It's just I don't it drives me crazy because I've experienced it so much with with egos on the people that I've interacted with. And it's such a turnoff where you're just like you won't even look at me in the face or you won't talk to me enough to talk to me through somebody else. I just like I don't care. I don't care who you are. I don't want to deal with that. I'm a human just like you. You're in a high profile position. That's the only difference. That's it. So, yeah, I mean, there's nothing to have an ego about. Like I'm nowhere where I want to be. Yet I've done a lot of great things I'm grateful for and and I'm continuing to build in that regard. But yeah, there's there's absolutely if you're making others feel little. Unless then you're a pretty shitty person and I don't ever want to be a person that makes somebody else feel less than ever. Joe: Well, like I said, I could tell it's just so natural for you and I'm thrilled to be here with you. So I again, I'm going to drag you back to my school. So forgive me, but I want to understand what the pivot was from you starting out with sports, which seemed like a natural thing for you to do because it's such a heavy sports town. But you so you did this, but you also mentioned that you've worked in a movie theater. So was your first love, the whole movie thing. But sports, how did you transition and are you still involved in sports? Brad: Yes, I'm so very involved with with my guys specifically on the Steelers and the Penguins, I want to I want to be a person of value to those guys, whether it's personally, professionally, whatever they need. Like I said, hey, move my car. Hey, you know, how do I get this done? Help with an endorsement deal, whatever it is. So I I'm very much still involved with sports. I love sports, but I'm a two sided coin, right. When one side sports, you have those entertainment. So I dabbled in sports initially. That was my my first thing. And I got to the point where I was like, man, I'm like 24, 25 if I don't pursue this other thing. I might miss my window, and that's when I. Had the opportunity to move out here and work with Downey and his team, and that's where I went heavy into entertainment. So but what's great about entertainment is like you could very well pull sports into it, like sports is under the entertainment umbrella. So I don't really look at them separate. Obviously, I started in sports initially, but, you know, once you're in entertainment, fashion, gaming, TV, film, music, sports, I mean, my goodness, you could everything falls under that. Brad: So it's that's what's exciting to me is when I was, you know, in a smaller town like Charlotte, I knew a lot of people. And then when I went to Pittsburgh, I really. Built a lot of crazy relationships, and once again, this is not networking, I want to be very clear, it's actually building genuine relationships with people, whether they're not famous or famous, like it's it's the same. It's consistent, but it was more of like, how can I build how quickly can I build in a bigger city like Pittsburgh? Right. And eight months I i from the top of the Steelers organization to the to heavy hitters and the Penguins organization to, you know, Lynn Swann like huge, huge names. And we're talking like personal relationships with these people. And that showed me, like, if I ever go to a big city and live in New York or L.A., I could really get stuff done. So when I came out to L.A., that was that was my goal. What can I accomplish in L.A.? Who can I get connected to and build relationships with and what could we accomplish together? Right. And I moved out to L.A. and started with Robert Downey Jr. and Joe: So, Brad: Then from there. Joe: Yeah, so before we go there, because I want to ask how that happened, and I think it's it's driving my mind crazy because I want to know how someone gets their first gig out there in a sense. And I'm not sure if that's true, but if that is true, then I really that's incredible. But with the sports figures in Pittsburgh, when somebody hears you tell this story, it's like, well, what does that mean? Ditcher, did someone in your family know somebody and allowed you to stand on the sideline what they were like? How do you get in front of these people? What's what's the connection that you used to kind of stack on all these people Brad: Yeah, Joe: That you would meet? I mean. Brad: Well, stacking on is a good way to put it, because at the end of the day, we are our own brand right now from me, starting at 16, 17, 18 years old and working with professional athletes and the Steelers. I've been around that organization since like 2005, 2006. Consistently, it's twenty twenty one, so that's a long time being around the team, the players, the ownership, the coach like. Joe: But how how did you do that, like what Brad: Well, it Joe: Does that mean, because I am Brad: Once Joe: In Brad: Yeah, Joe: Love, I have never seen it. So I go to the Cardinals games, Brad: Once Joe: But. Brad: You get once you get connected to one and back when I got connected, it was I literally was able to connect through the phone book like it was that kind of scrappy thinking that I was able to at the time. Phone books were still a thing and one thing led to another, got connected to somebody else and that was it. But, you know, now it's Deanne's or introductions through contacts, but you have to be able to introduce yourself and a wow manner. Right. So I've been building my brand since 16, 17, 18 years old. So when I run into someone or I'm at an event or I'm at training camp and I have the opportunity to say hello, I'm not saying, hey, can I have your autograph Joe: Right. Brad: Or hey, can I have a picture I can't write? Brad Lambert, you know, I've been around the team since 2005. I would love to connect any way I can help. Let me know. I mean, what more could you ask for that? That's an elevator pitch. Home, right? Right. So that was how I handled it, and it was like, yeah, I'm friends with Willie Parker, I know Hines and all the guys, you know, and, oh, OK. You know, once you have that credibility where you can attach your name to somebody else in a way that I'm friends with so-and-so, that wall of defense goes down. Goes away. Immediate because a lot of people are like, who are you and why are you talking to me when you say something like that? That wall comes down now like, oh, what's up? You're just a normal person. You're not a crazy fan. Right. And that is how you separate yourself by not acting like crazy fan. And the best example I could give is I went to training camp a lot back in the day and I used to bring a bunch of my friends. We would go and we would be on the field because of my relationships, be on the field during practice, which is amazing. And then after practice, everyone would scatter and get as many photos and as many autographs and we'd all come back like half hour later when everybody left. And would you get what you get? How'd you get that? And everyone would be like, Oh, I got so-and-so this, not this and that. And then Bobby Brown, would you get I was like at zero. No, like you had 30 to 40 minutes to get as many photos and autographs as possible on the field with all these guys. And you got zero. I was like, yeah, but I got seven phone numbers. And they're like, oh, Joe: Yeah. Brad: That's how different we were wired, right priorities, man, like I'll get autographs and photos later when I'm hanging out with them at their house. I don't care about that. Like, I want to build a genuine relationship. And you're not going to do that when you start by asking for photos or autographs. It's just not going to happen. So like Downey, for instance, I've known him for six years. But I didn't get my first picture with Downey until like 20, 19 Christmas right before the pandemic, I was at his Christmas party and it was like a five year. Window was like, it's been five years, like, can I get a photo? I would love to just close that Joe: Right. Brad: That loop. And and he was like, get over here, man. Of course, like that. Don't be ridiculous, you know? But once again, if I the first time I saw him, I ran up and was like, can we get a selfie like that? That's so annoying. The first time I saw him, I walked up to him and I introduced myself and I said, thank you for the opportunity. I look forward to working with you. You know, but Joe: Yeah, Brad: That's Joe: Yea. Brad: That's the difference. Joe: And you're very wise for your years of being, because I I was that person because I was so starstruck as like I wanted to be this touring drummer, that was my goal. I went to music school, which that's another question I'd have to ask, but I can't forget that. I have to make sure we talk about that quickly. But so anytime I went to see someone, I don't think I was obnoxious, but I was definitely starstruck. And it was it wasn't I never was thinking of, hey, I know you're in town. If there's anything I can do for you while here, let me know. Like, if I just said that whatever and walked away, that would have been. But instead, I know that I gushed and Brad: It's Joe: So Brad: Normal. Joe: And so I wasn't wired like you. But my it's changed for me a lot. So even where I am now, now it's just like, listen, I'm just trying to do good in the world and the people that can see that through me. Great. And so things have really changed in the last, I would say, a couple of months for me just because I changed my mindset. And it's a shame it took me this long to figure it out, but at least I figured it out before it's too late. So. Brad: Everybody has their own their Joe: Yeah, Brad: Own time and Joe: Yeah. Brad: Their own their own path, their own way of living. I mean, it's not a competition. I mean, I you know, my way of thinking wasn't always right, you know? I mean, it's just the reality of it. I missed out on a lot because of the way I was. I've been wired and I wouldn't change it. But it's not all rainbows and unicorns, you know what I mean? It's it's just it's tough, you know? So it's I don't want you to or anybody, for that matter to think, oh, I don't think like Brad, I failed, you know, or I waited till I was fifty nine years old to get this. It's like it's not a competition like, you know, so I don't I don't subscribe to that kind of stuff. But yeah, I mean it was the relationships are what matter. And when you deal with high level people, they don't really have genuine relationships. Because they're high level people, a lot of people want stuff, so when you come at it almost obnoxiously like, what can I do for you? How can I help? They're like, wow, this is refreshing. You know, how are you? Like, how are you? Like, who's asking then that, you know? But that's the difference, you know? And that's at the end of the day, these are normal people and they just want to feel normal sometimes. Brad: And that's what I try to give. You know, it's like let's go back to the house and play that. And till our eyes bleed, like, that's that's the kind of like normalcy I want. These guys, most of them are young man, like twenty, twenty one years old. I'm the old man now at thirty two when I was 17, 18 when I first met these guys. Now I'm the old guy so like you know, but that, that trust that I have and you know, just try to help and give them opportunities and keep them away from certain things early in their career. You know, some of them don't want to hear it. And I've lost relationships because I've been brutally honest from a professional standpoint of like, yo, this is not this is not a good move for your brand and your business moving forward. And some of them like see you later. OK, but at the end of the day, it was all love. You know, I didn't get anything out of it. So it's it's been honest and transparent and truly having their best interests in mind. And just anybody I work with, I try to have really, you know, care and show that I care. Brad: But the one thing, too is, is empathy is so important. A lot of people aren't empathetic enough. They don't look at people and read that they're sad or they're stressed or they're anxious or whatever and then react accordingly. They only care about themselves and what they want out of a situation, and that's it. But you have to acknowledge these things and you have to care about how other people are feeling, because if you can identify. Oh, wow, look at look at, you know, Joe, he looks like a little down today. I'm going to hit him up, you know, makes a difference. I've had people on Twitter just. Oh, my life sucks, I'm having a horrible day, getting out of bed is hard. I call him. How are you? Talk to me. I'm here. I send my message, hey, sound good vibes. I'm here if you need to talk. You're not alone, your loved. Whatever everybody's going through, man. But if you just say about yourself, you know, and one person that I did do that to recently hit me up like that meant a lot to me. Because I was struggling. And that little text that you sent me a text, Joe, you know how long it took me? Joe: Right, right. I Brad: But Joe: Think Brad: Once Joe: You Brad: Again. Joe: Brought that up on the call on Brad: Yeah, Joe: The summit. Yeah. Brad: But that's that's a difference, it's like a lot of people think they're too important or too busy, too arrogant, too ignorant to do these little simple things, or in reality, if everyone did a little extra, the simple things that we overlook or don't want to take the time to do the world would be a much kinder, happier place. But that's the issue. And that's like, you know, naive of me to think. But I'm trying to make that the norm. I'm trying to show people that those little things that you do mean something and and it matters, especially when everyone's dealing with a global pandemic. So, you know, I think hearing that someone appreciates you or like you reaching out to me after the event like that was awesome. That made my day. Like anybody who wants to hear me speak, I'm like, wow, OK, cool, thanks. You know, so it's but that's it's the little things, you know. And a lot of people don't care to acknowledge those things or give those little things that you do. And I think that's where the problem lies. Joe: Yeah, I agree with you so much. OK, so you get on with college, you what is the catalyst in the plan like what groundwork was laid so that you literally could move to L.A. and hit the ground running? And not only that, but work with somebody like Robert. Brad: From a very young age, I was trying to surround myself with people who I admire and who inspire me. That's like just not because I wanted anything other just to be a part of their lives, like and that's what I constantly did since I was young. And I build genuine relationships because of that. Like, I it's not I need something better. And when I don't get what I need, I'm now like, that's not what we're talking about. People like we're talking like. And her relationship, genuinely, you're not expecting anything if you get something great, hallelujah, good for you. But if you don't get something that doesn't mean you're bailing and you're out of there and you never talk to that person again, that that's not a genuine relationship, that that's what you're doing. Period. So I've constantly tried to surround myself with people who I admire, they could be massive celebrities, they could be professional athletes, it could be someone who works at the grocery store down the street. They're a good person. Or they could be an artist who's just so ridiculously talented. It blows my mind like I don't have ulterior motives. I just want to surround myself with amazing good people, period. So with that mindset, my network is pretty robust and I have some pretty incredible people in my life. And I got connected to someone and he opened the door for me and that that was it. That's how I got to Downey at. Joe: When did you move? What year was that? Brad: A 15, I think, yeah, because I've been in L.A. six years, so it was February Joe: So Brad: 2015. Joe: And when you moved out there, you literally had this gig ready, you hit, you just landed, got an apartment or whatever, and you started working with Robert. Brad: Right away, hyp. Joe: That's incredible. Brad: But that's but that's that's an example of some of the amazing things that can happen when you lead with kindness, you add value, you build genuine relationships, and when all those things add up and it gets to a point where people are like, all right, you've done so much for me, what can I do for you? You know, like it. Unless they're the worst type of person, they're probably going to say that to some extent. Like I said it last night to somebody, somebody has helped me out with a project like what can I do for you? How can I help you? Any phone calls, emails, whatever. I'll do what I can. No promises, but I'll try to help you. It's just human nature, like we all have the ability to help someone, but if you don't ask, right, going Joe: And. Brad: Back to the start of this conversation, you don't ask, you don't get. So that's that's the whole thing where it's like, you know, some people are too afraid to ask. Some people are too in their head about asking. But it's like if you ask them, then they feel more comfortable to be like, you know what, they're really struggling with X, Y, Z. Like that young lady who reached out to me on LinkedIn. Can I talk to you for 15 minutes, please? Who the hell am I? Yeah, of course we did it, you know, and she emailed me in the next morning. It was like I'm so driven and motivated from our conversation of email. Two hundred people today. The good. You've get it. You know, but that's the. I want to have an impact. I want to be a source of positivity and kindness and, you know, people are going to talk crap about you one way or another, but make them look really stupid to talk crap about someone who's doing that kind of stuff. Right. Like, are you seriously having this conversation about that person right now? All the all that they're doing? Really. OK. Good for you, but that's that's the thing, it's everybody's going to have their opinions, they're going to hate, you know, the peanut gallery is very large, but that's the thing. It's like those people are unhappy with themselves, their lives, and they feel better about themselves by talking crap about other people. That's not my thing. I don't do that. I don't care to do that. But those people are broken and hurting in their own rights and they'll do what they do. But you can't let it get to you. You got to keep just doing your thing. But once again, if you're meeting with kindness and value and you're trying to make the world a better place and make somebody's life better, you know, I've got messages like you saved my life. Joe: You just need one of those and then you go. All right. I know what I'm doing. Brad: But that's Joe: I'm doing. Brad: That's my that's like some bigger people would look at this podcast, be like, this isn't Joe Rogan, why am I going to waste my time? It's like if I impact one person, even if it's you, Joe, with this conversation, it was worth my time. Joe: Well, it's so funny because you're probably going to be the only guest in this whole year that I've done this, that I was going to ask, what made you say? Brad: That's it, like I look at this, I try to do as many of these as I can and yeah, I'm busy, whatever, but like once again, what's 15, 30 an hour to to do a podcast that will live forever on the Internet. So I could impact someone ten years from now or I can impact someone today like, like that. That's the once again broader. Mindset, looking at the big picture, because I have people from different continents, like places I've never even heard of who found me on social media, who follow me, and then literally what one guy in particular is his name's Yassir and he listens and watches all my stuff. And then he sends me these beautifully written messages of his thoughts and all of these, like what he got out of it. And I'm just I just sit back every time, like, wow. Like this guy who I've never met before and I'm in a place I've never been to like. We're not connected other than social media. He found me and he's a he appreciates my stuff so much that he takes the time every single time to listen and watch my stuff when it comes out. So he watches and he'll he'll hear me talking about him and stuff. But Joe: It's Brad: That's Joe: Called. Brad: But that's like that's why I do this man. It's just like he's so impacted by what I have to say. And that's a mind blowing thing to say. Like for me, like I'm just trying to be honest and tell my story and hopefully it helps impact somebody else in a positive way. But but when you really get in that group of hearing from people and and you motivated them or you inspired them, like I spoke at Columbia College, Hollywood about a month ago and some of the responses afterwards from the students were like, you gave me the confidence to pursue my dreams. Joe: That's powerful, Brad: Are you kidding Joe: Yeah. Brad: Me? Like like how selfish would I have to be as a human being to not do what I do? If that's the response I'm getting, even if it's one person. Joe: Yeah, it's Brad: How Joe: Incredible. Brad: Idiotically selfish is that, but once again, I'm not here saying, Joe, if you do, you'll be a billionaire. Like I'm not that person and I'm not trying to hawk a class at you or get you to pay like I'm trying to. I'm trying to teach foundational skills that have been completely lost in this generation, completely lost and GenZE. They're even worse, like they have it off worse. So I'm trying to fix this and also instill this into the up and coming generation. I'm even writing a children's book right now to instill these core values at a very young age. So it's I'm trying to trying to get this back into where the world was. You know, it's not such a hateful and nasty place. Like I had someone said to my dad the other day and just say the nastiest shit to me. And I was just like I was like, how am I going to respond to this? And I responded with thank you so much. I appreciate the love and with like a flex emoji. Right. And that person laughed with a bunch of emojis and I haven't heard from them again. So I gave them the attention they were looking for. And I also probably shook them to their core because they wanted a shouting match. And instead I like self-destruct in their brain because I hit them with that. OK, you know, I've had people do that where I hit him with kindness, kill with kindness, kindness to do that, and you do that and they're like, oh my gosh, I love your content. I'm like, well, what happened to Joe: Yeah, Brad: The Joe: Right, Brad: You know, or they follow me right after. Joe: Right. Brad: They follow me right after, like, oh, my gosh, you know, but that's that's like once again, these people are just broken, you know, and they they're hurting. And I feel for them and I hope they can find their happiness in their path. And but it's not by being hateful and nasty to other people. If if you're actively going out of your way to sabotage and bring other people down or make other people feel less than you are broken. And you need to do a lot of soul searching because whatever you're doing is not working, and I promise you, you're not going to get to where you want to go by going down this path, you may feel really powerful and cool about yourself, but at the end of the day, nobody else thinks you're cool and nobody else likes you. That's the reality of Joe: Yeah, Brad: It. Joe: It's just so I want to respect your time, because we're getting close and I literally could go on and I have so much that we never got to, but I want to thank God so much. We didn't get to I want to talk about your book because you mentioned it on the summit. And so is that something different than the children's book or. That is the book. Brad: Now, that's that's the book I'm starting with a children's series partnered with a phenomenal artist in Sweden that I found years ago on social media. Once again, I try to surround myself with people who I admire and who inspire me. I found her work two years ago, and I knew from the onset of finding her, I was like, there's there's something there and I'm going to figure it out. She's just phenomenal. And here we are right now, and she's doing all the illustrations for the book. So it's just one of those things where it's, you know, she'll love, support other people and good things happen. And if they if something doesn't happen, you're still OK because you're connected with that person and you have those conversations and the happiness exchanges, that that's what makes life worth living, you know, and that's a lot of people want the transactional stuff. And yeah, it's great. But at the same time, it's not everything. You know, so many people have the transactions, but they have no soul. So what's what's the point of that? Joe: How much can you share about the book, like whatever Brad: Yeah, Joe: You want? Brad: It's pretty straightforward, I mean, it's a picture book for kids, so it's a very entry level in that regard. I want to kind of put it in the same category as like, you know, a Dr. Seuss reading level. Like, it's very basic. It's not a crime book, but it is very basic in that sense. You know, I'm not a professional writer or anything. So for me to put my words on paper and do this is once again, I'm stepping out of my comfort zone to do this because I feel like I could hopefully potentially impact someone in a positive way. So I've created this little universe with, you know, my my dog is the main character champ, and he's a boxer and he's my my child. I love him to death. So he's he and his friends are going to be teaching is valuable lessons to whoever reads the book and the first books about kindness. So it's going to be champ giving examples of how to be kind. And we're talking basic stuff like helping someone in need, you know, complimenting someone, defending someone in front of a bully. Very basic stuff. No one's asking you to move mountains. Basic stuff. Give someone a gift. Like it's just basic stuff. And that's, I think from that digestible level of those basic tasks at a young age, people will get that compliment. Someone I like your shirt. Oh, thanks. I appreciate that. You know, or. Oh, my my kite is stuck in a tree. I wish someone would help me. Oh, got you on there. You know, but that's the thing man. A lot of people look the other way and that's that's the problem. So if I can you know, the artwork she's doing is so incredible. It's like I compare it to like the likes of Pixar and Disney. Like, she's just so amazing. So the illustrations are going to be out of this world. So as long as I don't screw up the basic story, I think we'll be OK. Joe: And when's it due out? Brad: Man, I'm juggling so many different projects. I'm trying to get it done as soon as possible. You know, she has a lot going on, so we're all kind of just doing the best we can with the time. I'd love to get it out in the next three to six months, but once again, I'm hoping for a series where you'll see all these different characters and multiple books. And it's been cool because I've incorporated my previous pets into dogs that are no longer with us. For me, I have pets of dear friends of mine that are basically family that passed away, that I put in the book out of love and respect for them so they can live forever. So it's just really cool to to have that control, to tell my own story. And everybody plays a role. There's a significance to every character in the book. And I think it'll be fun for people to to enjoy these unique characters and illustrations and really bring them to life. And that's I can't credit her enough for names in the arts on Instagram. She's phenomenal. Brad: Her real name is Hedvig and she's in Sweden and she's amazing. So any updates I get from her always puts a smile on my face because she's just talented. And that that's one thing. As a manager, as a producer, I'd like to think I have a good eye for talent, whether it be for sports or music or anything. I just have a good grasp on that because I look at the big picture, whether it's from your brand or your talent in general or in a potential, you're being underutilized or whatever. And she's definitely one that is just so gifted and talented in any way. I can help her grow and win like we're winning together on this book. So it's it's a cool project. I'm excited. And like I said, if one kid reads it. And get something out of it, I've done my job, but it's also cool to to do it for my dog champ and to see him as a cartoon character is is pretty cool. So I'll send you some images offline and you can get a first look. Joe: I would love it. I would love it. All right, cool. So, again, we're right Brad: You Joe: At Brad: Had Joe: The. Brad: You had one question, you said, I can't forget. Joe: I know, but I don't want to keep you because Brad: I'm Joe: It's Brad: Good at Joe: Ok, Brad: It. Joe: So OK, you promise? Brad: Yeah, yeah, I'm good till one Joe: Ok, Brad: One 30. So. Joe: Ok, so I wanted to get to the school thing about you went to college and took the year off, you finish on line. I love Gary Vaynerchuk. I spoke to him once on the phone for like maybe two minutes tops. It was it's a story I'll tell you at another time. But he talks about you have to make that decision. And and if people are listening to this that are younger in high school or college right now, what is your opinion, if you don't mind, on doing what you love and just getting out there and doing it as opposed to going to college? And I know it varies on the circumstance, right. You can't you can't go out and walk into a surgery room and say, OK, I'm here to learn. And certain things have to happen that way. But certain things which I'd like to know what you think about that. Brad: For the parents out there, I would always say, you know, academics are important, I would I would go to college if you can. But I would also say on the flip side, if you're in a situation where you're getting good experience. In the streets and on the ground and real world experience, in my opinion, that's something that is far beyond anything you'll ever learn in school. And I can say that wholeheartedly. My on the ground in the street work that I've done since 16, 17, 18 years old, that's what made me who I am. School had a part of that, obviously. But it's you know, you can't adapt to to situations in a classroom, whereas in the real world, like, things come at you quick and you've got to be able to adapt and react accordingly. And that experience that you challenge yourself at an early age, I mean, there are high school kids where I'm like, get out there. Like, what are you waiting for? Start like now has never been a better time to do your own thing because you have Google, we have YouTube, we have all of social media, you have master class, you have all these tools that you can leverage to do your own thing, whether you're consulting, whether you want to be a music artist. Like there are so many tools that like with our iPhones now shooting for K, you don't even need a crew anymore like it. It literally is so easy to do your own thing. Brad: So now I would say if it makes sense for you and you have support around you financially and good people who are going to help you when you fall, give it a shot. But if you don't. Go to college, do what you need to do, get your degree and move forward, but like some people truly are wired for entrepreneurship. And I was that person and when I put myself in nine to five,

The Joe Costello Show
Finding Your Purpose - Patrick Combs

The Joe Costello Show

Play Episode Listen Later Feb 14, 2021 78:44


A discussion with international speaker, author, comedic entertainer, partner of Bliss Champions and co-author of "Unlocking Your Purpose" found on Purpose Code.com. Patrick has become one of my all-time favorite people because he lives in a state of bliss. He has found his purpose and he's filled with unlimited peace, joy and love. I hope you enjoy this episode as much as I did. This one is definitely a highlight for me and hits home as I continue my own journey to find my ultimate bliss. Enjoy! Joe Patrick Combs: Connection with Patrick: https://www.facebook.com/patrick.combs "Unlocking You Purpose": purposecode.com Bliss Champions: blisschampions.com Patrick's website: patrickcombs.com/ Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.libsyn.com Subscribe, Rate & Review: I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to: https://joecostelloglobal.lybsyn.com Follow Joe: https://linktr.ee/joecostello Transcript Joe: All right. Hey, Patrick Combs, welcome to the podcast. So glad to have you here. Man, I've been waiting for this, as you know, for quite a long time, a few few months now. I think. So I'm   Patrick: Yeah,   Joe: Really excited   Patrick: Thanks,   Joe: To do   Patrick: Joe.   Joe: This. Yeah.   Patrick: As as I have been too excited to be here with you.   Joe: Well, thank you, I appreciate it and I do appreciate your time. I know you're busy, guy. So so what I like to do is, you know, I was very intrigued by us meeting, even though it was all, you know, via the Web. But, you know, I had this opportunity to see you talk to the group that I was in and, you know, learn a little bit more about you. But what's amazing, and you already know this about yourself is your storytelling and all of that. But before we get into all that, I want to kind of give the audience the back story of who you are and where you know your progression, where you came from. And then we're going to talk about all the cool things that are happening today, because I know you have, like me, a lot of irons in the fire, but you have some really unique things. You're working on things that actually, you know, that resonate deeply with me. And that's the connection I have with you. And so I'd like for you to kind of explain, you know, who where you came from, who you are. And then we'll get into the nitty gritty of everything.   Patrick: Ok, that's nice, Joe. Well, I am, I am I was raised by a single mother. In Bend, Oregon, which a lot of people are familiar with these days, because I guess been super big and super nice, but when I was in Bend, it was super nice, but not super big was sixteen thousand people. And I was my mother, a licensed practical nurse, raised my brother and I on a very small salary in high school. We were living in a trailer house, which was no problem. But, you know, let me just sort of sketch and nobody from our family had ever gone to college. But my mom was a pioneer. She was the one from our family tree that was reaching for Moore, and her primary way of doing that was to encourage my brother and I with phrases like Do what you love. Learn to work with your mind. Don't worry about your mistakes, look it up for yourself in the encyclopedias. That's what I bought those damn things for. And so I was the first person from my family to go to college and. In college, it's first at Lewis and Clark College in Portland, Oregon, and then at San Francisco State, I began to really realize that my purpose had something to do with uplifting and performing.   Patrick: And today, I know I'm fifty four and I know my purpose very clearly, it is through performance and story to uplift. And so but but, you know, you're in your 20s, you're trying to figure out what to do with your life. I felt all the calls, all the tugs in the direction of my purpose. And I could not be more grateful that just by by God's grace, I feel so I don't feel very responsible. The older I get, the less responsible I feel for my choices. I just feel grateful for them. But the greatest choice I ever made in my life and I think the first greatest choice I ever made in my life was that I was going to be an inspirational speaker. Come hell or high water is starting at twenty six years old and an author. And so without any connections, without, quote, the appropriate background or credentials or accomplishments, I did that. I became a paid professional, inspirational speaker, and it's twenty five years later and I've spoken all over the place, but there's been a million people that have that have been in front of me and my audience is listening to me waxen. And then along the way, I expect, you know, I took that purpose and and I expanded into other joyful callings, this the the second that I'm the second sort of biggest imprint that I'm known for, I think, is that I created a comedic.   Patrick: Solo comedy show for and I performed it all around the world in theaters. So if you look in broad strokes at me, if you go Patrick Combs, who is this guy and you read my bio and stuff, you you read Hall of Fame, inspirational speaker. You read comedic performer with the smash hit show and an author of five or six time author. So that's what I look like on paper. And behind the scenes, you know, I have just I have I just live doing what I love. That's been the great game of my life to live doing what I love. To place my joy. Even above my my above money, because somehow I knew early on that if I placed money above Joy, I would not end up joyful and probably not even end up healthy. So so today I have a third company and it's called Bliss Champions, and I and my business partner and I help people really lock into that great truth, unlock their purpose and maximize their joy.   Joe: So I have so many questions. OK, first question this is going to speak to well, no, actually, I want to go back to the early part of this, which is you were lucky enough to have a mother that instilled what she did in you with, you know, that positive reinforcement. I think if when I listen to other people talk who had struggles creating the life that they would ultimately wanted, it seems that we trace a lot of that. Back to how you were brought up and what was said to you by your parents. That's the ultimate it seems to be the ultimate catalyst of what you end up becoming. And the people that had an incredible reinforcement and, you know, go ahead, make mistakes, whatever. Follow your dream, follow what you love. All of that stuff. They end up becoming these incredible people and the ones that didn't have that struggle through ridding that from their brains and flushing all of that garbage out and then having to kind of rebuild themselves at a at a, you know, somewhere in the middle, at an older age. And then eventually the hope is that that that   Patrick: Yes,   Joe: Leaves them so   Patrick: Yes and no,   Joe: Ok.   Patrick: Right? So for me, one hundred percent, yes. My mother my mother gave me the foundation. The schemata and the foundation, both the both the sort of the loving, the loving, positive self reinforcement of positive self-esteem. Combined with really great directives, I mean, she was my first Joseph Campbell, right? He   Joe: Hmm   Patrick: Said, follow your   Joe: Hmm,   Patrick: Bliss. And   Joe: Yeah.   Patrick: She said, do what you love. But when you when you counter correctly and you don't want to add something to it, when you say, well, and then what if you got negative messages from your parents? Well, you know, that's Howard Stern and that's Bono and that's Oprah. So what I know is the difference between, though, is that because I'm really fascinated with how Howard, this conversation Howard Stern and Bono had once both sharing that. So it seems like if you if you got no love speaking for men specifically, you got no love from your if you're trying to somehow live up to a father that beat you down, seems like tremendous successes often created. But then you have to reckon with why you created it, what foundation it was created upon emotional, psychological foundation. It was created on some point. I think there's a reckoning for all of us in our childhood, you know, to say, hey, no one gets out of their childhood unscathed by the by the inadvertent or accidental mistakes of their parenting or perceived mistakes. No one gets out of that. You know, I came out of my childhood heavily damaged by my mother's suicidal nature. You know, so. I just wanted to sort of add that footnote, Joe.   Joe: Yeah, no, I and I and I look at this sometimes through my own lens, that my mother struggled, you know, her family struggled financially. Her father was an alcoholic, left them her mother had to, you know, take care of them all. And so when she when she was raising us, it was always a very cautious sort of raising. It's like, you know, do something that that makes a living. You know, you get health insurance like a very sort of secure, protective sort of thing. And I think that in my own brain caused me to not necessarily do all that I thought I could do, because I just always felt this this limitation of, you know, you shouldn't do that, you know? And I was pursuing a music career. So I you know, that's very, very hard career path like acting and other things like that. Right. And so so when I when I think about this and we have this conversation, my father was very much would push me to say, go, do you know, do that. But it would be more quiet like my mother took care of us. Right. He was working. So she got the say. And it was like, you can't you just can't go do something like that. You have to take the safer route.   Patrick: Now,   Joe: Right.   Patrick: That's   Joe: So.   Patrick: That's impactful, right,   Joe: Right.   Patrick: That that's your first introduction to the rule book for how to proceed   Joe: Yep.   Patrick: In your life, and you were given the one that said proceed with caution.   Joe: Correct.   Patrick: Boy, that I mean, yeah, I was given the opposite rule book.   Joe: Yeah.   Patrick: I really was I was given a very different rulebook, and it that matters, doesn't it?   Joe: Yeah, totally,   Patrick: It matters   Joe: Yeah.   Patrick: Until it doesn't matter, as Secretary says, about suffering. Suffering matters and is helpful until it doesn't matter and it's no longer helpful,   Joe: Mm hmm.   Patrick: Right? So as soon as we wake up to oh shit, that's the rule book I had. Now we're free to grab a different one off the   Joe: Yeah,   Patrick: Shelf.   Joe: Yeah, and it's just whatever that triggers that, you know, and whether that's, you know, reading different things and being around people that, you know, like yourself, that create this this aura of like, no, this there's another way. You know, it's just it's this is one life. Go do it.   Patrick: Right.   Joe: You know, one's around anymore to tell you what to do, especially people that are older. Right. Is just   Patrick: Yeah,   Joe: Go.   Patrick: And there's no safety in playing it safe.   Joe: Right.   Patrick: It would be the rulebook, no safety in playing   Joe: That's   Patrick: It safe. That's   Joe: Hey,   Patrick: The greatest   Joe: That's   Patrick: Risk of all.   Joe: That could be the next title of your next book.   Patrick: Yeah.   Joe: All right, before we get to all that other stuff, so then the next thing that you talked about was the speaking part of it. And I know there's so many people out there and and, you know, they'll definitely be people in my audience that listen to this and and eventually watch the YouTube version of this that look there. They would love to do that sort of thing. And and it's hard to get someone that has had such great success at it like you to where I have you one on one at this moment, say, well, how did you do that? What was the first step? And then what was the part that finally went to something much bigger? And then where you are now, where, you know, the audiences are huge, you're speaking fees. You know, they could be I don't know   Patrick: They're   Joe: What they   Patrick: Big,   Joe: Are, but they're big,   Patrick: They're   Joe: So.   Patrick: Big,   Joe: Right. So   Patrick: Joyfully big.   Joe: Good. So what was the first how did you get into it?   Patrick: So let's I'm going to go fast and I'm going to speak to two different directions, because I heard you very specifically. First, I'm going to go fast on how I got into it. But   Joe: Mm hmm.   Patrick: Second, I'm going to couple that, if you don't mind, with what I would do today if I was starving,   Joe: Perfect.   Patrick: Because there are different worlds.   Joe: Mm hmm.   Patrick: But what they both have in common is the psychology that's necessary. OK, so let me address the psychology last year, OK? What I did is it twenty six years old, I naively said naively and powerfully, impotently said I want to be a speaker, so I want to be paid at it. So how do I get a paid speaking engagement? And it didn't take much looking to say I have to tell people I'm a paid speaker. So I made I bought a mailing list of every college in the United States, half of half of all colleges in the United States of America, those that were part of an association looking for all kinds of talent. And and then I made an ugly ass flyer and I licked and stamped one thousand two hundred and fifty envelopes and I put them all in the mailbox. And and then I and then I waited for the incoming interest, interested prospects, and I cold called and and failed 40 incoming prospective cold calls, a failed 40 out of 40 of them. And then the universe's magic that is always present will always show up, kicked in. And another lead came in and I followed it up. And after four months of failed, failed calls, I got a yes from black out Black Hawk. Technical college in Wausau, Wisconsin, for one thousand two hundred dollars, total airfare included,   Joe: Wow.   Patrick: And I was off and running.   Joe: Yeah.   Patrick: You know, so you can hear both, but you can hear them, you know, the challenge of it and the mechanics of how simple. I somehow intuited. The path to be and I see people overcomplicate marketing all the time, especially in today's world where marketing super sophisticated and you know your call, it looks like you have to be you have a billion followers and all this stuff and none of it's it's rarely ever true.   Joe: Mm hmm.   Patrick: So anyhow, if but but I was launching myself as a speaker in 1992 when if you wanted to have a voice in the world and you wanted to be paid for it, there was, you know, a keynote speaking. Was it? You know, I was looking up to the Tom Peters of the world   Joe: Yeah.   Patrick: Who are being paid 50000 dollars in and they were like, oh, Jesus, Tom Peters has a job where he gets up in front of people. They pay him to give his opinion and his advice. Jesus, I wanted that so badly. I wanted that so freaking bad. So I went after very directly who would pay me to speak to them and give them advice? Who could I command their attention of and be 100 percent confident? I can tell you something that's beneficial.   Joe: Mm hmm.   Patrick: In Wisconsin, as I said, oh, I know what to say to college students because I was there just three years ago and they're not getting the truth about what it takes to to to grab that job you're passionate about and go for it. So and therein lies the the deep psychology of what it takes. It's it's answering a tug on your sleeve from your soul that says you have something to say, you want this and you've and you've got something to say. But the hardest choice. The first three steps are the hardest one is to recognize you got a tug on your sleeve. Your soul is saying, that would be incredible and something is there for us. I believe in that more than I believe in anything in the world. Something in Steven Jobs said it's something inside you intuitively knows what you already want to be. Something inside me intuitively knew I wanted to be on stages, inspiring people, uplifting people to answer that call is difficult. It's hard as hell, only the most courageous. No, only those who find them. Their moment of courage will do it. So you don't there's no such thing as being courageous, there's just being courageous in the right moments. So once you answer that, then the second giant hurdle you got to get over, even in today's world, is what's my message? Because the number one thing, the Powers's speaking career is confidence.   Patrick: That you deserve to be on that stage. And it's hard it's hard to find if you don't know where to look. And so that confidence has to be built on who can I confidently be certain I could make a difference with because of what I know and I've experienced and I've overcome. Twenty six years old, I could not have built a successful speaking career speaking to corporate audiences. Why? I had fantasies about it because Tom Peters was the guy I was looking up to, but I could not find. A firm grant firm ground to stand on, say, I can walk into a corporate audience and tell them what's up. At twenty six now, I haven't worked at a corporation. So so the deepest the second deepest question, the answer for yourself is who come on, just tell me who in front of you. Who do I put in front of you that you go, Oh, yeah, oh, yeah, I can do this. And when you nail that boy, you're like nuclear powered. Now all you've got to do is say, great, how do I tell them I'm available for hire? How do I tell the right people I'm available for hire? But so far in today's world, though, so here's the nuance in today's world, though, Joe, I wouldn't start a keynote speaking career in today's world if I was if I was saying I want to be a speaker,   Joe: Mm hmm.   Patrick: Because now social media exists because a messenger, I'm a messenger and a messenger. And that just means you got the messages you want to share. So so the messenger and me saw. Oh, well, in 1992, that was stages. If you were the keynote speaker in 2000 and 2001, it's every day on social media.   Joe: Right.   Patrick: And that's where so anybody that, quote, wanted to be a speaker said, no, no, you don't want to be a speaker, you want to be a messenger, constantly sharing your messages and often getting invited to stages in stages. Now look like Zoom's. They look like webinars. They look like 20 minute Ted Ted talks.   Joe: Mm hmm.   Patrick: They look like anywhere where you are the authority getting to share your message.   Joe: So let me ask you this, I don't mean to interrupt, but I want to know why, when you first did that speaking when you started on this path, what made you think only three years out of college that you had something to then go back and teach the college kids? What light bulb went off and said, I can go back and explain to them that I'm doing what I love?   Patrick: None of none of my peers, I looked around and none of my peers, all of them that were smarter than me, all of them had better grades than me, even my peers that went to better schools than me, UC Berkeley and Stanford, they all seemed to lack a fundamental understanding that I was benefiting from, which is you should do what you love. Isn't that wild?   Joe: Yeah, it's it's I mean, you're lucky   Patrick: Yeah,   Joe: It's.   Patrick: They they they all seem to have bought into the giant myth or lie or distortion that says you should do what's hot. You should do what you can get. You should do what pays you good money,   Joe: Mm hmm.   Patrick: All of which to   Joe: Mm   Patrick: Me   Joe: Hmm.   Patrick: Look like I'm in a casino. Astonishing bullshit. Like, I think one of the greatest blessings God ever gave me was a radar that said, that's inferior bullshit.   Joe: Mm hmm.   Patrick: That's not what a great, meaningful life of purpose is built on, it's not built on what's hot on what makes money, you know, on what other people will think is cool. It's built on what your soul thirst to do.   Joe: Yeah, it's it's powerful, it's just, you know, and I just had this conversation with our our friend Chris hey, where I feel like there's I don't I don't know how to even say this, but it feels like we're fixing ourselves later in life. And I wish what you did on that first stage for that, those college kids, we could even go a little earlier in life and and, you know, talk to kids that are I don't know what the age, what the mentality is and what the age group and what they can absorb at a certain age. I don't know that scientific research that's been done, but it would be nice, you know, how sometimes a young kid will see something they'll see   Patrick: It's   Joe: On Michael   Patrick: Happening.   Joe: Jordan?   Patrick: It's   Joe: Yeah,   Patrick: Happening,   Joe: I   Patrick: You   Joe: Just   Patrick: Know.   Joe: Wish we could move it. I feel like we're all trying to fix it now   Patrick: Right,   Joe: In   Patrick: But.   Joe: Midlife where I wish we could move it earlier.   Patrick: What you know, I mean, the role models for today's kids that that are young, that are below 10, they're tremendous   Joe: Yeah.   Patrick: Because I have a 12 year old son. And if you've never seen Mr. Beast in, my son loves   Joe: Oh,   Patrick: Mr.   Joe: Yeah, I   Patrick: Beast   Joe: Have   Patrick: And I love Mr. Beast. That's an that's a messenger. That's   Joe: A.   Patrick: An inspirational messenger. Who is role modeling. Hey, you can not only do what's wildly joyful and fun, but you can give your that guy understands giving it a level   Joe: Yeah,   Patrick: That I dream of learning that   Joe: Yeah.   Patrick: I dream of embodying. So, you know, every jet I view this next generation as Savea as more enlightened and it's so awesome to see.   Joe: Yeah, I.   Patrick: But Mr. Resum role modeling for my son, you know, I thought I think I'm a role model for my son, that you can do what you love and have an abundant life. And Mr. Beest is better role model. You know, Mr. B gets it earlier and at a level that's in almost incomprehensible,   Joe: Yeah.   Patrick: You know.   Joe: Yeah, well, OK, so you've talked about the speaking part of it, and then how about a little bit about the one man show, because that was a really interesting story to me about   Patrick: Ask me   Joe: How   Patrick: A question,   Joe: That came about.   Patrick: Would you benefit me with a question?   Joe: Well, I want to know, like what I remember the story, how you saw it on TV and a trigger, you were like, I want to do that. Like when you said, I want to create this show. And just that one night in that hotel room that triggered it all for you, just like that, you're still on stage, but it's a step in a completely different direction.   Patrick: Yeah, thank you, Joe. OK, so then let me think about. Making the super relevant for anybody listening. OK, so what's really remarkable to me is that we can be successful. So maybe someone's listening to say, I love my life. I like my life. I'm Ahmad, I'm successful, and you're just clapping along and you're saying, oh, yeah, I got this. I couldn't be happier for you, but I want to I want to tell you a true story from my life about when I felt that way, but I wasn't. But I wasn't. But there was something much bigger that was tugging at my sleeve that was very hard to acknowledge. So I was this quote, by my standards, very successful speaker all over the country, whatever. And then but. There was this secret unrealized ambition, Joe, and you haven't you haven't heard this sort thing, and the secret unrealized ambition was to be a story teller in the theater, just the only guy on stage, enthralling and entertaining an audience and making them laugh with just a personal story from my life. This and this was a dream that came to me that was inspired. It's not a dream. It's this was a. A soul calling. That I felt when I was about, oh, twenty two or twenty three years old, because it even before I became a speaker, my girlfriend took me to a theater, not a movie theater. And we watched Spalding Gray, a legendary theater performer, just tell us a story for an hour and a half from behind his desk. And I walked out of that theater, Joe, and I turned to my girlfriend in her old 1964 Rambler. And I said, thank you for bringing to me that that was amazing. And she said, Oh, yeah, he's so great, isn't he? I said, I looked her in the eyes. I said. Now, that was unbelievable,   Joe: Ok.   Patrick: I said what I would give to do that. Because I thought I just seen the best thing a human being could ever do with their life and, you know, and this woman who loved me very much and meant nothing harmful by it responded. Yeah, but you'd have to be funny. Bakersfield was super funny, and what she didn't know is, is that was like shooting an arrow accidentally right through the chink in my armor because I heard it and said, oh, yeah, what was I thinking? I just sat in there with a master. And I'm not funny and I'm not even good storyteller, so I'm just sitting here in this 1964 Rambler having myself a pipe dream. I can't do that what he just did, he made it look effortless because he's a master and so I built a speaking career, which I very, very, very much love, but I still had this secret, unrealized ambition in it. 30, what you were referring to is at 33 years old. Well, another theatre performer had come on the scene, a named John Leguizamo. And John Leguizamo was in my book was Spalding Gray Times 10. And no disrespect to Spalding Gray, the creator of the medium. But but where Spalding Gray sat behind a desk, John Leguizamo tore up use the entire stage became 18 different characters, male, female, young or old, and was 10 times funnier in my book. So he came on.   Patrick: I was there in a hotel room and he has his HBO special came on. And I've never felt worse about my. In some way about my sort of career self and, well, this really I got this horrible, horrible ache pain in my solar plexus, and it was the pain of fear, of paralysis, of envy, of self-loathing. Because what? Because it was this swirling ball of hell in my stomach that said, I love what this man is doing and I want it so bad for myself, but it's impossible for me to get to because it's it's. I'm not good enough. I'm not good enough to ever do what I dream of doing. And and that was that was the that was my fear of not doing it. You know, built up for 10 years is, as we like to say in my business, Bliss Champions. Your purpose left on, attended to becomes a purpose, curse becomes a curse. And so on that hotel room bed, I felt the curse and the pain. And fortunately, I grabbed for a pad of paper and I wrote at the top, what are you so afraid of? And I started freeriding. And I wrote all these fears, you'd expect them looking bad, looking stupid, being awful, wasting my time, you know, wasting money, taking away from my really good speaking career. And then in the end, I wrote something that really surprised me. I'm afraid I won't be as great as John Leguizamo or Spalding Gray.   Patrick: And when I wrote that sentence. It like took the lid off of something super dark and evil in me, because when I saw that sentence in the light of day, I never realized that was one of my fears. It looked absurd. I laughed out loud at the absurdity of I have never told and I've never even attempted what they've done and yet. And yet the reason why I'm not going for it is because I not I might I'm comparing myself to the greatest human beings on planet Earth at this craft. And it just struck me as ridiculous, and then a voice came into my mind, a thought that I never had before, couldn't you just do it for fun? And the weight of the world was lifted off that secret, unrealized ambition, me, who's so success minded, had never thought of just doing it for the sake of fun, the pleasure of I should try that. Who cares if I fail? And that was my ginormous breakthrough on my greatest bliss ever. And so I so I started doing it for fun shortly after that. And to make a long story short, for 15 years, I toured with my one person solo show. I and this is a metric I care about, but is not why I did the show. I did the show for the love of doing the show, for   Joe: Hmm.   Patrick: The love of learning to do the show, for the love of hearing audiences laugh. But in the end, what blows my mind is a hundred thousand people bought tickets to see my show. Hundred thousand people sat in my audience for 15 years. I had a red carpet tour of the theater world and today it's being made into a Hollywood movie.   Joe: It's amazing.   Patrick: Right.   Joe: And it's incredible.   Patrick: So.   Joe: So what you said or you said, why not just do it for fun if someone's in the same spot that you are in that hotel room, when you were watching him perform on that HBO special, would you say that that's a good starting point for some people who just can't seem to to to do that thing that they so want to do as it just. Is that a good trigger? I don't know if that's the right thing,   Patrick: It   Joe: But   Patrick: Is.   Joe: Is that OK?   Patrick: In Bliss Champions, we've learned we've got a real extraordinary map for for these for these kind of we call them bliss journeys, going into speaking was a blitz journey for me. A journey to follow my bliss. Going into the theater was a journey to follow my bliss. Writing a book was a journey to follow my bliss. So we've got a really detailed map. And what's surprising is the biggest pitfall we know of on the map is the desire to monetize what's possible to use to Zoom to early. So   Joe: Interesting.   Patrick: You think of your bliss, right, and then immediately society is trained us to think, but how will you make money at that?   Joe: Mm hmm.   Patrick: And that kills more bliss journeys. The two biggest killers of all blessed journeys is not getting started and trying to monetize to even think about monetizing too soon. So they're the antidote to monetizing too soon is forget about monetizing. Do it for fun. Do it for fun. The benefit is Joy.   Joe: Mm hmm.   Patrick: The benefit is fun fund, the benefit is aliveness, then the benefit is ball in motion, and momentum has to be included in anybody's realistic formula of great success. Momentum is one of the major ingredients of great success. So as long as you're sitting around not doing something, trying to figure out how you how you can guarantee success on it, you got no momentum. You got nothing.   Joe: Yeah, yeah, that's   Patrick: So, yeah, just do it for fun.   Joe: I love it,   Patrick: That's my mantra now, Joe, is   Joe: I love it.   Patrick: Is I don't wake up my career and figure out how to do things for money, I wake up and I figure out how to do things for joy and the money. I mean, you know, I care about money. I make good money. But the money is and is a secondary thought. It is the longest money has that rightful positioning in my life, it's secondary,   Joe: Mm hmm.   Patrick: Like once I once I figured out what's joyful to me and I've got emotion in it, we can figure out how to monetize it. No problem. You know what we teach English champions. If you can't monetize your your most blissful activity, don't blame it on your bliss. Blame it on your on your business skills. And you don't have to blame it on your business skills, you just have to know it's not my bliss that I can't monetize. I don't have to change my bliss or forgo my bliss. I have to learn to monetize.   Joe: Yeah, it's you hit it on the head and it's a it's amazing how many people have such great talents, great ideas, great aspirations, and it's just that putting that one foot in front of the next one. And the one thing I think you hit it right on the head is just how I can make a living at that. How can I do that? And it's it's it would be so cool if people just did it for the fun of it and then the joy and what they bring to other people, all of that other stuff the universe delivers because it just realizes that's what you were meant to do. Right. It's just.   Patrick: Yeah.   Joe: Well, so you mentioned Bliss Champions, you know, throughout this conversation. And I think this is the appropriate time now to sort of clue in because, again, we're we're limited on time and I have a million things. So let's talk about this champions. So I would like to know I ran across it just because once we got off that call where you were teaching us how to tell the story, you know, tell our story and a very creative way, I then was doing all my own research and I said, who is this guy? Man, I love the way he talks. And I can tell that there's just something about him in his soul that's on fire. And I want to know more about it. And then it took me to Blessed Champion. So I'd like for you to explain to the audience what this champion is, what it does, what you know, how, and then we'll put in the show links all of the other stuff to get in touch with you. But I you know, to explain what it what its purpose is would be awesome.   Patrick: Ok, well, I'll give you I'll give you us a scoop, Joe Torre, I don't know when you're going to publish this. I actually should ask you, when are you going to publish this? Probably.   Joe: I can do it whenever.   Patrick: Ok, well, you   Joe: I do   Patrick: Know.   Joe: What a week, normally I can postpone this, I can I can   Patrick: Ok, well, look, in   Joe: Do   Patrick: About   Joe: It tomorrow.   Patrick: In about one in about one week, two weeks tops, we're going to announce our brand new book   Joe: Ok.   Patrick: And I'm so excited about it. It is the conversation we're having. So I'm going to tell you the first person I'm going to tell, it's called "Purpose Code", How to "Unlock Your Purpose", maximize your joy, astound yourself and if someone says, oh, jeez, I am interested in this free report we made about it, which is the 10 reasons why people don't unlock their purpose and go to purposecode.com. So no one knows that website exists yet. So.   Joe: Ok.   Patrick: So but they're going to find out first through going to purposecode.com.   Joe: I love   Patrick: So   Joe: It.   Patrick: Bliss Champions. Bliss Champions, so the surprising thing, Joe, is in, you tell me how much you've seen as I can't believe how much I've seen, it's shocking to me is how many successful business owners there are. Who are lacking joy. These are people I'm telling you, like Mega Millions dream home, not one dream car in the driveway, as many as they desire looked up to by all their peers and all their employees. Happy that they built the business, happy they overcame all this stuff and made it to the top, but their deepest secret. Is something's missing. And so my business partner was one of those guys, you know, he cashed out for 50 million bucks. And still, something was missing. So his story is quite remarkable. He's not here, so we won't tell it, but but. As you saw, so he both knew it through personal experience and sitting in on groups like on the IS. Know, as the entrepreneurs organization, you got to be a successful entrepreneur to qualify to get in. Well, one of the first things that my business partner saw up close and personal through that organizations, wow, so many people here have secret unrealized ambitions that they're not going for because somehow they're successful business.   Patrick: Has it been a little bit of a bind? And somehow along the way, while they were flexing their entrepreneurial muscles. They their their muscles for joy and bliss atrophied or were never developed, and so we both inherently understood how much impact if you can shift a person at the top of an organization to be joyful, they will spread. They will spread that message through the entire organization. Leaders that lead from Joy and that follow their bliss want everybody to follow their bliss and maximize their joy. That is the you can't be living joyfully and blissfully, truly without wanting to spread joy and bliss. It's impossible. Love, it's impossible for love to not desire to spread love. So. So. Bliss Champions is our remedy, it's we're four years into into seeking out and accepting individuals who who are successful but know something is missing. They don't know how to figure out what what is missing in what would be in their lexicon, a smart move, because they're used to everything being, quote, smart, right. What would be a good, smart, legitimate move that would bring them more joy? And we're experts at that. We help them unlock their purpose, because once you know exactly what your purpose is and you can put it in words, you have a true north and you not now you don't make missteps.   Patrick: And then but once you unlock your purpose, then then the great opportunity is to feel great, you know what your purpose is, what bliss journey should you take up? And there's a lot of choices. So you have to have good decision making structure. So we call ourselves Bliss Sherpa's because we've been up and down the on our own bliss journeys through our whole lives. That's that's been the blessing of our lives. We know the territory. We know the mistakes. We know the pitfalls. We know where where people quit and why they quit. So we Sherpa people up on blissful journeys and all of our secrets to doing that, that we've you know, I've been on I've been Sherpa and I've been a Sherpa for people following their passion and living their dreams and following their bliss for twenty five years. And Eric has been doing it for an equal amount of time as a CEO of large organizations. So this is why I'm so thrilled that we wrote a book together on it and the book's called "Purpose Code". And all of our secrets are in that book.   Joe: That's great, it is was there some momentous occasion that how are you and Eric connected?   Patrick: Yeah, Eric cashed out for millions of dollars, and he and the day after he cashed out and he went to lay in by his pool, just view overlooking his wine estate. He was rushed to the hospital and almost died from   Joe: Uh.   Patrick: Poor health while he was laying in that hospital bed contemplating his mortality. He realized I didn't finish the job of my purpose. And he knew that Eric's always known I've known Eric twenty five years, Eric has always known his purpose is to help other people, is to help is to inspire himself to live joyfully and to take that inspiration and spread it to other people. This is the thing about purpose. Here's a lesson and purpose. Your purpose is, first and foremost, what selfishly brings you joy. And you can't support your purpose if you're looking for if you're looking outside of yourself for where to save the world, you will you'll you won't see it when you say, look, it's just selfish. Something inside me always, you know, is always finds joy when I'm in this direction, when I'm doing this kind of activity, I'm my best self. Once you identify where your best self, what you'll see is then that when you give yourself that gift, you automatically give it to others and desire to give it to others. And that's where your purpose becomes a service to the world. So so, Eric, figure it out, man, you know, I I've always been living my purpose, but I slipped off track. While I was going on flexing his entrepreneurial muscles and going on this incredible monetary tear.   Joe: Mm hmm.   Patrick: And so he got out of the hospital, began working on his health and called me up and said, let's start list champions. There's a there's a he said there's you know, the one thing you and I have always been united on is wanting to help people follow their bliss.   Joe: Now, that's really crazy. That's.   Patrick: And the reason why I said yes is because I had hidden from my bliss for 10 years in in fear, right, my secret ambition seemed   Joe: Yeah.   Patrick: Impossible. And so I knew the cost of doing that. I knew the falsehood of doing that. And I and I knew that I knew the tremendous pressures that await anybody on the other side of finally finding the wherewithal to   Joe: But.   Patrick: Do it. And so, as I said, once you've experienced that kind of joy and bliss and truth, you want to share it with others. You want to say, like, I'll show you where your greatest life is and society just doesn't it just doesn't have enough messages. You know, it's societies has too many messages about smart, about practical, about money, about status. And all that stuff comes with following your bliss. But it can't be it can't be the deciding factors or you won't know where your bliss is calling you to.   Joe: Yeah, it's like we have it backwards, it's like the cart before the horse, right. And if we can just flip it, it's everything just sort of opens up and through Bliss Champions, you help people to work through this. And then ultimately the goal would be is is it a week long?   Patrick: It's a six it's a six month program.   Joe: Six month program, so.   Patrick: Yes, it's a month program, people apply to get in.   Joe: A.   Patrick: We we we work with seven people at a time, cohorts of super small seven. So it's super individual. And and then it culminates after six months of coaching and masterminding, it culminates in our super, super specialty. We take you to Bliss Island, which is in Hawaii where we own the property and we run an extraordinary five day retreat to try to really launch our our participants and into their bliss.   Joe: Yeah, it's incredible. I   Patrick: It's   Joe: Love   Patrick: Fun,   Joe: It.   Patrick: It's   Joe: You   Patrick: Super   Joe: Know you   Patrick: Fun.   Joe: Know that I love it. I just   Patrick: Yeah.   Joe: One of these days I'm going to be a blessed champion and I'll have to figure that out. But sooner than later,   Patrick: Now, we've   Joe: I'm   Patrick: Launched   Joe: Not.   Patrick: We launched Authors', we've launched we've taken people that that thought this isn't a this isn't worth a book. And now they're published on the best publishers on Earth and they've got a multi thing deal with one guy has only he said his bliss was motorcycle's writing Harlesden. He thought, what can I do with that, that you can't monetize that? And and now he has one of the only dealership licenses in the country to rent Harley's and take people on Harley tours, Harley Bike Tours.   Joe: Mm   Patrick: He   Joe: Hmm.   Patrick: Has his own Harley bike tour dealership. We've taken CEOs who had giant companies but weren't happy and now they're super joyful, super happy. Their marriages are better. And they're and in addition to running their company, they're joyfully doing this thing they always dreamed of doing. They're they're more amplified, express self. So our stories sound like that, you know.   Joe: Yeah, that's great. So how can someone find out about this champions and how do they go about doing what they need to to become a part of that program?   Patrick: Well, let's I'm going to answer that really quickly and then let's go to a different territory, if   Joe: Ok.   Patrick: You don't mind, OK, because I don't want someone listening to this. I'm looking at the clock here and I think that we have about 12 minutes. And I   Joe: I   Patrick: Like   Joe: Just   Patrick: To maximum   Joe: Want to I think   Patrick: My.   Joe: It's amazing. I wanted to   Patrick: Thanks.   Joe: Give it its time because I   Patrick: Well,   Joe: Think   Patrick: Everybody   Joe: It's, you know.   Patrick: Everybody should start "Purpose Code", because the biggest value that they can get right away is truly to read this report that I wrote. And it's called "The Ten Things That Stop People From Unlocking Their Purpose". You got to know, how come I don't know my purpose? What am I missing here? So go to purposecode.com and just grab that free report.   Joe: Perfect.   Patrick: And then and then it'll it'll lead you to learning about Bliss Champions. It's an application process. I would love people to apply. It's free to apply, you know, and then we individually interview you get to know you and and we have all kinds of ways to serve. And   Joe: Perfect.   Patrick: You can get the book in your hands.   Joe: Ok,   Patrick: But   Joe: Cool.   Patrick: But let's let's let's see how many more how much more insider. Something super helpful we can pack into the last ten minutes here.   Joe: Perfect. So I have something that I totally wanted to ask you that if you can put it in an understandable layman's terms where it doesn't come across as being overly spiritual and fufu. But you talk about being present in so many people these days are talking about that. But I love watching your talks. When you you know, you're out doors taking a walk and you have your phone and you talk about it. But how do you put it in and like everyday   Patrick: Layman's   Joe: Terms   Patrick: Terms,   Joe: For it? Yeah,   Patrick: Yeah,   Joe: Because, you   Patrick: Yeah.   Joe: Know, everybody looks at and go, wait a second, you want me to sit in silence for ten minutes, meditate, or you want me   Patrick: I   Joe: To   Patrick: Don't write.   Joe: All of those things to pull yourself back in, to be centered, to have, you know, hold space for yourself, all these things. And it's just so hard these days. We're getting bombarded from all sides. So because of you and how you can communicate these things, I want to know from you what being president means and how someone could practice it on a daily basis   Patrick: Ok.   Joe: Where it's not this.   Patrick: You're   Joe: This.   Patrick: Making me. You're making me super happy because now you're bringing up my next favorite subject.   Joe: Perfect.   Patrick: So   Joe: Awesome.   Patrick: So I. I am both deeply spiritual about this, but but there's no need to talk about it in that way because I didn't approach it that way. I just approached it from man, I need I need a different way to do my life. And I found that different way to do my life. And it was the most revolutionary, impactful, beneficial thing I've ever learned or done in my life. And so you'll see me spend the majority of the rest of my life has boiled down to two two things. Two things on one hand, follow your bliss. And we've been talking about why, why, because it's your bliss, it will bring you bliss and, you know, as we say in Bliss Champions sometimes. Is there something better than BLIS because BLIS means perfect happiness? So what are you looking for if you're not looking for perfect happiness? So but in follow your bliss, there's a doing this to it, right? It's it's OK. We don't similar, but there is another path to bliss. And so I have a right hand and a left hand strategy to life in my right hand because I love having a career. I love to have something to do every day. I love making, you know, while having a career. I follow my bliss and in my left hand, I, I. Nowhere Bliss's without doing anything, I know how to find BLIS every single day of my life, no matter.   Patrick: What happens, no matter the circumstances, no matter the hardships, no matter the challenges, I know where bliss is, even in storms. So my career could not be going well, but in my left hand, I still know where Joy is every single day and how to get there in a concrete fashion. So that to me, my this left hand strategy I'm talking about that you brought up that I call a presence practice. That's where it sits in my life. So. Let's see, it's a good window into this. I'm taking a little quiet space for it to find me. Why would someone want to practice presence? Because what I didn't know I was well into my 40s, Joe, and I had never once wielded the word ego. And and up until the point when I got a new definition and it became very meaningful to me, Igoe to me meant don't be egotistical. It meant, oh, or you have a healthy ego. It takes a healthy ego. That's all I thought of ego when I was in. And then, to be honest with you, I hit a rock bottom in my life sometime in my 40s, my ego, the my shadow self, my bad behavior, the worst of me. The worst of me put me in a position where I were where I was at my rock bottom, and I thought to myself, there's got to be a better way.   Patrick: And I reached for there had been a book sitting on my cell for a long time that I had no interest in. It was called.    "The Power of Now", Eckard Tolle. And I grabbed this book and it re educated me and it re informed me and it completely transformed my life. The book didn't transform my life as much as my adherence to what the book said for the next seven years on a daily basis transformed my life. It did it very quickly, but I was so in love with what I was discovering that that I just kept being a diligent student of what Eckhart Tolle calls presence. OK, so in a very short amount of time, here's what I would love somebody to experiment with on this call that is non-spiritual. The only thing that is ever causing you a bad feeling. Is your thoughts? Now, so I had to wrap my mind around that first experiment with that, because I used to believe, no, I'm having a bad feeling because this shitty thing happened. And I was positive that was true. Until I wasn't until I began to say, wait a minute, is there a buffer in me that's causing the pain, not the situation, this is easily answered, but you should but everybody should try it on. That's life changing, because what if situations and bad circumstances are not causing you bad feelings? What if it's what you think about those bad circumstances, how often you think about those bad circumstances that are causing you a bad feeling? OK, for instance.   Patrick: I want to talk about the pandemic and then I'll talk about the pandemic, for instance, the day that it's announced that we're going to be in quarantine for however long, an indeterminate amount and 20, 20 people in the world had multiple possibilities for a thought about it. Somebody sitting in their home could have taken that news and began thinking all kinds of really bad thoughts that, hey, are well justified. I'm not here to argue with the with the with whether that thought is justified. But somebody could have been sitting there thinking, this is awful. I might lose my job. I like going outside now. I can't going outside. What are the implications of not going outside? What if I'm in my house forever? What if I get covid-19? What if my friends get covered and I die? What if they never leave? The governor is terrible. The president is terrible. The vaccine is terrible. Was it made in the lab? Those thoughts are causing in a bad and negative emotions in the body. And what if and some people thought those every hour of every day. Not not by choice, but by by habituated pattern of their mind, getting to think without ever being safety, without ever any but any other force saying hold on.   Joe: Mm hmm.   Patrick: Do we want to think like this 24/7? Is it serving us? OK, but equally to lots of people did that. So lots of people had horrible emotions. And I'm not saying don't do that, I'm just saying be aware that's why you had horrible emotions. What didn't happen is the pandemic is the the announcement the pandemic did not reach into anybody's body invisibly and say you now feel bad. Outside circumstances cannot reach in your body and and flip switches and say you feel bad. They cannot be the cause. If only a fox can be the cause, equally so and wildly true, unbeknownst to me just six years ago, but now perfectly known to me and the most exciting thing I've ever learned is some people heard the news of the pandemic. And fought and fought like this. Oh. We're going to go into quarantine. Now with to wash the dishes. And didn't have further thoughts about it until there was more news or until those thoughts were necessary. And didn't feel negative emotions, or if they did feel the negative emotions, only felt them for as long as that emotion lasted, while it wasn't being sustained by unchecked, unreasonable, insane, incessant thinking. So a president's practice is simply, well, on one hand, a presence practices the deep recognition that circum negative circumstance circumstances don't cause you upset your thoughts about them do and your ego. Ego should be defined as when when you're not thinking your thoughts, they're thinking you. And you don't even know it. So I learned to not be the crazy guy, the insane guy who is washing dishes, who is physically washing dishes, but who mentally in my mind for 15, 20, 30 minutes is having an imaginary argument that I'm winning with somebody else.   Patrick: I learned to not be that guy, I learned that I that I was concerned that we're all constantly that guy. And that you don't have to be that you can wash dishes while you wash dishes. And that if you do so, here's what I promise you, because I know from experience, if you learn to quiet, to say presence means I'm not going to be in the future, I'm not going to be in hallucinatory future scenarios. I'm not going to let my mind run off to hallucinatory past scenarios. I'm not going to hallucinate about the future. I'm not going to hallucinate about the past because those can only be hallucinations or call them imaginations. You cannot make the future real. You cannot make the past real. The only real is ever. But you can find through your five senses. So presidents practice means live in the real more often. Want to think about something, think about what you're doing. Be what you're doing. Washing dishes, wash the dishes. If you're working on your book, work on your book, if you're talking to another person, talk to another person. If you're watching the birds in your yard, watch the birds in your yard. So here's the let me give this for me, the big wild finish, first of all, if that's all I ever knew and I figured out how to do that six years ago without any other further teachings, I would be right where I am today.   Patrick: I and these are not light sentences to me, these are the greatest revelations of my life piece. A profound sense of constant peace, a profound sense of joy for no reason and a loving feeling. You know, that filled what I used to have this black hole of, gee, I wish I could get more love. And now I have a fountain of love that just comes from inside me for no reason, peace, love and joy for no reason are what automatically and guaranteed come from being present doesn't require meditation. It requires noticing that your thoughts are running rampantly out of your control and you can distance yourself from them. And then once you distance yourself from them, you can I I like to call them the roommate, you can notice your thoughts are not you? They are a crazy roommate that's always stirring up shit in your head and never stops talking. And you are not that roommate. And you can move that roommate to the garage in the day you move. And it doesn't happen in a day the more you put that roommate in the garage. One hundred percent, peace, joy, love, for no reason other than you moved your roommate to the garage and. Miracles will begin manifesting in your life. For some reason, the entire universe is more capable then of coming to support your happiness.   Joe: It's incredible. I just I can sit and talk with you all day, and we've already gone over our man. I could just I literally could sit here and then do this. So before we leave this one subject, I think it's important. Is there is there any sort of when you talk about the practice, is there any little tidbit of how someone can do that in the simplest way? Because I think everyone gets bogged down with all of the things that are just, you know, for example, we talk about meditation. Is this hard? I mean, I used to get up every day that I made it a promise that I wouldn't do anything until I just put my headphones on, put the app on on my iPhone, turn. Everything else also wouldn't be interrupted and just did it. And I felt like that was my most productive. Let's say it was a year that I did it straight. I haven't done it in so long. I feel like I got to get back to it. I can do it like I don't mind meditating. But first there are people that will never do that. So what is of super   Patrick: I'm   Joe: Super   Patrick: One of those   Joe: Simple.   Patrick: People that doesn't matter to me.   Joe: Ok,   Patrick: I was one of those people that will never meditate,   Joe: Ok.   Patrick: And I'm really happy to say that that both are fantastic choices, whichever you feel called to clearly. And they both lead to the same way. But if someone if if in some crazy really hypothetical, I can tell when I'm saying something stupid, I'm saying something stupid. But in some crazy, stupid hypothetical situation, it's a pattern. You have to choose one for the world meditation or presence practice. I would say we got to go with presence practice. It's easier. OK, so, yes, I have two things that are really simple and super practical and bless you for asking Joe the number one thing and and wildly enough this what I'm about to say is the prescription and the advice of seemingly every great. Teacher, you know, on the planet, that's that is spiritual and it's it's to be conscious of of one single breath. So at any point in time you go, Oh, I want to do it. I want to try this president's practice. You would simply take a one breath and be aware of that of your breathing for one breath. And your awareness, you can shift around, you just say, look, my job is to be aware that I'm having this breath so that for you that might mean, oh, I'm going to focus on the feeling of the air. Coming into my body and exhaling from my body. Or you might say, I'm going to become aware of the feeling of my body expanding and contracting, or you might you're awareness might say I'm going to be aware of the sound of my breath. Doesn't matter one conscious breath because it is impossible to be conscious of your breathing and think a thought at the same time. But conscious breath is both a great it's a great present to practice because it will be difficult for most people at the beginning of their journey to complete one conscious breath without becoming aware. Fuck, I   Joe: No,   Patrick: Started   Joe: That's right.   Patrick: Thinking. I started thinking during I, my mind got off the leash and started thinking something halfway into that breath. And so that's the great teacher one because that's OK. That's a president's practice of presidents. Practice isn't isn't stopping all thoughts. It's becoming aware. Are of the thoughts of the roommate. It's becoming you're you're you're winning when you go to the roommate came in and started talking shit while I was trying to take a breath. So that's called a wake, that's a state of a weakness that in as long as you're awake to your thoughts, peace, love, joy and miracles will begin pouring into your life. Mark my words. So but as you will practice that, too, you can take a conscious breath without thinking on most given days. Wonderful. OK, the second practice, right, is that built my life on this. Is. Step number one, notice when you're feeling anything that's bad. The only thing this doesn't apply to is physical pain. OK, so I want disabled people to eliminate physical pain. It can be applied to physical plant pain, but let's just say that's an advanced course. OK, but the step number one, the most important step is to notice, oh, I'm feeling upset in any way. And there should only be one word. It would be helpful if if people change and said there's only one word now we're going to throw out all these different various words hate, depression, loneliness, sadness, grief, worry, overwhelm, stress, anxiety, who cares? Fear.   Patrick: They all deserve really one word. Suffering. They're all a form of suffering, so notice the next time that you're suffering a negative emotion. Boom. Now there's a great opportunity for step number two, OK? And usually when you notice this, what's fascinating is you'll have been feeling it for a long time. That's how long it takes for awareness to come in and say, well, I'm feeling something bad here, but I did this very for at least a year and I got to choose my life. So first, I know I have a bad feeling. Step number two is built on the awareness we already learned. Every bad feeling began with a thought that was against something happening. Every bad feeling is caused by a thought that always follows the same structure. This shouldn't be happening to me. This shouldn't be happening. OK, so when you have a bad feeling, like you're like a person trying to defuse a bomb before it really blows up, and so you trace the wires knowing at the other end of the wire there will be a fire. You had a thought at the other end of those wires that was something about you thought it shouldn't be happening. Let me give you some examples. He or she should have spoken to me like that. I should have gotten that job. I shouldn't have gotten that. There should be more money in my bank account. There should be a different president there. There. That guy shouldn't be president.   Patrick: That shouldn't have happened through my television screen. I shouldn't be in this condition. I shouldn't have that ailment. I shouldn't have this pressure. I shouldn't have been raised that way. I shouldn't. So all you're doing is tracing those wires to what did I think shouldn't be? As it is. That was the source of your pain. Now, once you have that, the third step is to take that shouldn't it shouldn't have. And. See if you can find any part of yourself and you always can. It's harder at first that says. I can allow that it. That it is that way and you're why your justification, why can you allow that it is that way can always be. Sanity because. It is. That way. And as soon as you accomplish any ability to allow that, what you are against, to just allow that, it is it's even if it's temporary allowance, it's not saying I'm OK with that person being president forever. It's not an allowance of forever. It's I'm OK. I can allow that. That person is president. Currently, because they are. So you just looking for this momentary allowance of what all spiritual teachers say of what is to be against and I love it when they point out to be against what is is insanity. Because. I'm against that this can exist really, because it exists. Could you allow that it exists? I can allow that exist, why? Because it does exist, right?   Joe: So, so far   Patrick: Right   Joe: Of.   Patrick: Now, it's not a total acceptance of and I and I can I'm and I'm allowing that these cans will exist for forever. It's not saying that. Can you allow that exist right now? At first, you'll hear your ego go, no, I hate that can. But can you allow that it exists right now is anything. Yeah, why does it exist right now? And   Joe: The.   Patrick: And all all the it shouldn't exist or they shouldn't exist. It shouldn't exist. You can do that for 12 years. Twenty four, seven years can will still exist.   Joe: It's just.   Patrick: So if you can allow that, it exists. You have accomplished. A presence practice, because presence will what will happen next will always happen, you will feel better and you'll notice how I feel. I'm returning to peace. And once you accomplish returning to peace, you'll notice or I just feel in general more love, and then after a while you'll notice, someday you'll take a measure of your life, you'll say, is my lecture. If I say my life's joyful all the time everywhere. Why? Because you moved your roommate, your ego to the ground.   Joe: Oh, it's awesome.   Patrick: Now, there's a fourth final step to that, and I think of it as advanced, but so sometimes it's hard and sometimes it's easy, but it's super fun. The fourth step, the third step was, can you allow that? Something is what it is. And the fourth possibility is can you embrace. That it is what it is. Is there anything in you that could embrace that could say not only can I allow the can is there, but I can embrace that the can is there and you can see why that's a harder step because something you were previously just totally against, could you embrace it? Now, it's a that's a different sort of class, it's not complicated, but it takes more words, my journey towards learning to embrace things I was previously against. But I'll tell you, like some of the greatest revelations of your life come when you learn to embrace everything. Everything's.   Joe: It's really powerful, man

The Joe Costello Show
2021 Search For Life's Meaning - A Conversation With Mastermind Creator Chris Hay

The Joe Costello Show

Play Episode Listen Later Jan 23, 2021 56:17


I sat down with Chris Hay of LoveWorkRevolution.co to talk about his journey through his 30's and how he plans on changing as many lives as possible with his new mastermind. Enjoy! Joe Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.libsyn.com Subscribe, Rate & Review: I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to: https://joecostelloglobal.lybsyn.com Follow Joe: https://linktr.ee/joecostello Transcript Joe: My guest this week is Chris Hay, you can find Chris's website at LoveWorkRevolution.co. Chris did some exploration during his 30s right after selling his company. He now just turned 40 in November of 2020 and he's working on a new project, a new mastermind, if you will. He has an acronym for the project he's working on and the mastermind he's building.   Joe: And it's H.E.A.R.T. H is heal and hear your heroic heart.   E Explore your genius. A accept your mission R rebirth yourself T take action and trust. I would encourage you to check out his website at LoveWorkRevolution.co and also get in touch with him at Chris@LoveWorkRevolution.co. Please sit back and enjoy my conversation with Chris Hay.   Joe: My guest today is Chris Hay, Chris and I hit it off really well on a completely unrelated conversation to what we're going to talk about today. And during that conversation, we realized that we both are really excited about the same thing. And so I wanted him to come on and talk to us about that. He's originally from New Zealand. He's coming to us now from Barcelona, Spain, where he currently lives. Chris, welcome to the podcast.   Chris: Thank you so much. It's a great pleasure and honor to be here. And yeah, as I mentioned to you, I'm deeply grateful, particularly because this my first guest appearance. So I'm a little bit nervous, but I'm sure you'll go easy on. You know, I've got a lot of learnings that I've taken and been working on condensing down and really excited to share with your audience and and beyond. So thanks so much for having me.   Joe: Yeah, absolutely my pleasure. So if most of the people who have listened to any of my past podcasts know that for me, it's important to have the guest give their back story so that we understand who you are, where you came from, and it sort of lays the foundation for the conversation that we're going to dig in deeper about all that you're doing now and it new, exciting project that you're working on. So if you can't and this is great for me to because you and I have only chatted a few times, but it would be really cool to understand where Chris Hay came from and and where Chris Hay is going.   Chris: Yeah, absolutely. Thanks so much. So, yeah, an interesting thing happened to me when I was 31 years old in 2011, and I kind of feel like this is the beginning of the modern day part of my life with you. Life, like everything that happened up until the end was kind of a dry run or whatever. And then this one moment kind of feels like where I was sort of born again, if you like, what would become the, I guess, the middle part of my life or something like that. So basically, yeah, 2011. And I'm 31 years old and I'm sitting on the beach in Bali on my head, looking out on the most spectacular sunset. And I've come here to celebrate selling my business, which I've been working on all throughout my 20s, kind of leading up to this moment with this great anticipation that when I saw my business, you know, I'm going to have cash and in cash flow looks like the happiness. And as I'm sitting there looking out on the sunset, I just feel dreadfully lost and empty and just completely bamboozled, I guess for lack of a better word, that everything I've invested all of my hopes and dreams that I'm building up to this this milestone and then cashing out is going to bring all this happiness. And of course, it just doesn't. So that's right.   Chris: As I sat there and over the next three days while I'm on this vacation, I really was reflecting on my the paradigm change that had happened to my brain because I realized that concurrently I'd lost my purpose and my reason for getting out of bed in the morning, because previously I've had this business. Now I'm like, how am I going to do with the rest of the life? I'd also lost my identity to a large degree because I had been quite ripped off and invested in the identity of being like this 20 something year old, pretty successful entrepreneur. And now I'm kind of like shit. I just I don't even know what I'm going to do next and I'm going to go about figuring that out. But perhaps more than anything, I realized that I've really lost my art on how to find happiness. And and I really believe that this maybe not lasting forever, but like at least, you know, the golden boy that could last more than like five minutes or something like that. So as I reflect of all of that, I was talking about like, OK, where do I go from here? And I knew that it had to be something entrepreneurial because I don't want to go back and get a job like looking for the man. But I knew that I had to be about much more than just making money.   Chris: I had something much more impactful and meaningful and genuinely like helping people because my previous business, to be totally honest, like when I thought it, I really was pretty much just thinking about the money. That was my main motivation. So I reflected on all of this and, you know, and kind of sat there for the rest of this vacation moping around, kind of feeling sorry for myself. I really had no idea where to start and try to figure out how to rebuild my life. And and so it began, as I call it, has other people refer to it as the dark night of the soul. You know what? Tend to lock it up for me to be quite a long and painful, drawn out process that really, to be honest with you, lasted pretty much all of my thirties. Thirty one when I sold that business, I turned 40 in November, just gone. And so really throughout my thirties was this really intense and difficult period of introspection and and figuring out all the elements that I don't like about myself and other. I do like to myself initially, you know, and really learning deeply, but not just about myself, but about how I could show up and and and do work that I would love and have a positive impact in the world.   Joe: Can I ask you one quick question?   Chris: Yeah. Yeah, of course   Joe: So we hear this so often when someone that's successful. Right. And we always we hear from the wisdom of those who have accomplished something and they've reached some sort of financial stability and then they get to that point or they get to that moment of what they call success. Right. What they originally were striving for, which was the money and creating this entity. And then potentially, right? if you have a business, the goal is eventually to sell it in cash out on that and then maybe go to the next thing. Right?   Joe: But we hear so often that people get to that spot, they sell, they have the financial freedom, and then it doesn't it's not what they thought it was going to be. And I think that the hard thing for people that maybe haven't gotten to that point yet and the only reason I want to stop you here is because these things also get into my own brand, like what was more painful, struggling financially or getting to the point where you had the money and then it wasn't all that it meant to be like if you had the choice.   Chris: A great question. So it's a really good question.   Chris: So I guess I would like to reframe that question. What I'm hearing is like what was the greatest challenge was that the struggle for money or wasn't the struggle for meaning which came afterwards? Well, until I cashed out of that business, the money was the biggest struggle I'd ever had. Like struggling to build that business was the greatest challenge in my life that I've had. And until that time. But it was superseded by what came next, which was the struggle for meaning. And I think I don't know, I'm in for some lucky people, this might come a lot more naturally than it did for me young people or more successful than you. And whatever metric you might consider their success, whether it's financially or or perhaps a more holistic measure of success, is how well they've found their passion or the purpose or and ideally the combination of those good things that they sound like they're they're passionate about and are doing well financially out of it. I mean, that's the gold standard. I think that's what we're all aiming for. So for me, making money, making money was was hard making making money or like making it even just an income or a comfortable income that's good enough to live off and whatnot. Doing what you truly feel like you want to do is, I would say in some ways more challenging because it requires that you know yourself at a much deeper level, which can only happen with great introspection and then over time.   Chris: But in some ways it's easier when you find it because, you know, you might have people say that if you you find the kind of work that you're supposed to do on work that you love and you'll never feel like you work another day in your life. Right. So as you I think as you get closer to finding as you sniff it out and you're on the trail and you're kind of getting closer and closer and closer with the various projects you might be engaged in and then honing in on the work that you truly want to do that feels like play for you and makes you come alive. Then then I guess that part of it gets easier. And then you try to, like, build your skill level to a standard where the world will reflect the value back to you in the form of financial renumeration. That makes sense. That's a very long way of asking your questions. I would get into that, I guess, easier in some ways and more challenging in other ways. But certainly it requires a much deeper level of self-awareness, I think, which takes longer to get to just how do we get a product designed in China and sell it on Amazon, for example? I suspect that people are doing that.   Joe: But I mean, some people possibly will struggle their whole life. And it's unfortunate. And and I meant that like financially or also that they're not doing what they were meant to do on this earth. Right. So the choice is if you gave someone the choice of saying, OK, you can have you can. And the struggles usually are the financial part of it, the your health. And then it's whether or not you enjoy your life. And that means you're doing some. That resonates with your soul, right? Maybe those are the you know, there's probably more I mean, a million books and but if I think about myself, it's like, OK, I have my health. I love a lot of the things that I'm doing. And I might not be at the financial level that I want but I think if I if I have the choice, I'd rather be where I am and and and do this than to be financially free. But hate what I have to wake up and do every day. Right. So and I think the problem is, is until you get to the point where maybe you got to where you sold a company and you had some financial freedom, when people hear someone like you say, hey, you know, I sold my company, not just you, I mean anybody. I sold my company and I I made a lot of money and I got to the end goal of what I set out to do. And at the end, I wasn't happy. And if someone hasn't done that, they have a hard time relating to resonate with that.   Chris: Yeah. Yeah. Well, I mean, another way to put it is like at the end of last year, the year before last, now coming into 2020, let me sort of Zoom out again for a second that like this wasn't a one and done for me, you know, like after I sold the business and had this experience of kind of like reaching an extrinsic goal and, and finding that this feeling of emptiness on the other side of it, like you would think that that would be enough to kind of knock, knock, knock that paradigm completely out of my head and replace it with the new paradigm.   Chris: Only do things that are intrinsically rewarding. Which, by the way, science has found that intrinsically rewarding tasks, things that you would do even know that are rewarding in their own right for richer or rewarding motivation that leads to greater happiness. So if you can find if you can if you can pursue that, then you will be happier, even if you don't have to get to the high paying job in order to realize that it's simply just research around. Like, for example, is a Daniel Pink's Motivation 3.0, where he talks about intrinsic extrinsic motivation. So if you understand that, you will have a richer, better life experience by being driven by things like purpose and mastery and autonomy, then you can you can build that into your job, crafting if you're employed or into your business, if you're an entrepreneur. So you don't necessarily have to get to that milestone and realize that's what I started out by talking about how you think that having this experience once at such a deep level would be enough to kind of totally rewire your brain that you wouldn't make the same mistake again. But for me at least, and I think that it's common a lot in our culture, we're so hard wired to be motivated by extrinsic motivators, money, the trappings of success that add up that it's very that I didn't just learn at once like this has been.   Chris: I don't like the volition of my lifetime. After I sold that business and I vowed to myself that whatever the next had to be about more than just the money had to be more meaningful. I would still, for the several years that came up, that still pantelides that be like and tempted by lucrative opportunities. And I spent countless lost months and cumulatively is kind of going down the rabbit hole just like, oh, this looks like a, you know, an interesting business idea, which is just financially motivated and whatnot.   Chris: So I got to the point anyway, where I get before the last bout, or at least my New Year's resolution was to remove all extrinsic goals and replace them with one goal, which was in a piece, because I think that we oftentimes put in a piece or happiness on the other side of extrinsic goals, like when I achieved this milestone, then I'll feel happy. And when we do that, we you know, we pride ourselves on happiness here and now and then.   Chris: So that's the trap that I found myself falling into time and time again. And I'm pretty sure I'm not alone. And so. Now and when we have these big, lofty goals, it creates a friction as well, like where where the goal is and where we are now and then at least all of these feelings of inadequacy and lack of self-worth, because I'm not, quote unquote there yet, you know what I mean? So I'm still kind of trying to get my head up, to be honest, at the deepest level.   Chris: But I think that it's about kind of holding holding space for ideas and visions that you might have that you want to achieve, but also kind of being less attached to them, I guess, you know, so that they don't rob you of your happiness here and now and above all else, being present and being grateful for the moment. And and I've found as well and spoke at a lot of other people who kind of have the shared experience as well as like the more we do that and remove ourselves from this relentless rushing towards the goal that may or may not ever eventuate and leaning into the future and at the cost of sacrificing our happiness here and now, that the the the more we stay present, the more kind of, you know, without getting to work with, the more kind of magic shows up in our lives. But first of all, we just appreciate the moment more. So maybe, I don't know, you take time to go for a walk in the morning and smell the fresh air and admire your your neighbor's flower garden or whatever it might be. So you notice those things. But also and this is this is kind of borderline a move by magic can sometimes show up like synchronicities and whatnot. And so that's the one grand synchronicity that kind of unfolded in my life, which led to a deeper understanding of my work and my my, my my greatest gift that I feel that I've received and that I can kind of share with others. So I'm curious if you want to go there and share that story with you as well.   Joe: Yeah. So because I kind of interrupted you, because I wanted to clarify that, you know, if you've seen both sides, not everybody, I guess that was my point. Not everybody sees gets to both sections. Right? They either. And if they do that, like you said, they're they're either really happy doing what they're doing. And I think it comes when you're you're serving others where it's in alignment with yourself. Right. So if you if you have figured it out, which is really hard to do, but once you do and you can stick with it and not have it be like the way our world runs right now to be present and all the things you're talking about to be still and to leave space supercop. Right. We have so many things coming at us and and we're told to that you have to be really active out in the world of social media. And I'm just as guilty as the next person. But so it's really hard to wake up and take that one and walk past the flower and actually smell it. And it's just it it doesn't exist. It's really hard. Right. So I interrupted you when you were talking about how once you sold your company, there was through your 30s, you just felt like you were still trying to figure out how to find this this spark, this bliss, this inner peace. Right. So I guess that's where we're at now because I so rudely interrupted you.   Joe: But I want to. That's that's cool.   Chris: That's cool. Let me come back because I'd like one of the thought that kind of might help put a bow on this.   Chris: You know, this concept of what if you if you haven't kind of if you haven't if you've got to like you've made it financially yet, how does that reconcile with the experience about sharing? One way to look at it, I guess, is like Maslow's hierarchy. Right. Which at the base of the hierarchy are like food, clothing, shelter, all of those things. And then at the top is self actualization.   Chris: And in fact, about that and self transcendence, which is another category that I added to the to the in the twilight years, which is kind of little known and underreported then management textbooks. But it's an interesting concept that maybe will come later.   Chris: And and so there's no doubt that if you haven't made enough financial needs yet, then you're not going. The crisis of meaning is going to mean much less to you because you've got to cover those basic needs first. And so in some ways, it's like a physical problem, I guess, to a degree, like a crisis of meaning. But I still believe as did Maslow that if you are lucky enough to supersede the baseline financial needs and then if you don't feel like you've made it there yet, I would encourage you to reflect on if you if you really do need all of the things that you currently pay money for because you never get caught up in wrapping.   Chris: And spent a lot of money on unnecessary things. Maybe you can live on much less and then spend time instead of working to obscure things that are truly, deeply meaningful to you. And as you said, like figuring out how you can be of service to others while serving yourself as well, rather than sacrificing yourself to save others.   Chris: But at the top of Maslow's hierarchy, which is the apex of the human experience, is the self transcendence for giving yourself to. As Becca Franklin said, you've got a great quote where he says specialization is possible only as a side effect of self transcendence. So you can only become your best self by losing yourself in service to a cause greater than yourself, essentially.   Joe: Perfect. OK, so you're now when did you restore it back to the story?   Joe: So when did you get over that hump? Let's call it.   Chris: Yeah, so to be honest, like I'm still getting over, I feel like, you know, it's not going to take me. But there was one moment of kind of like a pivotal kind of, I guess, turning moment where I was at a personal development event in Hawaii. And we were asked actually Patrick Combs, I was attending one of his retreats in Hawaii and he was leading an exercise where he had us write our eulogy from the perspective of living essentially our best life from from this point forward. And it's been a really busy day. And it was the last thing at night like this. It was dark, dark outside and then back inside of us as we lay there on the on the ground and this little torch can light and to whatever would come to us in terms of how we're going to be remembered from from that point at our eulogy, having looked at our life from that point forward. And so I tried to empty my mind out. And really the only thing that I really like, I really believe that love is the universal connect, the one thing that we all share in common. And so I just wrote, Chris, touched a hundred million and I thought, I'll dream big ya know a hundred million people with love in this lifetime. And then I thought, this is my one chance to dream really big. So I added, an extra zero or zeros. So I made it like Chris touched one billion people with love in this lifetime. And then and I didn't really know exactly what they meant. I still don't really. But like, as I read it out and it will give me the opportunity to share with the rest of the group.   Chris: And as I read it out, I felt this wave of embarrassment like rush over and be like, oh my God, I made a fool of myself. Like we had a dream so big that I could possibly impact a billion people. Oh, my God. Fortunately, it was the last was the last exercise of the day. And I started back to my room and kind of like it under my pillow pretty much. And and then I woke up the next morning and I was still really grappling with the sense of shame and embarrassment of having this out. And I think it's big. And so I went for a run down to the beach and did a meditation on the beach. And then on the way back, I had to stop for a public restroom. And and I'm standing at the urinal, of all places. And I looked up on the wall and someone had drawn a love heart with wings. And it's like, oh, that's kind of weird. And then I like that. I look around the bathroom and actually someone had drawn love all over the wall so they hadn't noticed coming in. So they were expecting is like, what the hell? You know, like what what does this mean? And, you know, I grew up in like a very scientifically minded family. And so I try not to believe in woo woo stuff or synchronicities and that kind of thing in my life has been a screaming pattern recognition bias. You know, like humans, the brain is programmed to recognize things like that. And then as I reflected on it, but maybe the recognition from my brain or maybe just my desire to kind of leave or make sense of things, but I guess I chose to adopt that event as some kind of affirmation, a potential affirmation from the universe, that go all in ya know life like it was.   Chris: I let my mind go empty the night before when I had like to think about what I wanted to be remembered. And it felt like it was the source or the universe kind of speaking to me and wanting this. But I think this idea of this really is the most important thing. And I think that it's you know, I'm not sure if it's like I meditate a lot. Right. And and when I meditate, I feel what can only be described as love. And people will get that through prayer and maybe being in nature, watching a sunset, that kind of thing. But when you stop thinking in your mind goes empty, your serene, blissful, it's beautiful. And it feels to me like I can't think of a better word other than love. And so I don't know what love is, the fabric of the cosmos or the some underlying kind of fabric of human consciousness or both of those things, I'm not really sure. But there's something mystical about it. And and so I chose to adopt this as part of my story. And as I reflected on it more, I kind of thought, well, not only does I take this as an affirmation that the that I should pursue love and trying to make the world more love place. But I thought this this love with wings is an interesting motif because it love heart with wings. It's the same somewhere. It invites following.   Chris: And as I reflected on it, I thought of this Steve Jobs quote. That was one of the first videos that I developed, my kind of videos that I watched after I came home from from vacation in Bali. So my business always. Had earlier, and he has this great commencement speech at Stanford, I think, where he says this above all else, follow your heart and intuition that somehow already know who you truly want to become. And and as I reflected on that, that's like that, you know, through all of these trials and tribulations of my theories, trying to figure out who I am, how I can show up, how I can help other people, if there's one thing I can put my hand on my heart and say is that I really did follow my heart. And so and then I was on a flight. And you know how you get those quiet times on flights where you might be doing some journaling or whatever, and you just kind of get these flashes of inspiration. And and so I started to etch out what would become this framework around, like how to follow your heart and everything I learned about that. So, I mean, I did around an acronym for H.E A.R.T. H is heal and hear your hero heart and E is explore your genius, A is accept your mission,  R is rebirth yourself and T is take action and trust. And so yeah, like five modules and I really just the greatest joy of my life to try to condense down everything that I've learned over the last decade and, and try to make something beautiful out of it, out of all of that struggle. And I guess I kind of relate back to your initial question. You know, is it easier to make money or to make meaning? And then I guess of that is like, you know, what's what's more gratifying? And in my experience, you know, like this is this is brand new. And I'm actually looking for beta test people to kind of come and be guinea pigs with me. But this has been the most meaningful and interesting and validating experience of my life. Like it's the gift of stuff to everything I've learnt, really, to teach.   Joe: Yeah, that's awesome. So ultimately, you're going to I know where you're going to think of a name for for all of this or you have ideas, but we're not we're, like you said, is being transparent. This is new. And we didn't want to like for some sort of title to this, but you you had it.   Chris: Maybe it's like maybe it's like your back to your greatest destiny or I'm playing with, like, discover your destiny or something like that.   Chris: Now, one of the things that I left out is like this thing about the love and making the world more complex and following your heart is that I think like love is the language of the heart. And I think that when you follow your heart. When you follow your heart and you find the work that you feel called to do. That can be your greatest conduit, one of your greatest conduits for love, I think you create that work with the motivation of love and you serve. I think you end up serving people who who who resonate with your story and to appreciate what you've gone through and probably going for something similar. And so you have empathy for them and in their case and you want to help them. And so that feels like love to me. And so I really like your vocation can become like one of your greatest battles that you have for manifesting love. And so if you believe that, as I do, that that love is the solution for most of the world's problems, then I believe that by following your heart to find your ultimate vocation that brings you to life the most can be your your heart. Your heart knows the way to those people who you truly want to become, but also how we can create a more loving world in the process.   Joe: Yeah, and it's really interesting that I know as young adults and I've I've put up a post about this on certain Facebook groups that I'm in and I've reflected on this a lot, which is in the day and age that we're in now, there seems like we are. We're constantly trying to fix something that's broken, right, and it's usually and I'm talking individuals, right. Saying that we we get to a certain point and we realize, like you, when you sold your company, like many of us, when we hit certain points in our life that this isn't right. This doesn't feel right. It's not making me happy. All of the things that go through your head and I keep thinking, gosh, I wish we could just get to. The young adults earlier, like just this whole thing shifts from where it is here all the way, like they just take anything that any of the people that you and I know are doing or the people like Tony Robbins, the work that he does, Dean Graziosi, you know, good work Patrick's doing with Eric. If we could take all of that and just slide it earlier and just and I know that at a certain point, the young minds are not they don't have the attention span for there they are don't have the interest in it. They're not mature enough to understand it yet.   Joe: But there's got to be a point where if we took all of this and just brought it way earlier in the life span of a human and just got to young people early and said, listen, before you get to where all of the rest is, not everybody's like that. Some people just find what they were meant to do and a really young age and are happy and life is grand. I would say the majority don't. They wander around really lost for a really long time. And the only thing that they always seem to gravitate to is making money. It's all financial and just and so they go down this path and then they come to realize later in life that that didn't work. But then now we're in like repair mode, right? Instead, it's like, God, if we could just figure out a way to guide young people to saying, listen, we can tell you now that money is not the answer. It's following your heart. It's being nice to people and loving and caring and empathetic and transparent and having integrity and all of those things that that if you could learn those and navigate that, all the rest will come to you because you're deserving of it, you know. But it's just it's such a frustrating thing for me.   Chris: Yeah, absolutely. I mean, it reminds me of a story I wanted my friend Raj. He has a similar kind of story, wildly successful coffee company and business empire, really at the stage. But he was looking for an oil company when he graduated college. And one of his mentors within the company was a guy who was 60 or something like that and really didn't have a huge passion for the work. But he had another interest outside of work, which was now. But it was maybe it was, I don't know, like wood work or something more textile that he wanted to do with his hands. And he was always talking to to do this when I retire. Yeah. And then and then he passed away like that at age 60 or whatever and never reached retirement. You know, for my friend Raj, that was it.   Chris: That was like that was that was all he needed to kind of be like, I'm not falling into that trap. You know, life is for the living. So. Yeah.   Chris: And then they kind of back on what started out by saying where you we could only get this information at the end to people to get younger.   Chris: If you're younger and you're listening to that's the one thing that I guess would encourage you to do as well as following your heart or maybe even kind of in tandem with that or another way to frame it or it even comes before following your, following your heart is kind of a, you know, a slightly amorphous kind of thing to say I'm cognizant of that. But I think following your curiosity is a great, great place to start. And so, like for me, having sold my real estate business and then I had no idea that I was going to end up essentially in the personal development space, you know, like where I come from in New Zealand. I've never met a life coach in my life, know what I mean?   Chris: I didn't even really register for me that that was a viable option. So for me, it took me a long time to put the two together and go, oh, my God, like, what if I could teach everybody? But what if I could teach people, for example, in a word or, you know, some light on a dark night of the soul or some of the challenges, everything I've learned how gratifying that would be for a long time to get to that place. And I would but I wouldn't have got there had I not followed my curiosity and my curiosity in the first place was for personal development content. And so I sold that business and that that watched that Steve Jobs video.   Chris: And and that was the aspect that the next several years were just a whole kind of personal development books and YouTube videos and everything I could get my hands on to try to figure out myself and and and and so following my curiosity, whatever your curiosity is, I'm read a...   Chris: I look, I had an awesome video interview with Common, the rap artist Common A...just a couple of days ago   Chris: But I was out walking my baby and he was talking about the same concepts of essentially service as being of service and finding your greatest gifts and getting them to give service to others. And he would say, you know, he started out in music because he enjoyed it.   Chris: It was for him it was therapeutic and it's cathartic. It was fun, playful. And I guess he was following his own curiosity. And the people say, follow your passion. I don't. What are you curious about? What are the books you read? What are the experiences you'd love to have? Where might you love to travel? How would you like to speak to if you have the opportunity? Follow your curiosity and so Common followed his passion for music, curiosity and music and then realize how it could benefit other people, you know, how their audience are reacting to it was obviously resonating with them and giving them an emotive experience and and giving giving the audience joy. And then ultimately the cash comes as a result of that. So that's like one of the really interesting models that I discovered along the way as well. And you can look back up that it from what I saw this one talking like I was talking about basically the the default model that we have in society for happiness essentially is wrong.   Chris: You know, it's based around Do Have Be like you think of that and like you do whatever it takes to have the stuff that you think you need houses, cars, material possessions in order to be happy. Right. But but if you flip that around a there's another interesting models, which I would advocate for, which is Be Do Have and I'll explain that essentially and be happy now and the research cutting edge cognitive psychology research actually shows that when we are happy, here are now, happiness and optimism fueled performance and achievement. So if you're interested in that, you can look up a book called The Happiness Advantage by Shawn Achor where he really dives deeply into that and finds that when get when you show up in it and a happy, optimistic state where we're trying to perform, you know, we're more open minded, we're more creative, all that stuff. So be happy now and don't put happiness or a piece on the other side of extrinsic goals. Extract the self evidence now and then find. And so then. So that's Be and then the next step is to Do so, do what you love. And if you don't know what it is you love to do yet, I would say follow that curiosity.   Chris: And when you do what you love, ultimately your as Steve Jobs says as with all matters of the heart, you'll know when you find it. And Mihaly Csikszentmihalyi has a wonderful called Flow where he talks about the flow of state that that athletes get in when they're playing, that painters are in when they're painting, musicians are in when when they're making music. But also, you know, in other professional fields that are kind of elite that everyone could find themselves doing, can be employed when they're cooking or a coder is in flow when they're not coding and a designer is and flow when they're designing and people who have podcasts are probably in flow when they're in conversation. And so for that flow state is where we create point. So if you can find work that you if you can find work that brings you into flow in that flow, stay with time disappears and then you kind of lose focus or lose touch with the outside world and you're just lost in the work like that is that's when you know, you're you're on the right path and that's that work that will never feel like work. It really feels like play. And so then the final stage of this model, be happy now through the work that you love, will do the work that brings you to the flow.   Chris: And then Have and so the keeping with the Have and this model, that is the first one where you're doing whatever is necessary in order to have now you're happy and you're doing what you love and Have part kind of like follows you, magnifiers into you because you're doing your best work, which is in flow. And then eventually, sooner or later, when you can have certain degree of competence at that, what the world will reward you people will take notice. And I'll be like, holy crap like Joe's podcast is amazing and this other work that Joe does, he obviously loves doing and shows up with this immense passion. It's like so inspiring. I want to be a part of that. Like tell me how I can be one of Joe's clients, you know, and the money kind of gets magnetized to you. Becomes a by product rather than if you're going out to get the money, you're going on to do what you love and be of service and and yeah, yeah,   Joe: It's very interesting because I'm doing some work now in my own career. And part of it is the piece with Russell Bronson and and he just talks like he literally today's live webinar that we did. He literally got on there and right out of the gate, he was like, if you are here to make money, you're in the wrong place. It was like, I am here to get you to shift your mindset and to figure out what it is that you are here to do and how you are here to serve others. He goes, and when you figure that piece out, all of the rest falls into place. And it's in it's kind of like the whole thing where the universe gives you more of what you what you think about and what you are attracted to. And so if you are attracted to complaining and feeling like he woe is me and all of those things, that's what it delivers more of. Right. So if you shift it and say, listen, the more and more people I can help, the more and more love I can spread, the more and more whatever all of that goodness just it just naturally happens. Right. And then all the other things fall into place. But it's just it's really hard for us where we are in our lives again. God, if I only knew that 20 years ago or 30 or whatever, I just if that's what's really frustrating. So yeah. And I want to get back to what so what you're doing this work that you're doing and what you're about to offer to the world and present. Right? What in what form is this going to be and is it is it going to be a when you said you want beta testers, is this a course that you're going to run people through? Is, is...explain that piece of it to me.   Chris: Yeah. For sure. So I'm thinking of a 90 day program, OK, 90 days. And like the small group, you know, maybe in four or five or ten people and and basically just a donation, more or less, if you like. You know, it's not about the money, but I think if somebody pays some money, at least, you know, they'll show up in a more committed way. So whatever, whatever potentially whatever people are can afford or are comfortable with, you know, I think it's such an important material that and my passion is to get it out to whoever and not let people be hamstrung if they think they have limited financial means.   Chris: So, you know, some some very big price point. And and, yeah, I think I think a 90 day program to start with is enough to really get people pretty deeply set and the concepts and really understand all the stuff at the same level. And and then you want to go take a longer than the one year thing or even a month or whatever.   Joe: And what's the product going to look like? Is it going to be like in a Facebook group? Is it on your website? Is it some piece of software developed or basically the kind of like a mastermind where in a training environment where we'll have a small group and then just meet every week, once a week or 90 days, and then we'll have like a Facebook group? Yeah. So there are these five modules where we'll be stepping away, moving through these for scale. And er and so just real quickly, like what I mean by something which like you're familiar with The Hero's Journey, Joseph Campbell's Hero's Journey. Yes, so like Star Wars and every major blockbuster movie is basically written according to this format where there's a hero in there, you know, they're at home, they're in their safe, nice, warm bed, more or less like the hobbits in the shire and then some there's some catalyst and that call to adventure and they go out where they need allies and enemies and face obstacles and overcome these. And in the process, they gain the kind of awareness of self and and ultimately face their biggest fears and then come back, return home, essentially with the power to bestow upon their common man, as Joseph Campbell would put it and so it comes from all of humanity, oldest mythology and whatnot.   Chris: So Joseph Campbell wrote a book called "The Hero with a Thousand Faces" where he kind of discovered all of this and then Lucas was it, Lucas who did it wasn't Star Wars was one of the first to really adopt it into a major motion picture. But it's a really interesting frame sort of to do your life for.   Chris: And I guess I argue that it's not just for the movies, but I mean, there's a reason why we kind of resonate with the parents and movies that we admire their courage and and their following of their heart, really, to face their demons and ultimately return home and take a bit of vision of themselves and able to help their fellow people.   Chris: And so part of the way that a lot of work around the growth mindset and process is fixed mindset and how if you think you can if you think you can, can. And the difference between fixed and a growth mindset. And I would argue that this is, you know, viewing yourself, doing your, um as Joseph Campbell puts it, that you are the hero of your own life story. And so I believe that viewing yourself in the spy or even just playing with this concept of like viewing yourself as the hero of your own journey and that you have to face titanic challenges and surmount them, and then how can you grow and what you learn as a result of that? And how can you benefit benefit other people with what you learn as you go through this personal growth, like viewing your life through the ______ lens? I would say the ultimate growth mindset and then the H is the Hear and heal your heroic heart. And hear is what I heal is, you know, they say we can only love others as much as we love ourselves. So this is like developing self-love and really becoming more compassionate with yourself and improving your internal narrative and and and being more loving for yourself so that then when you find when you move through the process in the program and you figure out the work that you do, you'll be showing up from a place of love and then to hear your heart, you know, this is around like tapping into your inner wisdom for journaling and meditation and stuff like that, and then explore your genius and some of the stuff that really cool down a little bit around discovering your superpowers or your own zone of genius, as Gary Hendricks put it, as opposed to your zone of excellence and sense of competence and so on, which is so like separating out like what you're truly genius, that which is others activities that bring you into flow most often and do everything you can to structure your your work life around those tasks and get rid of everything that drags you out of that.   Chris: And then accepting your mission is built around something that's a rarity and a little bit around like Maslow's hierarchy and how we can only self actualization as possible, only as a side effect of self transcendence. So so to serve and truly contribute to others is how we how we could be the best selves. And we see this in our political leaders and so on. If you think of like Nelson Mandela or Gandhi, Mother Teresa or some of these people, these icons that we really admire, what do we admire about them? We admire and how much they've been of service to other people and the effect that they've had.   Chris: But it's not only political leaders, also business leaders and business leaders, for example Elon Musk said that coming from PayPal, he thought to himself , what are some of the other problems that are most likely to impact the future of humanity, not thinking what's the best way to make money? Interesting. I read an article a couple of days ago where he's just surpassed Jeff Bezos as the world's most wealthy individual you know obviously on the rise of the electric car and stuff, but everything's happening with the climate. But so, yeah, accepting your mention is about like figuring out how can you how can you tell what, A, that you might give you a life for? Ultimately, what do you care about more than you care about. What would you do even if you knew you would fail the kind of thing in a mission that is so big that you could spend the rest of your life pursuing it and still be satisfied, even if you didn't fully realize it, but contributed what's towards it and then R stands for rebirth is really just like stepping into that new identity because there's a lot, you know, people will know you as they've always known you and expect you to be, and they always thought you were kind of thing, but when you step into your life, it's great. It's worth a lot of that has to change. And so dealing with the fallout of some of those relationships that need to change and and also how to pursue the new relationships that will move forward and surround yourself with, you know, people who won't let you fail and then finally take action and trust.   Chris: So that's kind of what it sounds like to get your thesis around. Like holding each other accountable and having a part of this program will obviously have accountability groups and have a positive peer pressure that would show up. And and if you want to do not do the thing that last week you said you were going to do, that was going to move the needle for them on your most of most important projects.   Chris: And then. And then Trust and you're finally, just trusting. And I guess that's the slightly mystical thing, you know. And when I talk about the trust, I talk about that event that happened to me in Hawaii and how that invited me to trust to put aside my rational left brain scientific thinking mind and believe that just maybe, you know, the universe might be conspiring to bring great things about for people who have other intentions.   Chris: So, yes, that's it.   Joe: That's awesome. And I guess it's safe to say you're in rebirth mode, right?   Chris: Yeah, exactly. You got that? Yes.   Joe: Well, awesome. OK, so what is the website URL? I'm going to put it all on the notes, but I just want to make sure.   Chris: Yeah, yeah.   Chris: It's love work revolution so loveworkrevolution.co.   Chris: And so the word revolution is an interesting one to talk about how I think by following your heart you can find the work that you love and that will bring more love into the world. And then the revolution piece is Gallup, which is a research institute there in the States that are really a massive survey where they interviewed hundreds of thousands of people and found that I think it was. Eighty seven percent could be slightly wrong. And that's in the 80s, 80 something percent of people are either disengaged or actively disengaged in their work. So there's so many that's a disaster not only for the personal suffering of all those people who have to show up for work that they hate every day. But the the untapped human potential, that's just going to waste because people are sitting there, like, not really giving a crap about what they do. And and and at the same time, you know, humanity faces all these immense difficulties and challenges that we face globally around like climate change and poverty and all these really meaningful causes that people could engage with. And that's what we're languishing doing so we don't care about. And Malcolm Gladwell in his book "Tipping Point", found that there's a there's a kind of a magic number around like 20 percent. Like when 20 percent of people latch onto an idea, then there is a tipping point it can spread for the rest of the community.   Chris: So, I mean, the margin of people who are disengaged in their work in the high 80s and the number of people who need to be defined to do what they love in order to create a revolution or a tipping point, and where we can see a sea change, where it's written for the rest of the population is around 20 percent.   Chris: So there's only about six percent of people that we have to move to find work that they love, an create a more loving world. So that's why I loveworkrevolution.co. So co   Joe: Ok, cool. So I'll put that in the show notes if someone wants to become a part of this, what is the best way for them to get in touch with you   Chris: Yeah just shoot me an email, it's Chris, C H R I S at loveworkrevolution.co    Joe: Perfect, awesome! Ok, and then I'll get all of this in the show notes. And I wish you luck with this. I know this this is it for me. I can tell how it comes out of you. I see your eyes light up and you just you just know. Right, that this is what you've wanted to do. And this is this, this speaks to you, so and I think it's going to be amazing. I'm glad that you've decided to do this. And I look forward to seeing this blossom and help a lot of people out there.   Chris: Thank you Joe like so much today. Today's been a big deal for me, as mentioned, this is my first podcast interview talking about this stuff. So I just really appreciate you giving me space and letting me connect with the audience. And as you mentioned, you know, you can tell what this is it for me. And it really is. You know, this is the last 10 years of my life kind of accumulating and coming full circle and to, you know, in my way of making meaning and purpose and sense out of all of the struggle of the last 10 years. So needless to say, I am deeply passionate about this and intend to do this for a very long time. And so I look forward to several years from now when, you know, you and I can catch up and have a beer together and say, hey, remember that time I was, I was on my first ever podcast with you. So I really appreciate you having me, man. Thank you.   Joe: Yeah, it's absolutely my pleasure. Glad to be here in the beginning of all this will actually get to see it, turn into something great. And I'm looking forward to it. So, Chris, thank you so much for taking the time. I know it's late there in Barcelona. It's probably been a long day for you. And it was really nice to talk with you. And I was super, super excited about this for you. And again, I'm looking forward to seeing what happens.   Chris: Thank you. Peace and love Joe and to your audience, thanks for listening.   Joe: Yeah, OK. We'll talk soon. Thank you.   Chris: All right. Bye for now...

The Joe Costello Show
A Conversation with Jazz Great, Papa John DeFrancesco

The Joe Costello Show

Play Episode Listen Later Aug 7, 2020 47:29


  I sat down with my dear friend, the great Hammond B3 organist, Papa John DeFrancesco. When I first starting exploring the music scene in Phoenix, AZ after moving here in 2004, I came across this cool club called Bobby C's near downtown Phoenix. On Sundays, they would serve the most amazing Southern food and they had Papa John and band playing jazz that I hadn't heard since I left New York City. Papa John, if you haven't already guessed, is the father of the great organist Joey DeFrancesco. Papa John and I took to each other right away and he used to let me sit in and we became life long friends. When the drum chair opened up with his band, I got the call and we've been playing together ever since. I hope you enjoy this conversation with this beautiful person and amazing jazz organist. He's a treasure and I'm honored to call him a friend and mentor. Connect with Papa John DeFrancesco: Personal Facebook Page: https://www.facebook.com/john.defrancesco3 Facebook Fan Page: https://www.facebook.com/Papa-John-DeFrancesco-101631944618/ Papa John's CDs: "Desert Heat" - https://amzn.to/2BXx9JF "All in the Family" - https://amzn.to/39V5aH2 "Comin' Home" - https://amzn.to/3ibVnj4 "Big Shot" - https://amzn.to/33oo5sJ "A Philadelphia Story" - https://amzn.to/2XrsFm6 "Hip Cake Walk" - https://amzn.to/3fC4nfH "Walkin Uptown" - https://amzn.to/3keUMyz "Jumpin'" - https://amzn.to/33ooiw1 "Doodlin" - https://amzn.to/3ftpmB2 Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.com/#thejoecostelloshow Subscribe, Rate & Review: I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to: https://joecostelloglobal.com/#thejoecostelloshow Follow Joe: Twitter: https://twitter.com/jcostelloglobal Instagram: https://www.instagram.com/jcostelloglobal/ Facebook: https://www.facebook.com/jcostelloglobal/ YouTube: https://www.youtube.com/channel/UCUZsrJsf8-1dS6ddAa9Sr1Q?view_as=subscriber Transcript Papa John: Right now, I'm praying. Joe: Hey, everybody, welcome to the Joe Costello show. I'm really happy that you're here and you are giving me your ears and listening to the podcast. I have a very special dear friend, special guest, amazing jazz musician, my dear friend, Papa John DeFrancesco. Welcome, Papa John. How are you doing, man? Papa John: Yes, I'm doing good, I'm talking to you. Joe: So Papa John: My Joe: Nice Papa John: Main Joe: To see your Papa John: Man. Joe: Face there. Papa John: Good to see you, Joe. Joe: Yeah, man, so how are you doing? Papa John: Then. Joe: How are you doing? Papa John: I'm doing good, Joe. Every day is a better day. Man. Joe: That's good, yeah. Papa John: I got the say Angel me so she's Joe: I Papa John: Like. Joe: Know, I know Papa John: Putting up with my crap Joe: You Papa John: The. Joe: And you're doing Papa John: The. Joe: Some swimming, right? You're staying cool. Papa John: Yeah, in the past, we had Joe: Yeah, Papa John: A big bathtub Joe: Yeah, Papa John: Man, Joe: Is it warm? Papa John: The pool was like ninety seven man eighty nine the other day. Joe: Oh, my gosh. Papa John: I know you when you first go in, you cool off Joe: Yeah, Papa John: And then you get warm. Joe: Yeah. Papa John: And then you come out and you're cool for about 30 seconds. Joe: Welcome to Arizona. Papa John: Is beautiful that. Joe: Yeah, so, man, I'm really excited, I want to give my own quick sort of history of you and I and and then and then I want to kind of go back to where you started and how we both actually had similar influences with our our fathers being Papa John: I Joe: Musicians Papa John: Saw that Joe: And stuff. Papa John: In. Joe: Yeah. Yeah. So for me, so I moved to I moved to Arizona, Scottsdale, Arizona in two thousand four, didn't really know what the scene was, did and didn't play much, didn't go out to do anything. And then all of a sudden I heard about this cool place called Bobby C's Papa John: Oh, my God, that was the place, man. Joe: Yeah, and I walk in the door and it's just all Southern cooking and you're behind the B3 and you have all these great musicians playing with you. And I just say, WOW!. And I think we started making it a Sunday ritual that we would go there every Sunday Papa John: Yeah, Joe: And hang out. Papa John: You Joe: Yeah, Papa John: Were there Joe: Yeah. Papa John: With Joe: And Papa John: Their Joe: Then Papa John: Brother. Joe: And everybody was nice enough to some point I got to sit in and then I got to got to sit in a little bit more and Papa John: We Joe: Then Papa John: To talk. Joe: Yeah. Papa John: And Joe: We Papa John: You Joe: Had. Papa John: Would never say you were a drummer when I found that out. Get your butt off your back. Joe: I was keeping it on the down low, there was a lot of Papa John: Yeah. Joe: Great players there. I didn't want to, you know, Papa John: Your Joe: I wanted Papa John: Great Joe: That Papa John: Player, Joe: Just Papa John: Joe. Joe: Thanks man. That means a lot coming from you, as you know. Papa John: Now we play, I tell you what, I enjoy working with the. Joe: Well, thank Papa John: You're Joe: You. Papa John: You're you're one of the very few people you played music with that listen. Joe: Well, thank Papa John: You Joe: You. Papa John: Know that deal, you get up there and nobody is listening Joe: Yeah, well, Papa John: Everybody Joe: I appreciate Papa John: Playing in Joe: It. Papa John: A different place played a different band Joe: Yeah, Papa John: And. Joe: Yeah, well, Papa John: Well, let's Joe: That Papa John: Go, let's go, Joe: I Papa John: Let's Joe: Appreciate Papa John: Go. Joe: That and yeah, and I feel the same way because literally I didn't know many people around town but you and you and I've said this to you before and but I don't think it has sunk into your thick skull that you literally gave me like a chance and a more opportunity Papa John: Oh, Joe: Than Papa John: My God. Joe: Most people have ever given me in my musical career. Papa John: Oh, Joe: And that's Papa John: My Joe: The truth. Papa John: God, Joe: It's the truth. Papa John: You're going to make me cry live Joe: No, Papa John: In. Joe: No, no, it's the truth, I was nobody I was in and after sitting in for a while and you would always let me sit in and then and then we started playing together, like, regularly. Papa John: Yeah, Joe: Right. And Papa John: Yeah. Joe: That was cool. I was like, wow, I'm playing with one of the jazz greats on the B3. And it means a lot to me. And my father Papa John: Na Joe: Was proud. Papa John: Na Joe: My parents Papa John: Na, Joe: Were Papa John: Then Joe: Proud. Papa John: Your Joe: Yeah. Papa John: Dad was cool man Joe: Yeah, it meant a lot. So Papa John: We had a Joe: Yeah, we had a blast. Papa John: Mutual man like we got into some nice grooves. Joe: Yeah, we did, Papa John: Now, Joe: Yeah, we Papa John: Boy, Joe: We had some nice gigs. Papa John: Nice, nice gig, Joe: Well, Papa John: Good Joe: Hopefully, Papa John: Music. Yeah. Joe: Hopefully there'll be more coming up once the world gets back to some sort of Papa John: And. Joe: Whatever. I don't know what it's going to be, but. Right. Papa John: God help us to get back, Joe: All right, Papa John: It Joe: Cool. Papa John: Always does by then I'll be one hundred and forty cases of that. Joe: They long as you're here with us, that's cool. We Papa John: Ah Man Joe: Don't care, so. Papa John: Beautiful Joe Joe: So let's go back and tell me how this started for you, because I know besides music, like I said, we we talked about what what part of this you want to talk about. And if it's all Papa John: Would Joe: Music Papa John: Anyone? Joe: Or you want to you want to talk about anything else. So tell me about your father or how this music started for you. Papa John: It's very similar, I guess, here, but I was I wanted to play man, and so he said I told him I wanted to play the saxophone. I was about six five. He said it's too big for you, so he started me out on clarinet. I started playing clarinet and then I heard this guy named Louis Armstrong. Trumpet player. I saw I play trumpet. He said I got 15 million saxophones in there. You want to play trumpet? Though he got when I bought me a trumpet, I was about 10 years old i guess. He taught me how to play. And. Next person I saw that kind of play school band in school, and there is a lot of good friends I met when I was a junior in high school and Joe: And where was Papa John: The next. Joe: This, was this all Philadelphia? Papa John: Niagara Falls, New Joe: Oh, Papa John: York. Joe: That's right, I totally forgot Niagara Papa John: And Joe: Falls. Papa John: A New York woman, we're Joe: That's Papa John: Both from Joe: Right. Papa John: New York Joe: I know, Papa John: State. Joe: But I forgot that's where you started out. Papa John: Niagara Falls, New York, man, it was a real beautiful city at one time. And I was always but I dug it,  I love airplanes and cars Joe: I know Papa John: And Joe: You like cars. Papa John: Yeah, and music was right at the top three. I love and you know, it was cool about the music my dad taught me, but it would also take me to all these air shows because, you know, I, liked airplanes my mom about you coming Jen, Jenny my mom. Where, to look at airplanes and I go shopping or something. So but most of my my life is the music that you go out and you hear somebody and you go nuts. And then my next biggest thing was in 1959 when I saw Jimmy Smith Joe: Where was that? Papa John: That was in Buffalo, Kleinhans Music Hall, The Trio too, Donald Bailey and Kenny Burrell, Joe: WOW! Papa John: Stanley Turrentine came later. But I saw, man those cats were dealing. Holy Cow!, that organ, ya know, it's spiritual side. And it just grabbed me, but Joe: That was Papa John: I Joe: Fifty Papa John: Didn't get. Joe: Nine, you said. Papa John: Yeah, and I didn't do nothing till the 60's with the organ, but I was playing trumpet the whole time. Big band singing, all that, you know the deal. Then, I got married and the kids started coming, so I was still playing. But not the full-time I was like, well, not for three or four nights a week. Places were jumping then, you know. Joe: And this was all still Niagara Falls. Papa John: Niagara Falls, the left Niagara Falls in 1967, went to Philly, went to Philly in '57. Joe: What made you go there? Papa John: I was I was my uncle has got to get a job at Boeing aircraft, and he asked me for Niagara Falls is starting to go down and. It was on the ground, and so, yeah, I worked on airplanes and cars, so, you know, it got that bad. I met a bunch of horn players down there. Right. I was in town for two months and I met a guy at work, Am I talking to much Joe? Joe: No, this is what you're here to do. You're here to tell your story, I want to hear it in this. This is all at Boeing. Papa John: Now and I wish you could play organ man. Absolutely. I know you went downtown one time for a session and in Chester you can't get an organ player with him and said this cats gotta go. If you go, you've got to come up here, man. And then we did a lot of road thing at that time. They had Cabaret's they use to call them Cabaret's I did a ton of those Joe: So Papa John: Other people, man. Joe: So when did you start the organ? Papa John: Nineteen sixty three, wait, sixty four Joe: Sixty four. Papa John: I come home from work day and  my wife had one,  she got it for me. Joe: Oh, wow. And this is still Niagara Falls because you didn't go to Philly Papa John: No. Joe: Until 67. Papa John: Yeah, it was still there. She thought of all of this, too bar in organ called My house was never the same since man. Joe: And are you completely self-taught? Papa John: Yes, and the organ yeah, on my dad, I had a basic knowledge of me, but, you know, horn, not chords you're playing chords like, I was trying to transfer all that Joe: Right. Papa John: And it was tough, but. Joe: Well, then the tough part, too, especially for the B3 players, is the independence in the left hand right playing the base line and then being able to solo over it. Papa John: Split your brain in half man. And you thinking and you do it too. Joe: Explain to me how the organ ended up in, I know you said Laurene bought one, but was it because you saw like were you listening people like Jimmy Smith? Papa John: Oh, Joe: Was that after Papa John: Man. Joe: You saw him? You were just bit by the bug. And that was Papa John: Not Joe: That. That was it. Papa John: Every album that would come out, I get from Jimmy and then I tell Jack McGuff and there was a lot of burner's out there Ganpati. I mean there was a ton then, you know, Charles Earling and I met all these guys so now we're out doing some serious. I learned so much. Joe: So what was that first organ that was in the house? Papa John: Or the spin it. Joe: He has no say couldn't have been a full B3. I like Laurene. Papa John: Now, it was a Spinet Joe: Ok. Papa John: And then I bought Leslie. But it still wasn't a B man. And I found a B for sale, so I sold all my stuff, but B and then that's how I really learned how to play like on this thing man [plays organ] Joe: Exactly. So what was your first real gig on it? It was somewhere in Philadelphia with this when you met these guys. Papa John: On the organ?, on the B?, back in Niagara Falls, I had the organ in Niagara Falls, yeah. Once I got to B3, I got out and started playing, I love a man, I was still learning. I mean, the coordination, the coordination is tough Joe Joe: The coordination is tough, the hauling the thing around is tough. Papa John: Well, that's why I had to get surgery on my back. No, that wasn't much but you're hauling that son of a gun man, Joe: Yeah. Papa John: You know, I bought vans. I bought my old van, used to be rented trailer, mostly with trailer till I came out with vans and got a van. You know, it was it was funny, man. You go, well, I've got to move organ, the drummer said "I go get a pack of cigarettes." Joe: Exactly. Papa John: I'll be right back because I get to go get a loaf of bread. I'll be right back. Joe: Yeah, Papa John: Yeah, Joe: Yeah. Papa John: But it was quite experience lugging that monster. Joe: Yeah, so did you bring so you had a B3 in Niagara Falls, did you bring that with you to Philly? Papa John: Yes. Yeah, Joe: And then Papa John: That's. Joe: Where is that where is that now? Papa John: And at the Musical Museum. Joe: That's the original one. Papa John: Yes, the one that we played that night when we when we did the gig. Joe: Yeah. Papa John: At my first box man. Joe: Oh, my gosh, I didn't even realize that. Papa John: Nineteen sixty six by. Joe: Wow. Papa John: That's Joe: Yes, Papa John: My Joe: So Papa John: Yeah. Joe: So everybody for everybody listening in here in Phoenix, Arizona, there's the Musical Instrument Museum. It's called The MIM for short. Papa John's original B3 is there on display. They probably move it in and out on display. Right. Sometimes they'll do it's not permanent. Papa John: Yeah, Joe: They keep it there. Papa John: There, but it was Joey's first organ too ya know Joe: That's Papa John: That. Joe: Really cool. Papa John: Yeah, well, my fathers horns there at one time now playing them, yeah, was that was the first to go that the number one man we had redone. It was like. From being out on the road, being banged around, we had a guy redo it, that's the one man. Joe: Well, I didn't know that, so that that night we did that concert there, that was your we literally play it on your very first B3 organ. Man, Papa John: We're going, yeah, Joe: Oh man, Papa John: Man. Yeah. Joe: I didn't know that. I just thought that was just one of them. I didn't know that was THEE one. Papa John: That's the one I never got rid of it, never. Joe: Wow, Papa John: Never, Joe: That's incredible. Papa John: I would not you know, I could have sold that, that's Daisy, we had a name and we know what the name was, "Oh, boy." Joe: Oh, boy, Papa John: Yeah, Joe: Nice. Papa John: Come on, we had to go Ol Boy Joe: That Papa John: Mad, Joe: Is Papa John: Matt. Joe: So funny, so in those days when you weren't playing out, that was, was it always inside the house the way yours is now in your house, like you're literally sitting behind your B3 three now at your house? Papa John: And I am. It was Joe: Or. Papa John: Either in the house or in the van. Joe: Ok. Papa John: You know, one or the other, and mostly if if it was along, never had much time to take it out of the van, you know, Joe: And Papa John: It was Joe: A lot, Papa John: A go. Joe: Right? Papa John: Yeah, the only time I'd bring it down would be maintenance. You replace tubes, do the wiring and it was traveling. Joe: Did you work on it yourself, because I know a lot of you B3 organ players, man, you know Papa John: They're. Joe: You know that instrument because you can't trust that anybody else in the room is going to know what's going on. Papa John: That's right, Joe: Right, we've had Papa John: The. Joe: A member of Bobby C's, we had like something weird happen one day. Papa John: And try to remember what? Joe: And I remember you just you took off the front lid and people were in there and not people, Papa John: Yeah. Joe: But but you were kind of telling somebody, hey, just try this or whatever, and next thing you know, it's working again. Papa John: That's from years and years and years of that, putting that instrument through its bad. I mean, patience. I got a story we were playing upstairs, so we took the organ upstairs. We were taking it up. So we put two by fours on each side so we could slide it up Joe: Oh, Papa John: And Joe: Like. Papa John: A rope and the leg and the guys up front in the back pushing and all of a sudden the rope broke. I said, what? So I run down, jump. It was like lined up with a door outside door, so I jumped out the door, jumped out the door. I heard it coming down, breaking all there was Joe: Oh, Papa John: There was lights on the sides Joe: Oh, Papa John: Broke every one. Joe: My God. Papa John: Everyone came flying out almost out the door on its back. Joe: My gosh, that's like those those cartoons, that piano like it's like the Three Stooges move in a piano. Papa John: It is, it is, Joe: Oh, Papa John: And Joe: My gosh. Papa John: Flipped it over, put the tubes back in they were all loose and brought it back and went right to work, Joe: I'm sure Papa John: Played a Joe: It's Papa John: Delayed. Joe: Amazing, it's amazing. Papa John: Now it's cursing everybody, Joe: Oh, Papa John: man. Joe: Gosh. So when you you started playing in Niagara Falls on Papa John: Right, Joe: The organ and Papa John: Right. Joe: You were still playing trumpet at the same time. Papa John: Yes. Joe: Ok, and then were you also maybe while you were playing organ in a band on stage, did you ever actually pull out the trumpet, play a trumpet solo also? Papa John: Yes, yes, Joe: You did. It's called. Papa John: Because I was still learning to organ man that and I said, man, I, I've got to do something else, throw me out the gate. Joe: Oh, my Papa John: So Joe: Gosh. Papa John: I was vocalizing and playing hard, but little by little. Left, left, left. the B captured my soul, man. I just I love the instrument man. Joe: So when you were first starting to play and you had to deal with the whole left hand independence and then laying down the chords and then potentially even soloing with your right hand over the left hand bass, Papa John: They Joe: Did you? Papa John: Move in all the time. Joe: Yeah. Papa John: Yeah. Joe: Did you have in your early groups that you played in, were there bass players in those groups where you Papa John: With Joe: Didn't have Papa John: The Joe: To worry? Papa John: organ. Joe: Yeah. Papa John: Not when I got the organ man. Joe: Really? So you never. Papa John: Even with that, even with the Spinet of playing the pedal, playing the pedal. Joe: Really? Papa John: So I thought that's how you played the B3 until I got hip. I never once I got the organ. Maybe a couple times in the beginning. Yeah, I have to admit, it was a couple few gigs, man. Yeah, couldn't Joe: Yeah, Papa John: Play it, I mean. Joe: I would think you'd want that safety net in the beginning when Papa John: I Joe: You're not. Papa John: Did. You brought it back, you brought it, you just brought that guy had a base electric base, he had like a fender, I guess. Yeah, because I was like sloppy Joes and, you know. Not you Joe: No, no, no, no. Papa John: Might think my hands were going like the bottom is trying to play with the top and it can I tell you, if you lay off of this a while, your coordination takes a minute to come back. Joe: That instrument will kick your ass. Papa John: Oh, double time. And. Joe: So these gigs early on in Niagara Falls, where they were a trio gigs, were they like organ Papa John: Quartet. Joe: Or organ guitar, drums or what was the combo? Papa John: That mostly that, and then it got to Jack's one word that good, I saw it again man, you know, so then it was Jack's trio with the guitar and then we got the sax it was a quartet Joe: Ok, so let's go ahead now back to Philly and you're there, you're you're working for Boeing, right? And you are working on airplanes and helicopters. Wow, OK. Papa John: Chinooks. Joe: And then and your playing out at night, about four or five nights a week. Papa John: Yeah, but yeah, but it got very hectic, they were it was during Vietnam that. Now, where they started working 12 hour days, 6 days a week 7. So I still played on the weekends and I have to keep playing, I would be I'd be kind of mental, Joe: Yeah, now I hear Papa John: You Joe: You Papa John: Know. Joe: And at this point, do you have any kids yet? Papa John: Yeah, have two. Joe: So you had did you have any before you left Niagara Falls? Papa John: Cheryl and Johnny Joe: You did so they were born in Niagara Falls and then was Papa John: Joey Joe: Joey Papa John: You're was born here. Joe: In Philly. Got Papa John: Yeah. Joe: It. OK. All Papa John: And Joe: Right. Papa John: then then reality started to coming around Joe: Yeah, yeah. Papa John: Oh, I got to do this traveling, babies. You know what I got to say? This man, my wife never gave ultimatums. I've been blessed a lot. So I just feel so blessed man. Go through all this stuff and the kids all turned out great. Lucky, I'm blessed! people say they're lucky and blessed and lucky. Joe: We're in Philly, you're working really hard for Boeing because the Vietnam War is happening, you Papa John: Yeah. Joe: Have you have two children. I know Johnny is the oldest or Papa John: Cheryl. Joe: The Cheryls's the oldest. Papa John: Johnny Second. Joe: Then Johnny is the middle. That's why Johnny and I get along, because we're both middle Papa John: Those middle Joe: See! Ballbusters Papa John: Aged. Joe: Both of us just Papa John: Now, Joe: Right in the middle. Papa John: What about the baseball bat boy? He Joe: And Papa John: Was Joe: Then Papa John: A big Joe: And Papa John: Bob. Joe: Then Joey enjoys the youngest. Papa John: We did just go. You're going to be 50 this year. Joe: Wow. Papa John: Johnny is fifty five and Cheryl's fifty eight. Joe: So she and I are the same age. Papa John: Yeah, 1962. Joe: Yeah. Papa John: Now, October, she was born. Joe: Yeah, I was February, so Papa John: There Joe: I'm even Papa John: Is a Joe: I'm even older than her see Papa John: Couple months, and you could have been my kid man! Joe: Yeah, there you go. Papa John: Now lighting up! Joe: All right, sorry. Papa John: Nah man Joe: So we're there, we're in Philly, you're working, playing Papa John: Yeah. Joe: A little bit, but works, you know, a lot of work going on. So you're busy. Do you remember who was the first, most famous person you played with? Papa John: You try to think of, well, I played with Jimmy Smith, we played together Bobby C's to do what we did, an organ thing man. That was to me, that's my favorite. That was my. Joe: So that was Papa John: I Joe: Like, Papa John: Love the cat and Joe: Yeah. Papa John: Then George Benson and Steve Gadd. Now all them guys, I dug all those guys other cats too Jack McDuff God, he was a neat person, man. We did a lot jams, me, Jack, Gene Ludwig. Joe: I used to go see Jack McDuff up in Harlem when I lived in New York. Papa John: You were going to the right spot man that cat, what a soulful player he was. A lot of the guys that come up and play, you know, Bobby C's, we would cats come there and once they tell me name, Oh, Joe: I know Papa John: We Joe: It was. Papa John: Get a lot of cats came in like there was a guitar player there one day that played with Miles Davis . Joe: Now, we used to get a lot of incredible Papa John: Yeah, Joe: People, it was, you know, Papa John: It was a great spot. Joe: Yeah, we need another another place like that. Papa John: But that would be that wouldn't that be fun Joe: Yeah, Papa John: To Joe: But Papa John: Trade bands in and out Joe: But you played with a bunch of people like well before you came to Arizona, I mean, you're with all those Papa John: The. Joe: Heavyweights in Philly and you were telling me how even Dennis Chambers and you were really good Papa John: Dennis. Joe: Friends, right? Yeah, Papa John: Yeah, yeah, it's a real good. Joe: Right. Papa John: Your Joe: And Papa John: Good friends. Joe: And I remember when I was at the NAMM Show out in Anaheim, you had that residency gig during the week of the NAMM Show at Steamers. Papa John: Yeah, I did. Yeah, we just played the. Joe: Arturo Sandoval was on it, Papa John: Yeah, and Joe: Right, Ramon Papa John: No, Joe: Banda right? Papa John: He passed away, man. Ramone played, yeah, there was a guitar player can't think of his name, but he was a heavyweight too Joe: Oh, yeah, Papa John: Like Joe: Yeah. Papa John: We all get our shots. How about Joe Pesci? Joe: That's right, he sang, he Papa John: Yeah, Joe: Sang that night I was there sitting Papa John: Yeah, Joe: Right in front. Papa John: Yeah, Joe: That's a Papa John: Joe. Joe: Night that actually you let me sit in that night. So I got to play with Arturo and the rest of the guys. Yeah. Papa John: get your as up! Joe: Yeah, yeah, that was fun because there are a lot of I think I think that night, to be honest with you, I think if I remember correctly, Marcus Miller was sitting in the audience. Papa John: Yeah he was Joe: So Papa John: Were. Joe: Like when you pointed and I was already looked around the room and Joe Pesci was singing with you and I'm like, whoa, wait a second. But it was fun. I had it was a good time. Papa John: Joey too. Joe: That's right, Joey was on stage to right? Papa John: Yeah, yeah, what a night everybody was up there. That place is closed man. Joe: Yeah, Papa John: Is Joe: Yeah, Papa John: damn shame Joe: I know. Papa John: damn shame Joe: Yeah, so when you were in Philly, did you get up to New York, much to play. Papa John: Played a little bit in New York. Yeah, not not a lot, but a lot. I met a lot of cats in New York, I a lot of good players, but I did play there trying to think of some of the rooms. Joe: I know Philly had such a strong scene that, you know, Papa John: Ah man Joe: You probably Papa John: It Joe: Never Papa John: Was. Joe: Had to leave there to go play New York because it had its own. Papa John: We had and then I played to shore. I played in Atlantic City, I played at the Club Harlem with Manny Cambell and the Fiestas, and it was great man the ban was good too. He Be played vibes. We had a conga drummer, drummer, a horn player and a woman singer man, and in the back room there was a front room. We were playing in front of the bar, the back room, Sammy Davis Jr. playing with big band back there. Yeah, I mean, Club Harlem, Kentucky Avenue man. Across the street, Gracie,  Wild Bill Davis was there. Joe: And this was a separate room from any of the casinos. Papa John: Yeah, there was no casinos man this is 1966, '67 Kentucky was like all the clubs, like you went to Harlem or Buffalo and all that, that that's what Kentucky Avenue was all, had all the bands and mostly organ groups that was hot thing, man I got pictures, my wife and I got picture with her of people coming around and get a picture,  remember that? Yeah, you got a picture taken, Joe: Oh, you mean Papa John: There were. Joe: Like at the table, like they would do that, yeah, yeah, yeah, yeah, yes. It's also. Papa John: Back in the old days man, the old days man, let's see, you were just a baby because you were my daughter's age, I use to take the kids. I could get them into places. I'd take um. Joe: Yep, yeah, my father would do the same. Papa John:  Yeah man people would look, he was cool, he knew? He Joe: Yeah, Papa John: Knew. Joe: Yeah, it's the only way, right? It's the exposure. Papa John: Now, the kids loved it, Johnny played, Joey played, Cheryl played for a while, Joe: What she Papa John: You Joe: Play. Papa John: Know, Alto sax yeah in junior high. Joe: Yeah, and it was Johnny always drawn to the guitar. Papa John: Yeah, in fact he played trumpet for awhile. Yeah, and my dad was my dad was living with us, and then he got guitar and my dad could play his ass off too my dad, one of those old time musicians man Joe: Yeah, did he play in the in the army or the in the war during the war time or. No. Papa John: Too old man. He played with all the big bands like back, and he played with the Dorsey Brothers before the were famous when they were together, he told me they would argue from morning till night. I said, you sure they Joe: Yeah, Papa John: Weren't Italian? Joe: Exactly. Oh, nobody has seen anything until they see you and Joey and Johnny together in the same room. That right Papa John: Up Joe: There, that is gold reality TV right there, if I if I can produce that show. Papa John: Get a show, get one! Joe: Oh, Papa John: The. Joe: My gosh. Papa John: You are. Joe: Oh, my gosh. Papa John: We have to make you a part of it that you couldn't just sit out there and produce. Joe: So let's talk about your CDs, because I want to make sure I have the count right, but I count nine. Papa John: Nine. Joe: Yeah, Papa John: You Joe: That's Papa John: Got Joe: What I. Papa John: It, I got it, my wife put him in a picture frame. Joe: So do you have nine too is that, is that the count you have? Papa John: I that's that's what I have nine Joe: Yeah, because I have Papa John: That's on my own. Joe: So if I go from 19, so the first one I have is 1990 for "Doodlin". Is that correct? Papa John: That's it. That's the one that Joe: Yeah, Papa John: Was ninety Joe: It says nine. Papa John: Nine, Joe: It says Papa John: Yeah. Joe: 94. And then "Comin' Home" was released in 95. Papa John: That's the next one. Joe: And then "All in the Family" was ninety eight, and then I have "Hip Cakewalk", which was Papa John: That's Joe: Two thousand Papa John: It Joe: Two Papa John: For Joe: Thousand Papa John: Us, Joe: One. Papa John: Right? Joe: Right, and then I have "Walking Uptown" two thousand four. Papa John: That's one of my favorite one to go. Joe: And then there's two in two thousand six. There Papa John: "Jumpin'", Joe: Is. Papa John: "Jumpin'". And dadaji. Joe: "Desert Heat". That's correct, and then then we have two thousand nine, which is "Big Shot." Papa John: "Big Shot". Yeah, Joe: And then Papa John: I Joe: The Papa John: Forgot Joe: "Philadelphia Papa John: About that, Joe: Story" in 2011. Papa John: Yeah. That's the last one. Joe: That's the last one you put up a post, I think, on Facebook that that cool album cover. Does that mean there's something in the works? Papa John: I did that, I did that picture, by the way, I have an app that said, I'm going to go out here and start, man. I must have got a million hits. Joe: I know, Papa John: One day I'm coming out. We'll get it. Joe: See? Papa John: I just that's what I was doing, that somehow this is our clock. Joe: Oh, I see it moving in the background. Papa John: Yeah, my sister-in-law got it for us. I forgot about it. I would I would have turned it off and we had we had a dog and it's got all the Joe: That's Papa John: It's Joe: Also. Papa John: Got all the seasons on it Christmas. I don't know what that is pretty but I got them all memorized Joe: Yeah, Papa John: [scats] Joe: Yeah, how it Papa John: It's Joe: Long ago Papa John: Over. Joe: How long is that going to play? You know, we Papa John: It's Joe: Only Papa John: Over right now. Joe: We only have an hour. Papa John: There it goes. Hey, man, we only have an hour. Lighten up, take a break, you Joe: It's Papa John: Union Joe: Take a break. Papa John: Take a break? Joe: Is there any thoughts of, I mean or any conversation of a new new CD? Papa John: Yeah, I talked to Clark, Clark calls me about once a month. Wants to know how you feelin' and then he says, well, "When you come in the studio, Pop?", I got a bunch of stuff too I could do. I mean, I've been I don't you get ready now and have your ass in there. Unless you don't have time for. Joe: I always whataya kiddin' me...it would would be an Papa John: I Joe: Honor. Papa John: Love Joe: I'm Papa John: The. Joe: Looking at the names of all these people on these CDs and I'm like, damn, my name's not on that one, wait a second, my name's not on that one, no I'm only, kidding. Papa John: They were all done on the East Coast except Desert Heat and was with the Banda Brothers. Joe: Yeah, yeah, that Papa John: That Joe: Was special. Papa John: Was yeah, that was 05, I think, wasn't it, '06 Joe: In desert, he was '06, Papa John: Yeah, Joe: Yeah, Papa John: That's when I moved here Joe: Oh, that's when it was so it was two years after I moved here. Got it. Papa John: Yeah, that's right. You know how happy I am for you when I see all the stuff you're doing, man, I pray for this stuff for you. Joe: I'm just hustling, man, I got Papa John: Now, Joe: To just keep Papa John: Why Joe: I Papa John: You Joe: Don't Papa John: Got Joe: Like Papa John: The right? Joe: I don't like I don't like letting any grass grow under my feet. Papa John: And Joe, that's why you're going to do it, man. Joe: Yeah, well, you know what, it's I'm Papa John: That's Joe: Getting pretty Papa John: Why you're Joe: Old Papa John: Going to do Joe: If Papa John: It. Joe: Something doesn't happen soon. Papa John: Well, you can't go by now, what's going on, you knowthe epidemic or whatever the hell it is that's messed up, and the politicians, they're Joe: Yeah, Papa John: All nuts. Joe: Yeah. Papa John: I mean, so. And you're still making it. You're still doing it, man. So Joe: Well... Papa John: This is like a piece of cake after everything's straightens out. Joe: Let's hope so. We got to get back to playin' is what we had to do. Papa John: Love to man Joe: It's like Papa John: Our. Joe: Oxygen for us, you know, taking this away from us is this brutal. Papa John: You know, come here and playin' myself, and after a minute, like I tried a drum machine and I want to throw it through the window. Yeah, I try I just want to have something to play with somebody just. Joe: That's what we should do. I just throw my stuff in the car, come down there, we'll just do a little Sunday pasta dinner, but we'll Papa John: Yeah. Joe: We'll work up an appetite before that. Papa John: That would be fun Joe, I'm in! Joe: Swim a little bit. Papa John: It is our masks mandatory? Joe: No, I haven't been anywhere, you haven't been anywhere, right? Papa John: I feel like cabin fever, man, but I want to stick it out Joe: Yeah, you just Papa John: I'm Joe: Got to stay Papa John: Going Joe: Safe. Papa John: Nowhere. Joe: Yeah, both of you just need to stay safe. And Papa John: Yeah, Joe: How are Papa John: You, Joe: You going Papa John: Too. Joe: Out? Are you going out to get groceries and things like that or you having them delivered or what are you doing? Papa John: Laurine calls ahead and she goes, they throw him in the car in Joe: Good, Papa John: The back and Joe: Good, Papa John: Then she drives off Joe: Good. Papa John: Right now. Everybody out there that masks everybody Joe: Yeah, Papa John: Down here. Joe: Now Papa John: So. Joe: We wear it wherever we go, so Papa John: So do we... Joe: We'll cold, so did I miss anything that you wanted to talk about? I mean. Papa John: Well, just talking about my time on the railroad, Amtrak. Joe: Amtrak, that's right, that was after Boeing. Papa John: Way after I was playing in between all of that and then I went to Amtrak was the big one...I started as an electrician man, I start I had to learn, you have to go to school and stuff. And we needed I had my kids all grown up. And you're, like starting to go through grade school and middle school as Laurene and I are going to hang out, man. The railroad had a friend she had friends, lot of people on the railroad, and I got the job on the railroad in nineteen seventy seven. Joe: And there was a gap in between Boeing and that, so why did you leave Boeing? Just tired Papa John: Layoffs Joe: Of it. Papa John: Every 10 minutes. Government, government job and I went to Seven-Up for a while to the district sales manager and playing constantly, playing down the shore six nights. At Amtrak I became a supervisor at a big job, kept movin' and I was there 20, almost 30 years. Joe: As an electrician for Amtrak? Papa John: Let's do it in the beginning and end with electrical supervisor. We built substations, took care of all the new construction, but I was still playing Joe. I mean, my job, I was playing constantly. I had to come in to work, Saturday morning, we had to work every once in a while and I come in. Where are we? What is this? Where you go to get playin' and go to have breakfast or have a cup of coffee? So by the time you got home... Joe: Time to go right to the job. Papa John: Great. The music never stopped me, but thank God I went to the railroad because the railroad retirement is ridiculous. Joe: Yes, Papa John: So Joe: Something to be said for that, right? You know. Papa John: Yeah. I mean I never expected that. Never. That was so far from any of my thoughts. My Joe: Help. Papa John: Dad used to say when your dad said go to school, put something in that back pocket Joe: That's Papa John: What do Joe: Right, Papa John: You mean, good news, right? Joe: Yeah. Papa John: I was at your school, Fredonia, man. Joe: Yeah, because you were right out there, right? Papa John: Yeah, yeah, yeah, yeah, I, Joe: Yeah. Papa John: I worked, I did gigs there, I played yeah, well, I knew the guy who ran the station WBZ or something Joe: We forget what it is now. Papa John: Yeah, Fredonia is when I was out there, Don Menza was there, all cats who played with big bands, but that's a great music school man. Joe: Yeah, it was good when when I went, we were we were at at the peak of of what was happening with, you know, we had a student run jazz ensemble and competed at the Notre Dame Collegiate Jazz Festival, and those were run by the school. And we ran it ourself, you know. Papa John: The students you guys had a couple Joe: Yeah, it was fun. Papa John: You had some good players there, singers, players, if you wanted have somebody, go to the school, you had a great reputation Joe: Yeah, I got Papa John: And Joe: To play Papa John: Then. Joe: At the Tralfamadore Papa John: But Joe: Or. Papa John: Tralfamadore? Joe: Right. Papa John: The Tralf?. Joe: Isn't that what it was, The Tralf? That's what we called it. Right. For short, The Tralf. Yeah. Papa John: That's something man! Joe: And I spent when I was at Fredonia, I spent a summer in the Canadian side of Niagara Falls Papa John: Oh, Joe: Playing Papa John: Yeah, Joe: At that Papa John: We're. Joe: Amusement park that's right on the other side. Papa John: Right on the other side, I know, right off Lundie's Lane Joe: Yeah, and we played this little we did this doo wop show, it was Papa John: Of Joe: All Papa John: The. Joe: This company came and auditioned people at all the music schools for summer Papa John: Yeah, Joe: Jobs. Papa John: And Joe: So Papa John: You Joe: We Papa John: Got Joe: Got to hire. Papa John: Your. Joe: We got hired as a band. So it was my buddy on trumpet and a bass Papa John: The. Joe: Player friend, the sax player friend. And then we went there and played and we backed up these these two couples, that guy and girls Papa John: Right. Joe: That were doing this doo wop dancing and singing on the stage. Papa John: Ha Joe: We were Papa John: That's cool! Joe: The backup band behind them. We played a place called Lilly Langtry's Papa John: I know that is, oh Lilly...that's on Lundie's Land, you go up Lundie's Lane, the wax museum and. Joe: Correct, That's right. We actually were friends, so when we were when we were there because we lived there for the summer and these little apartments, the I think it was the either the tallest man in the world or tallest woman in the world. We Papa John: The woman. Joe: Literally yeah, we became friends with her and we would actually hang out at her apartment. And Papa John: She was cool man Joe: That's so Papa John: Or Joe: Funny. Papa John: That boy or girl, rah Joe: Yes, Papa John: Rah Joe: Yes. Yes, Papa John: Is just great Joe: Yes. Papa John: To leave it to me, to remember that stuff. Joe: It's so funny. Papa John: Remember the yard of beer? You went to the Yard In The Park when you had a yard of beer. Joe: I don't I don't know if I remember that. Papa John: The glass was a yard long filled it up. Joe: It's like those things that they walk around Atlantic City with, I mean, Papa John: Yeah, Joe: Las Papa John: Where Joe: Vegas, Papa John: They get Joe: Those huge. Papa John: Yard In The Park, it was called, Joe: That's so funny. Papa John: I played all over the place and Toronto, but you had a good gig. Joe: I don't know about that, but Papa John: It was a good gig. Joe: It was it was OK for at the time we had some fun. So. Papa John: What year was that Joe, do you remember? Joe: It had to be eighty two or three. Papa John: Oh, you are young. You're like my daughter. Joe: Yeah, I yeah, I'm surprised, I remember that I don't remember stuff that far back, but. Papa John: I remember not if it's if I want to remember that Joe: Yeah, Papa John: This done that, then  Joe: Yeah. Papa John: Railroad, I retired. The pension is crazy. Joe: And what was this what year was that, Papa John: '05 Joe: And then literally a year later, you moving out to Arizona? Papa John: Yes Joe:  Papa John:  Joe:  Papa John:  Joe:  Papa John:  Joe:  Papa John:  Joe:  Papa John:  Joe:  Papa John:  Joe:  Papa John:  Joe:  Papa John:  Joe:  Papa John:  Joe:  Papa John:  Joe:  Papa John:  Joe:  Papa John:  Joe:  Papa John:  Joe:  Papa John:  Joe:  Papa John:  Joe:  Papa John:  Joe:  Papa John:  Joe:  Papa John:  Joe:  Papa John:  Joe:  Papa John:  Joe:  Papa John:  Joe:  Papa John:  Joe:  Papa John:  Joe:  Papa John:  Joe:  Papa John:  Joe: There's our organ guitar trio once Johnny gets out here and a couple of years, Papa John: Yeah, Joe: Right. Papa John: We'll have some serious fun when. Joe: Hopefully we won't run out of places to play once we get kicked out of each one for being crazy. Papa John: Hopefully we WILL get kicked out. No, no, no, gigs are special you know,  we keep maintain part of the business man. You don't want to screw that up. Joe: So cool. So 2006, you retire Amtrak two thousand five, you pack up, move out two thousand six Papa John: Sold Joe: And Papa John: The crib back home, I Joe: You're. Papa John: Had a nice I had a nice crib too, that. Joe: But then you come out here and then and then we finally get to meet at one point, and then we play a bunch of gigs around town and. Yeah. Papa John: Yeah, we did. We played a lot man. You have to gigs you were getting gigs left and right. I went out there and start hustling your ass off. Joe: Hey, you have to, right? Papa John: Yeah. Joe: Can't sit by the phone. Papa John: No, what!? Joe: That's the that's the one thing that I just Papa John: Is Joe: Can't sit Papa John: All Joe: By the phone. Papa John: We'd be dead now you can use got to go out after man, but if you wait for the apple to drop off the tree, you'll starve to death, you got to go up and get it. His big thing was education and save your money Joe: And Papa John: To Joe: Save your money, well, you made Papa John: Get Joe: Him Papa John: An Joe: Proud Papa John: Education. Joe: Because you listen, you got yourself a nice a nice retirement package, right? Papa John: Well, I got lucky on that one man God, Thank Joe: You still Papa John: You. Joe: You still were able to maintain playing, Papa John: Yeah, Joe: You got an education Papa John: Oh, Joe: In the electrical field. Papa John: But Joe: What kind of car you have now? Papa John: Oh. Thirty nine Pontiac Joe: Yeah, Papa John: Hot Rod Joe: Yeah. Papa John: Yeah, man's got a big motor in three fifty chevy. All reworked, everything, everything's new and it's like a new car. Joe: How many times you get it out? Papa John: Well, right now, Johnny comes out, we take it out to terrorize the neighborhood, him and I put that car together. Joe: Oh, yeah. Papa John: Yeah, cut the frame off for a new frame underneath, it has disc breaks, power steering, Joe: What is Papa John: Big Joe: It again? Papa John: Motor, a thirty nine, nineteen thirty nine Pontiac, two door sedan. It's just it's a duplicate of a thirty nine Chevy. Joe: What is it like, is it blue or purple, one of the two, Papa John: Yeah, Joe: Which Papa John: Blue. Joe: One? Blue. Papa John: Yeah, Joe: Yeah. Papa John: Well, when you come down, will have to go out for a cruise man Joe: Yeah, I'd love to take that thing out. Papa John: It's fun man Joe: All right, Papa John: It's. Joe: We'll do it. We have a plan now. So we have a Papa John: Yeah. Joe: We have a Sunday pasta dinner. Papa John: A Sunday dinner, baby. Joe: But we jam first. And then we hop in the pool, get cooled off, then we come in and we eat our faces off. Papa John: Right, Joe: And then we Papa John: And. Joe: Go out for a little cruise when it gets Papa John: That's Joe: Cool Papa John: Right, Joe: Out, there Papa John: That's Joe: You go. Papa John: Well when we get done eating, we might not be able to move. Joe: That's true. So you might want to get everything done before we wat. Papa John: That one day you were making something, what was braciole that you make braciole? Joe: I have Papa John: You Joe: No. Papa John: Were cooking something, man. I don't know what it was Joe: I have no idea. I just made a killer designer for Jo Ellen's birthday Papa John: That. Joe: A couple of weeks ago. Yeah. Oh, maybe that's what it was. I put up Papa John: Yeah, Joe: The pot of the Papa John: I Joe: Sauce, Papa John: Love that Joe: The sauce boiling or the gravy, as we call it. Papa John: You call gravy. Joe: Yeah. I don't know if Papa John: You Joe: We're Papa John: Sauce Joe: Not Papa John: Tomato, Joe: Sure Papa John: Tomato, potato, potato, Joe: Exactly. Papa John: But some. Joe: You got to let us know if you're going to do a new recording so we can make sure we let everyone know. And like I said, as soon as all this pandemic stuff Papa John: No. Joe: Disappears, we see if we can get ourselves a gig or a concert somewhere again and get going. Papa John: Concert, Joe: Right. Papa John: I'd like to do that, yeah. Joe: We should get back at The MIM. Do another show up Papa John: I Joe: There. Papa John: Like the yeah, man, we could Joe: Yeah. Yeah. Papa John: Get a yeah, it was okay last time with nice man. Joe: Is there anything else that I missed? Papa John: Yeah, the gig in Albuquerque, wherever we were. Joe: Oh, my gosh. Papa John: Should have made a left turn at Albuquerque Joe: Oh, my gosh. Papa John: The Las Cruces Joe: Right, then we drive all the way there, we set up and then it poured Papa John: It rained Joe: And we couldn't play, right? We couldn't Papa John: That Joe: Play Papa John: They paid and Joe: And Papa John: We got Joe: They play. Papa John: Paid. Joe: So it was basically like a paid little two day trip. Papa John: Two day trip with pay Joe: Yeah, yeah, yeah, well, Papa John: That was terrible. I wanted to play. Joe: No, I know. Papa John: Well, I know we weren't going to play when a guy took the B3. He said it's raining, you guys aren't playing, put it in a van. They left. I guess we're not playing. Joe: Remember, we tried to even talk one of the bars around that outdoor stage to let us play. Papa John: Across the street, yeah. Joe: Yeah, it's like we're already got paid, so just move it all into your place in play inside. Oh, gosh. Papa John: We didn't get. Joe: We can't say we didn't try. Papa John: That's where I met that trumpet player, he's on the East Coast now. Joe: Cool! Papa John: This has been a nice pod... Joe: Thanks, Papa John: Of Joe: Man. Papa John: Spaghetti meatballs. Joe: They go Papa John: And little braciole Joe: Right? Papa John: Yeah, Joe: I'm Papa John: My Joe: Really Papa John: Wife Joe: Excited Papa John: Made Joe: That you Papa John: It. Joe: Came on what'd she say. Papa John: My wife made angel hair bolognese Sunday Joe: Nice. Papa John: Scrambled meat. Joe: Yeah. Papa John: I'm glad I came on too Joe Joe: Yeah, man, it's nice Papa John: I Joe: To Papa John: Love Joe: See your face Papa John: That you Joe: That Papa John: Like that and I like Joe: I Papa John: Your face too Joe. Joe: Haven't seen you in so long, so. Papa John: I know there Joe: Yeah. Papa John: Has been a year!? Joe: I don't know. Could be, gosh. Papa John: No Joe: Like Papa John: Time. Joe: I said, my brain doesn't go backwards too well, so Papa John: Time man time Joe: I know Papa John: Is. Joe: I hear Papa John: Time Joe: Yeah. Papa John: Is on my mind, yes it is Ya know what, we should do all that stuff, do I get all those coveres I Joe: Yeah, Papa John: Love doing it to. Joe: Yeah, Papa John: My favorite Joe: Well, Papa John: Was Sly, Sly and the Family Stone. Joe: Um. Papa John: I use to love those...cover that stuff Joe: Yeah, Papa John: [sings] You might have... Joe: Well, we'll we'll have a chance again. Papa John: I hope so, man. Joe: We will. So, listen, man, I really appreciate you doing this. Papa John: Anything for, you know, you're the man, you're my friend, one of my best friends. Joe: It's nice to see you. It really is, it's nice to talk with you. Papa John: Nice to talk to you, too, man Joe: Yeah, man. All right. Well, again, thank you. You you're one of the best. And Papa John: No. Joe: You you've you've been incredible to me. So I appreciate you and I love you. And I thank you for being here. Papa John: Thank you, Joe, Joe: Ok, Papa John: And Joe: Man. Papa John: I love you, too, brother. Joe: All right, and we'll talk soon and we'll play soon Papa John: Hopefully has, God Bless! Joe: All right, man, thank you. Papa John: All right, bye bye... Joe: Bye...

The Joe Costello Show
An Interview with Speaker, Author, Life Coach and Entrepreneur Simon T Bailey

The Joe Costello Show

Play Episode Listen Later Jul 29, 2020 57:13


  I had the distinct privilege to sit down with Simon T Bailey to discuss his timeless book, "Shift Your Brilliance". I met Simon in March of 2020 when he gave a keynote address at a conference I was attending and his infectious manner and positive energy, drew me in. I had to interview him and find out more about this man. In this interview, we explore his book "Shift Your Brilliance" because it is so incredibly timely with what's happening in the world today with COVID-19, so many people furloughed from their jobs and so many companies going under with the weight of an almost non-existent economy due to social distancing. I hope this interview provides some real life guidance to those of you who may be a little lost at the moment and not sure what you next move might be. If you can shift your brilliance in a new direction, you'll surely come out on top when the dust settles. Enjoy! Simon T Bailey: Simon's Website: Simon T Bailey Connect with Simon: LinkedIn Personal: https://www.linkedin.com/in/simontbailey/ Facebook: https://www.facebook.com/BrilliantSimonT/ Instagram: https://www.instagram.com/simontbailey Twitter: https://twitter.com/SimonTBailey Simon's Books: "Shift Your Brilliance" "Release Your Brilliance" "Be the Spark: Five Platinum Service Principles for Creating Customers for Life" "Brilliant Living: 31 Insights to Creating an Awesome Life" "Success is an Inside Job: Brilliant Service is the Bottom Line" "Releasing Leadership Brilliance: Breaking Sound Barriers in Education" "The Vuja de Moment: Shift from Average to Brilliant" "Simon Says Dream: Live a Passionate Life" Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.com/#thejoecostelloshow Subscribe, Rate & Review: I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to: https://joecostelloglobal.com/#thejoecostelloshow Follow Joe: Twitter: https://twitter.com/jcostelloglobal Instagram: https://www.instagram.com/jcostelloglobal/ Facebook: https://www.facebook.com/jcostelloglobal/ YouTube: https://www.youtube.com/channel/UCUZsrJsf8-1dS6ddAa9Sr1Q?view_as=subscriber Transcript Joe: Welcome, everybody. I'm really excited today to have Simon T. Bailey on the show, Simon and I met in March of this past year, but it was very briefly was passing in the hallway at a conference in Colorado. I shook his hand, told him how I loved the talk that he had just given the group. And then I was lucky enough to get him to say yes to come on to my podcast. So, Simon, welcome to my podcast. Thank you so much. Simon: Hey, Joe, good to be with you. Thank you for having me. Joe: Yeah, so I have one question before we even start, Simon: Sure. Joe: Why Simon T. Bailey? Simon: Because the "T is for terrific, you walked  into Joe: I Simon: It Joe: Said, Simon:  there, Joe: Damn, I should have guessed, I should have guessed. Simon: Though, the T is is a family name that my father gave to me. It stands for Theopolis, which is great. So Joe: Wow, OK, I was just wondering. Simon: It's a branding thing as well. Joe: So we are definitely going to talk today about your very timely book, which was published in 2014 called Shift Your Brilliance, Harness The Power of You Inc. Super interesting. I'm an audio book guy, so I listen to the audio book part, which for me is even better because I love your voice. Your laugh is probably the most infectious laugh that I've heard in such a long time. So that was great for me. But before we get into it, I just kind of want to lay a little groundwork about who Simon T. Bailey is. I know that from the book and from your talk that you gave out in Colorado, and I know you speak all over the world, that you came from the corporate environment. So you can start as far back as you want. I know the book covers some of your childhood, so it's completely up to you how far back you want to go. But I want to just lay a little groundwork so they know who you are and then we can get into all the other stuff. Simon: All , so give us two in a minute and a half or less, because it's important to what I'll share today, 14 years of age, mom and dad took me to Bennett High School or McKinley High School in Buffalo, New York, where I grew up, went out for football, basketball, got cut, went out for track and field. They said you're too slow that summer, attempted to commit suicide, didn't go through with it. Sophomore year, brand new high school teacher says to me, write a speech for the entire school. Absolutely changed my life. Ended up being class president. I moved to Atlanta, Georgia, dropped out of college after my first year, went back to college, took me ten years to finish my undergrad degree, started at a decent hotel making five dollars and ten cents an hour as a front desk clerk. That was about 30 years ago, fast forwarding got hired at Disney after a ten interviews over a ten year period. I stayed at Disney for seven years, left Disney after turning down for job same and a job saying that I wanted to be or I did an interview saying I wanted to become the number one guy at Disney that was put in front of that didn't quite work out. So I thought it probably best for me to find my happiness elsewhere. After Joe: But. Simon: Being married for twenty five years, went through a divorce and a video was posted to Facebook about me telling that story. That video has over 90 million views to date. And then from there I went through a bout of cancer. I am a cancer survivor, thank goodness. I have two amazing children. Twenty one year old son, eighteen year old daughter. And today I've worked with almost eighteen hundred organizations in forty nine countries just teaching a very simple concept that you have to shift your brilliance in the midst of uncertainty. I've written ten books, I've worked in forty nine countries and three of my courses are linked and learning. So that's just it in a nutshell. Joe: Man, oh, man, I'm tired just hearing that's amazing, that's truly amazing. And there's some of those things, obviously I didn't even know so and what I love about you besides the talk that you gave and how infectious you are and and it's and I even said it the other night, we were having a conversation and how I was having you on as a guest is that you're you're so positive. And it's it's and you you smile all the time, like every Instagram post, everything. It's just it's part of who you've become. And I think when I when I listen to the audio book and I heard you talk, I feel like you were the person at Disney that you've you're now trying to get at least the business people. Not like there's regular people that I know that this book and what you talk about attracts. But you were that person at Disney where it was just heads down working. And I think you even talked about a sport where you didn't even know the people that were part of your team or you didn't like you talked about getting reviews or something to that, where they just said if you actually knew the people you were working with and they knew you as a person, it would shift things for you. Simon: Totally, totally, I was so busy trying to climb the ladder of perceived success, in the words of Dr. Stephen Covey, only discovered my ladder was against the long haul. So I was the boss with an agenda instead of a leader with a vision. Joe: Yeah, it's it's really amazing. Well, I appreciate you giving us the background, I think now the people that are listening to this, they're in for a real treat. So I can let you just take take it from here and then I'm going to try to sneak in some of these things that I want to sneak in. But I really want you to get into the fact that you wrote this book in twenty fourteen. And literally it's almost as if you you could have written it in the beginning of March knowing that covid-19 was coming, because when I listen to it, it's, it's literally that, that everyone needs to be poked and say this is the time to do this, this is the time to shift your brilliance and figure out what it is. I keep preaching. No one's coming to rescue us. We've got to do this Simon: That's Joe: On our own. Simon: That's totally yeah, so when I when I wrote the book and it's so appropriate for now, I was holding on to the way things had always been going for me as my business. When I left Disney, I started speaking Friday in training consulting and I was thinking that's the way it was always going to but as you can imagine my entire world has been disrupted as as everyone else. And what I recognize is sometimes we have to let go of what is comfortable and convenient in order to embrace what wants to emerge. So everyone  now is experiencing what many will call V.U.C.A., volatility, uncertainty, complexity and ambiguity. So you have 40 million people that have been laid off. You have millions who have been furloughed. You have companies that have gone under. But also in the midst of that, there are some companies that are totally shifted what they have been doing and moving into a whole other direction. I was interviewing a company out of Baltimore and they are whiskey company, but guess what business they are in now, hand sanitizer, because they understand there's an opportunity to shift. So everyone is listening to us, has to begin to say, what about my career or my business? I could be doing this now for 18, almost 18 years since I left Disney. And I have to tell you, Joe, I have reinvented I'm on my fifth reinvention in 18 years because I have to shift. So I wrote that book from a deep place with this is one concept, and that is we have to implement vu ja de If deja vu has been there, done that, that's pre covid budget day is going. They're doing that. It's seeing the old and the new. The new and the old. Joe: Yeah, it's just really incredible, it's literally like the book was, I don't know how it did when it came out in 2014, I'm sure it did great because I was just so captured listening to the stories that you told in it. But, man, it's just like it was written for now. It's just unbelievable. Is it OK if I ask a couple of questions about it? OK, Simon: Absolutely! Joe: So there's a line in there that you talk about where you say we are spirit beings having a human experience. And I heard that and I was like, wow. So could you elaborate more on that? Simon: Yeah, so when I first started out years ago, I was invited to an event where Dr. Stephen Covey, the late, great Dr. Stephen Covey, author of Seven Habits of Highly Effective People, was the opening speaker, Libby Sartain, who at that time was the chief people officer for Yahoo! And I was the closing speaker. And I just wanted to sit in and hear Dr. Covey because I was so fascinated. And he made this statement, which was originally, I think, quote by Wayne Dyer, and he said, We are not human beings having a spiritual experience where spirit beings having a human experience. And when I heard a joke, it was like a joy bomb, like BOOM!. I was like, what's that? And what I begin to recognize is all of us, we have a spirit. But how we show up into an environment, we either are hugging people with our words or we're tearing people down with our words and and words impact our spirit because words carry energy. And so we are spirit beings having a human experience. I believe what we're going through  now is everybody is being spiritually reset. Whatever spirituality means to everyone, they are thinking about meaning, not just money. Yes, money's important, but they're thinking about is my life really meaningful to thinking about power, not just or they're thinking about purpose, not just power, but that I think the other part of the spiritual reset that's happened is that people are also thinking about moving from success to significance. And that's so important when you're on the spiritual journey. Joe: And then there was another line in there, and again, I remember now that you brought it to my attention that Stephen Covey had said that and you had heard it in that that event. But hearing it from you gave it a different meaning when I listen to the audio book. So I had to bring it up because it was just like, man, I got to remember that and just keep that in the forefront of my mind. But then there was another one which was live from the inside out. Simon: Mm hmm, yet when you look from the inside out, you break the cycle of fear and worry because see what happens is  now uncertainty and worry has driven up stress and anxiety. And when a person is stressed out and they are living in fear and worry, it actually slows down the human operating system. So when you live from the inside out, what you're saying is, I'm not going to allow the outside circumstances to dictate how I what I produce, how I show up, how I thrive or survive. I'm going to take control of the steering wheel of my life and drive into the future and not be driven by all the news around me that's living from the inside out now. Yes, we need to be informed. Yes, we need to be well read. Yes, we need to pay attention to significant notifications that hit our phones. When you live from the inside out, what you realize is life is not a remote control. You can change the channel on your tell-a-vision. So when I live from the inside out, I am literally forecasting my future instead of living in the predictions of the day. Joe: When we talk about the book, but what's the audience that really needs something like this? Simon: Yes, so the book is written to that person who say twenty five to fifty five and they have either been furloughed or they're back at work, they're waiting for the other shoe to drop because now there's massive pressure to do to do more with less and working now might be working remote. So they're having to deal with the new world. But it's also written to that entrepreneur who says, I've done X, now I need to do Y and Z. How do I begin to harness the power of what we've done to be relevant for where things are going? It might be that solopreneur or that person who said, you know what I'm thinking about this is the time to go for it. And literally, I give you the tips and techniques on how to shift your brilliance, because it's my exact story when I left is the question. My entire for one with significant housing stock took out a line of credit on the house. So when I wrote "Shift Your Brilliance", I was probably already 10 years into my business. But I was thinking what had made me successful ten years in 10 years would make me successful in another 10 years. And I was wrong. Joe: Again, I keep thinking that people just think the Calvary's coming, you know, Simon: Oh, no, no. Joe: It's. Simon: Listen, every industry that literally can be turned upside down is being turned upside down. When you hear about retail like Brooks Brothers, Neiman Marcus filing for bankruptcy, J.C. Penney. These are these are brands that you thought would be around forever. And they are they're just going to look different, Joe: Yeah, Simon: ? Joe: Yeah, and by the way, you would know Neiman Marcus because I've seen you dress, so I know that Simon: Good. Joe: I know they love they love seeing you walk in the door because I've seen sharp and really sharp. It's funny because I met you there because I own management booking agency here in Phoenix and Scottsdale, Arizona. And then we expanded into Colorado last summer. I spent six weeks there developing all these relationships to take what I've done here with success and move it out there. So I'm in the same boat as you. There was nothing going on. I'm just starting to put some entertainment back in the resorts. But when I work with these destination management companies who you know well through the corporate world, who books entertainment to the level of someone like you, they're starting to come to me going, OK, what are the virtual options? And so have you been doing some virtual speaking? Simon: I've done about 25 virtual events in the last 100 days, Joe: Wow, that's Simon: And Joe: Amazing. Simon: It is it has been just a rewarding experience and now I've told the team, hey, let's get it down. I can do two to three a day, you know, Joe: Yeah, Simon: Let's go. Joe: Yeah, Simon: Yeah, let's go. Joe: And where are you doing them from? Are you doing  where you are now or. Simon: Really  that  now and every now and then, I will put up, depending on the setting, I will, you know, just change my screen there and . Joe: Exactly, exactly. Simon: This is the world we live in. And, yeah, it's been a great experience. I really love this virtual setting and I can't wait for life to come back, but I'm totally fine with doing the hybrid. Joe: Yeah, I was just wondering, because I know that's how we met, so I was wondering how you're faring through all of this and how many times you've done the whole virtual the virtual experience. So and and while we're talking about live, when you did give that talk, I noticed that you very rarely stood on the stage. And I don't know how do you know the number of people that were there were like 15 or 18 or twenty five hundred. Simon: They were expecting to lose about twelve hundred. Joe: Twelve hundred, OK, so for me and someday I aspire to maybe public speaking, so we'll see if that happens, but that's why for me, it was so interesting to watch you and you were on the floor most of the time. And so why do you when do you choose to do something like that? Simon: So, so many times everybody is looking at the stage, the stage on stage, and what I really believe people really want is a connection. And can you imagine that was probably the last presentation that I've given with that amount of people where there was no physical distance yet we had even heard of social distancing. Joe: . Simon: . So what I like to do is I like to have a conversation with people. So me coming off stage allows me to be almost like a jazz artist in the moment. I can reflect. I know where we need to go. I'm going to I'm going to stay on time. But I also get to do things on the fly in the moment. And it can only happen if I'm looking face to face with the human being. Joe: Yeah, I thought it was really different because there were so many people there and I was close enough to the front and towards an aisle, so I was happy. But I think some of those people in the back might be like, I can't really tell what he's doing or where he is, Simon: Which Joe: But. Simon: Is why they've got the IMAX, so Joe: Yeah, Simon: I knew they had and they had the cameras and Joe: Yeah, Simon: They would project me on the screen Joe: Yeah. Simon: And good on the video as well, because on a video, if I'm only on stage, you don't see the audience. So for your purposes to come off the stage, you see the audience. It is spontaneous and it's in the moment. Joe: Yeah, it was great, I was captivated the entire time. I love listening to you talk, conscious mind versus unconscious mind, that also hit me when I was listening to the audio book. And I understand it because I work on at least my own. I try to do meditation when I can remember to. It's tough. I was in a really good routine at one point and I slipped a little bit. At least I'm doing yoga almost three times a week. So it's Simon: Very. Joe: It's at least a little bit of a balance. But can you go into that a little bit more? Simon: Yeah, so one of the things I really believe is, as you know, in the unconscious mind, we just do things automatically, like if you get in, you drive in your car, you're going to go the way you always go. It's just unconscious. But when you become conscious, you're paying attention to what am I thinking? Thoughts, what am I saying? Words, and then what is the habit or behavior that I'm doing? And then what? It's that slight adjustment that I need to course correct in order to get better. So I'll give you a prime example. I've been working on losing weight and this has just been an ongoing battle for 20 years. So I decided during this COVID-19 time that my health coach sent me a Fitbit. So I got the Fitbit and it's monitoring my walk. So I go on a walk every morning. I get in at least seven to eight thousand steps within forty five minutes. But then I come. I came back home and I started doing push ups. Just ten push ups and sit ups will now up to 40. Now, I don't say that to be braggadocios or anything, but here's the deal. When I became conscious that I really want to lose weight, I start I stop focusing on losing the weight and focused on a healthy lifestyle, some conscious of that. I work out that I sleep. Did I drink my water? I got my water here. Did I actually take my vitamins? How am I eating better? So it's becoming conscious to say there's something I have to do every single day to move towards where I'm going. And I'm happy to say that I lost ten pounds over the last six weeks, but I have a good 10 to 15 to go and I'm excited about it because it's a conscious, healthy lifestyle instead of I have to lose weight because now the emphasis is on losing instead of maintaining and being healthy. Joe: No, well, that's great, congratulations, And see, and that's what I like about your post and when I watch your videos and is that you take things that so many of these people have been hearing for years and years, but there's a way that you word things and you shift things in your speech or you change the way someone thinks about something. And it's sometimes just that shift alone helps people to then understand it better and say, I can do that. And it's Simon: This. Joe: It was it's literally doing the same thing, as was mentioned five hundred other times, but it's the way it was said or the way it was presented. And that's what's cool about you. That is. Yeah. Another thing that popped out and stop me at any time where you want to dig in deeper to anything in the book. These are all the things that just jumped out at me. So information to revelation, that's a strong phrase. Simon: Yeah, so what I have discovered over many decades of studying, researching and really being mentored by very, very wise men and women, is that information is knowledge. OK, but then the next level below information is understanding, which is comprehension. So, for example, when I go to get my driver's license, I have read everything that I need to know to get the license. That's information. That's knowledge. But it's the understanding that if I don't stop at the stop sign and a cop sees me, I'm going to be pulled over and given a ticket because I ran through a stop sign. So now I have understanding to stop at the stop sign, to stop at the red light. It's not just information, but then the next level down is revelation and revelation is application. So car example, if I'm in my car driving, as my dad used to tell me, you have to drive for the car in front of you and the car behind you. I grew up in Buffalo, New York. So dealing with snow all the time. You know, if you're driving, you don't want to pay attention to the snow bag because somehow the car is going to veer over. So. So you have a revelation that I want to look straight ahead. Simon: I don't want to end up over there, but it's it's like that causes you to drive straight ahead and avoid an accident. So when I talk about my information revelation, it's really understanding that sometimes we can have information that is a mile wide but only an inch deep. And when I moved to revelation, I have the ability to go three to four levels down in in whatever I'm working on. So when we look through this COVID-19 time. All , let's just look at it from a revelation standpoint. So the first is PTSD is going to be at an all time high because there's fear, stress and worry on the planet. . We also understand that that the magnetic fields, climate change, everything is just being turned upside down. We also then recognize that industries are collapsing and being reinvented. The fourth level is we also realize that during this time that corporations see this as an opportunity to furlough and to lay people off and never bring them back, because we are in a world of automation, algorithms, artificial intelligence like never before. But the fifth level, which is so I think even more powerful, we also see the companies that have cash who have been sitting on the sidelines waiting. Simon: They're going to poach and buy up companies. So if you remember, just a few years ago, Apple had over one hundred and seventy billion dollars in an offshore account. And due to the Patriot Act, they could bring it back and not have to pay as much. But when you have that much cash, you could go and buy companies. Warren Buffett, the Oracle of Omaha, they have over a hundred billion dollars of cash sitting and waiting. So when everyone is running scared and worried as as a good friend of mine, a hedge fund investor, he said, Simon, the money is made in the dip. You don't make the money at the top of the mountain. You make it when everybody is running scared. So when you think about revelation, it's going five levels deep, saying, what do you see that others don't see? What what are you noticing? What's the budget day? Because we will hear of companies that will literally come through this that time. And we're like, where do they come from? Because they decided to play another game. They shifted their brilliance and what the opposite direction. So everyone was zigging. They were zagging. Joe: Yes, so let me ask you this, when you wrote this in 2014, what sparked it? Like I can see you writing it now, like I can see you writing it on March 15th going well. I need to write this because we're in some deep stuff  now. So if I really put my head down and I can get this done in 30, and that's another thing I'd love to do some days, write a book. But if you put your head down, you could have maybe finished it by April 15th and now it would be out. But it makes total sense now. And that's why when I listen to it, I was like, gosh, this is like he he knew it was coming. It's like, well, what made you write it in twenty fourteen. Simon: My business had dried up. I was holding on by a thread Joe: And what was Simon: Business Joe: That just Simon: Wise, and Joe: Was that Simon: Yes, Joe: Speaking and Simon: I was Joe: Coaching? Simon: I was I wasn't getting the bookings at the feed that I needed, because when I quit my job, my wife, my then wife didn't work outside the home. So everything was on me. And we had young kids, mortgage, private school, the whole nine yards. So the business wasn't coming in and and the book sales weren't moving. We had a consultant project that had come to an end that had kind of given me a buffer. And so literally it was dry as toast business wise. And I said, you know what, I got to shift what I'm doing. I've got to think differently. And that's when I began to realize I'm not in the business. I'm in the content media distribution business. And the money is in content. That's what I remember at Disney. So I recognize if I didn't shift my my brilliance and reinvent and let go of what had been working and move into another direction, I probably wouldn't be here today talking to you. So what I realize is I can always do the speaking. But then I started adding coaching. I started adding training, I started doing online learning. And that's when I got connected with the folks over at then it was Lynda.com was called LinkedIn Learning Now and they said, you need to put your course into micro content. I was like, what's micro content? And there they're like three to five minutes of the snippet where you don't give it all away, but you chuck it down and people can access it. Twenty four, seven, three sixty five. Joe I had never heard of it. I was like what? I've always delivered on stage. But now all of a sudden a new opportunity came out of nowhere. And it's kind of like when Netflix had an opportunity to be purchased by Blockbuster and Blockbuster didn't see it will look more. Netflix is now and Blockbuster. ? So I had five when I wrote the book. Do I want to be Netflix or do I want to be Blockbuster? Joe: Wow, and did you is it basically the book, did it come as you were making this transition yourself? Were you take would you take everything that you sort of did and put it into the book as you were physically working on yourself and mentally and emotionally and whatever your transformation is, basically this book during 2014. Simon: So you ask a very important question, what a lot of people know, the book that came out in twenty fourteen was actually a book that I had written back in 2008 during the financial meltdown, Joe: Wow. Simon: And it was a different title. So the book has gone through three title changes and twenty five rewrites over almost two to three year period because I had to live through the shift. So the reason some of the words pop off the page from a just an energetic standpoint, because I wrote it from a deep place I was living, I was in the thick of it, so I was phoning it in. It was literally my life. I had to change the title because when I went to a publisher there, "Vuja de Moment", that's, you know, that's like esoteric. What the great  for the average person could understand Joe: . Simon: It. So what if we do this together? Like, no, Shift Your Brilliance. And I said, OK, that's what I'm living. But I had to live through it in order to write about it. Joe: Yeah, that's incredible. It's and you could tell and I really hope a lot of the listeners and viewers of the YouTube channel will go in and get the book because I'm doing it like obviously I have no choice. So it's so funny. I'm a musician at heart. I actually went to school out at Fredonia. Out where? Simon: Oh. Joe: Yeah. And and I played a lot in Buffalo. I played at the Lafayette Taproom. I don't know if that was there when you were there. I don't know. Simon: We Joe: Yeah. Simon: Got a good. Joe: Yeah, I got a I got a buddy that lives in Williamsville. Yeah. So when I found out you lived in Buffalo, I think man, when I picked that school to go to college and I was waking up at eight o'clock in the morning to go to theory and walking through four feet of snow, I was like, what were you thinking? Simon: Wow. Joe: Gone to Miami or somewhere. Oh, this is a great phrase. Broadband results on a dial up network. I love that. I heard that. I was like, gosh, I got to make signs of all of these things and just put them around my office. Simon: You have to evaluate how often are we upgrading what we're doing and here why this is why this is important for everyone listening to us from the time Apple releases the iPhone. OK, over many years, . The iPhone had 18 upgrades from two thousand seven to twenty nineteen eighteen upgrades. Every upgrade of the iPhone, a camera was better. More storage on and on. But what's interesting, if you look at that over 12 years, 12 times, 12, 12 years, 12 months is one forty four, one forty four divided by 18 upgrades simply means every eight months Apple was upgrading what they were doing because if they didn't, everybody else out of the market would catch up. So when I made the statement, we sometimes want broadband results by using dial up methods. It's the challenge that if I'm not upgrading my mindset, my skill set, my will set, then there's somebody else that's catching up when I'm asleep. Joe: People should make that sign and just put it somewhere, especially during this time  now, you know what I mean? Just trying to get the word out to say this is this is like of we've been given. What did I say? I said something about where you thought you had a deadline March 1st for some assignment a teacher gave you and the biggest gift and you totally hadn't done a thing. And the biggest gift that you got was the teacher gave you six months to get it done. And I Simon: That's. Joe: Feel like this period of time, I don't know if this will ever happen again in history. Like I went through 9/11 with an office in New York, like I owned the company. I was on 38th Street and Broadway. Everything shut down just like this. And now obviously we got hit a lot harder than the rest of the country because New York just stopped. The rest of the world, paused for a moment and then started to pick back up. New York just stopped. So I've gone through that. And then, like you said, we've gone through the 2008 crisis and then now this. And when each time these things happen, I was less stressed because I I knew that I would just figure out a way and shift and change and pivot and move on. So I never even though I my company was just slamming up and told when we were out in in Colorado every couple of days, I'd get a phone call from another client because I book a lot of resort entertainment here and it would come in little dribs and drabs and say, hey, I think we're going to have to cancel the music. Things are starting to get a little weird here. And I'm thinking, OK, and then it just hit. And then everyone call like within four days and said we're I need everything canceled until further notice. I was like, oh my God, now. And but I never stressed about it because I knew I was going to pivot and do something different. And I was able to finally start my podcast, which I had put down on a piece of paper. And I think in twenty fifteen. So here we are, twenty twenty. And I finally have the opportunity to get it . Simon: That's so that hey, that's so good. Same thing with me. We had over six figures worth of business disappeared seven days Joe: And. Simon: That night and some of it canceled, some of it moved to next Joe: Mm Simon: Year. Joe: Hmm. Simon: Some of it they just we never heard back from that. They just and then we also had to refund about five figures of of money back to folks who just wanted their money back. You know, Joe: Yeah. Simon: And what I recognize, I can either stay bitter or I can get better. And I was already working on some new things that I said are, let's hit the gas. Let's go. Joe: Yeah, yeah, I hear you, man. OK, here's another phrase that I heard in the in the audio book, Make a U-turn. I don't remember the context of it, but I'm hoping you do. Simon: Yeah, yeah, yeah, yeah, yeah, so I'm sitting at the beach and on the way to the beach with my family because living here in Florida, we're really big beach people. And you know how you see a sign that says you're so many miles away from the destination? Well, I thought, hey, I know a better way how I'm going to get there. Well, I went almost 30 to 40 minutes in the wrong direction, so I had to make a U-turn to come back because my my my wife had said to me at the time, you know, you should turn there. And I'm like, no, I got, you know, typical guy, . All directions. Joe: , , . Simon: So clearly, I'm sitting up, sitting by the pool the next day and I got a little drink with a pink umbrella and it hits me what happens when a person is heading in a direction and they never make a U-turn and see what I say, U-turn. It's not just the letter U. It's YOU u turn. Because when you turn, that's when you notice all the opportunities and possibilities that were waiting for you to make a turn. But if you never make the turn, you can miss it. Joe: And it's so funny because I think having GPS now has saved a lot of arguments in cars with the guys because we're always , we'll go out of our way to just say, no, we didn't miss any turn. Fail forward... Simon: Yeah, you know, in the dictionary, failure comes before success, and I'll never forget I went to speak for the CEO Council of Tampa Bay, and during the debrief time, one of the executives said that he had he gets out of failure award every quarter. And the failure award is to encourage his team members to fail. And I happen to go back and talk to them again. And I said, do you still give out the failure award? He says, no, we changed it. We changed it to fail faster. And what he was saying is so many people walk on eggshells at work. They don't want to break out and do anything that's out of the norm because they want to play it safe. And real breakthroughs comes when you walk on the edge, when you do something that you haven't done before. That's where the breakthrough is. So failure comes before success. If you go to the dictionary, fail faster because failure is not a bad word. It's only feedback. And the quicker you fail, then you can quickly see what won't work. Listen, I have failed more times than I can count on both hands. ? But I can tell you those failures have informed some of the successes that we've experienced as well. Joe: Yeah, so it's too bad the word has such a bad connotation to it, because you're , it's just it's just a flare. It's just, hey, this this wasn't  or something didn't work. But instead, it makes you feel as if you're less of whatever you're trying to do, whether it's less of a human, less of a father, less of a business person, less of whatever. And it's too bad it has that that feeling or that label attached to it. Simon: Yes, Joe: You know, and Simon: Yes. Joe: Like you just worded it, it's it's you need those things in order to know if you didn't have those signals, how would you know that something was wrong or that you need to change? . Simon: Exactly. Joe: Ok, you're going to have to help me on this one because it's Chapter seven. And all I put was it's about today. I assume it's about the time we're living in. But I didn't put any more than that. Simon: Yes, so what I was really getting at about today is so many times we are future focused that we forget to be present in the moment today. And if we focus on today, tomorrow, it's going to take care of itself. But who we are today goes into our future, waits for us to get there and says, welcome, we've been waiting for you. So what are you doing today? Is this the highest and best use of your time today? Joe: Are you in your space  now with what's happening and the pivot's you're making, the changes you're making, how much different do you feel than you did when things were rocking and rolling in January of this year? Simon: Yeah, you know what, I have to be really, really real with you. I struggled for about a good thirty to forty five days when this first first of the year I was rocking and rolling. I was in my groove. I was great. Life was wonderful. I've been home since obviously March 13th. And for a few of the weeks, I just was down in the dumps. I was ticked off. I was like, oh my goodness, woe is me. What's this virtual thing? What, what, what, what, what. And then. And then I said, Wait a minute. Hello, buddy. You know, a little of your cooking, if Joe: The. Simon: Not a little bit. So I got up and I looked at my wounds and stopped crying  over spilled milk and all of the contracts that it cancelled and realized entrepreneurship is not easy. If it was easy, everybody would be doing it, Joe: A man, Simon: But. Joe: Gus. Simon: You know, you don't earn your stripes, entrepreneur, when you're on top of the mountain in the valley, when no one is coming to save Joe: . Simon: You, the phone is not ringing and you're looking at your bank account and say, I need to make a payroll. Joe: Yeah, Simon: And so we mentioned the IRS, Joe: Yeah, Simon: . It's a real brother. Joe: Yeah. Simon: It is real. And that's what I just said. OK, I've got a choice to make. First quarter got second, third quarter, it's going to look a little bit different, so I told our team we're not going to dial for dollars to try to get business. We're just going to love on people and help them understand that serving is the new selling. So who could we serve? So we just reached out to clients and say, hey, we'll do a free virtual whatever you need, bring your team. And I just started doing a ton of those. And it's so rewarding. And then almost counterintuitive, we started getting calls for business Joe: Yeah. Simon: And it's just like we weren't even setting out to do that, but it just happened. So, yeah. Joe: Yeah, and I was curious because, like I said, you never know what's going on behind the curtain with anybody, ? And you Simon: Yes. Joe: And I don't know each other that well, but there's something that just comes through the screen, comes through on the videos, definitely when I'm there in person with you. And to me, I would have been that person that had gotten down and I flowed  through. Like people were just like how people are calling me How, because I, I, I think we sent out probably over one hundred, ten, ninety nines for twenty nineteen because we have so many entertainers on our roster and it's literally everything across the board and they're all reaching out. How are you holding up. Because they knew everything dried up and I was like man and I know people think I'm nuts, but this was such a blessing for me because I just needed this time to do other things. And, and and I have I have not stopped with someone as positive as you. I wanted to just kind of get a feel for how does Simon T Bailey handle a situation like this to me? He'd be like, oh, we got this. And so I was just wondering if and and I appreciate you explaining that you aren't the superhero that I think you are, that you did have your moment, which is very human. But like you said, you you lick your wounds. You stood back up and said, OK, now it's time to get busy and stop crying. . Or whatever. Simon: And you know, when I came out of this fog, I realized I needed to start cooking, so I started cooking. I've learned how to cook a little bit enough to survive. I stop binge watching on on everything. That was all. I turn the TV off. I started reading. I started writing, I started thinking and I started doing Zoom calls, almost like as a mastermind with different people from different areas of business, just getting input insight. And all of a sudden I was like, OK, wow, OK, here's what we need to do. And once I got into the groove, because I love all things business and I love what I do, I just start seeing all the opportunity. You and I said, OK, we're going to have to come to this. But probably the most important and I would be remiss if I didn't say this COVID-19 and my my my prayers and heart goes out to all of those who've been directly impacted in either losing a loved one or have been impacted by it. But for me, it has been a time for me to get closer to my children. I've got a twenty one year old sophomore in college, Daniel, a daughter who graduated. She's the COVID-19 graduate, you know, graduated from high school to head the college. Interesting time of life. Two kids in college, ? So I'm like, OK, I'm writing checks  now. Joe: Oh. Simon: It's just like in school you go to school at seventeen thousand dollars a year. I'm like, oh, Joe: Oh, Simon: Like, Joe: Man. Simon: Yo. But here's what I did during this COVID-19 time. I hired both of them as my research assistants. So every Sunday night they have to read a book that I have purchased for the different books, business books. They have to listen to a podcast, listen to a YouTube video, watch or view an article, and then they have to write a summary and answer seven to nine questions. They have to turn it in by Thursday at five p.m. I pay about twenty dollars a day. They could take Friday off and we're already seven weeks into this. And it's all the things that Dad said you should know. Now I'm paying them to learn because it's actually research for another book that I'm working on, but it's probably closer to my children. This is your covid-19 time, so I'm just eating it up. Joe: That's awesome. Are they going to school there where you can see them? So they're going you're in Florida, ? You're Simon: Not in Florida, Joe: At. Simon: So so my son is online and my daughter, believe it or not, she's actually going to go to campus, the private school, private college, and she's going to their class ratio is maybe one professor to 20 students. So they're just going to practice physical distancing and she'll start in the fall. But I'm excited for them. But we've gotten closer Joe: Yeah, that's great. Simon: And so it's been good. Joe: Yeah, are your Simon: Yeah. Joe: Beaches open or closed? Simon: The beaches are open, you know, here in Florida, we we kind of march to the beat of a different drummer and we love our beaches. Joe: I don't blame you, I I grew up on the East Coast, so I'm from New York originally, so. Simon: Oh, Joe: Yeah, Simon: Yeah. Joe: I don't blame you. Brilliant versus average. Simon: So average living is dead, as we would say here in the south, that dog won't hunt. So the days of doing average work with an average attitude is gone um average people show up to collect a check. Brilliant people show up to add value. What I discovered after interviewing top performers, those who got promoted, who were promoted over time, they discovered that a paycheck is given to people who show up, but opportunities are given to people who work and think beyond what they're paid to do. That's a difference between average versus brilliant. Joe: So you can help me with this, because I I and I was there like I'm not I don't ever see these things as if I had all the answers. I'm fifty eight. I'm I'm a late bloomer, like, you know, I'm working Simon: Young Joe: Now. Simon: Man. Joe: Yeah. I'm working on this stuff as if I'm reinventing myself. And I feel like so many people get stuck in thinking they can't do things and I don't know where that comes from. I know it's fear is part of it, but there's got to be a way to say, listen, all the people that use you look up to or you see or you aspire to become or they all they all have to figure it out the same way we all put our pants on one leg at a time type thing. . So how is it to how do you try to get people to shift their their frame of mind to say, listen, you can do this just as much as anyone else. It just takes hard work. But other than that, some of these people are like lifelong learners, but they literally don't do anything . They take course after course, conference after conference, seminar after seminar or whatever, and they just don't do anything with it. Simon: You know, it's it really comes down to something so simple and not to be simplified, but there's a Yiddish proverb that says the only person that likes change is a wet baby. And what I've discovered, the reasons people don't go for it is because they don't want to change. So think about it. When you first learn to ride a bike, probably you fell, ? You perhaps started your business. You started had some success, but maybe experienced a little failure. It was a change that you had to make. Just look at this whole virtual world like everybody now understands Zoom. But when they first heard Zoom, you're like, no, no way. Or you could get changed. All of a sudden you're telling other people, did you know that you can go in the chat and you could do this? You could do that. So until people are willing to take just a little step, I don't have any entrepreneurs in my family. I'm the first one in my family to leave a nine to five and venture out into these uncharted waters. Why do I why did I do it? Well, first of all, it was a dream, but a dream until you put feet to it. And it's just something in the sky. You got to move every single day. And until people are really ready to change, they don't want it bad enough. You got to be hungry and go after it. Joe: Yeah, I guess that's just it, , it's not it's not even the fear, because if you want to bet enough, you'll push the fear aside. Simon: Anything you want, your first car, your first home, your first job, you become laser focus and you go after it. Joe: Well, this brings me to the last thing I had on my know, which was and this is perfect shift or be shifted, ? Simon: When you look at that work shift, shift, if we were to break that down, simply means see how I fit tomorrow, see how I fit tomorrow shift. That's the acronym. So if if I don't shift, see how I fit tomorrow, I will be shifted by everything in every one. So let's look at a prime example. How many malls are going to survive after this? COVID-19 malls are going to forever be changed. But guess what? If they don't adapt and come up with a new model, the Amazon of the world is literally going to shift and replace them. And if it's that simple, so everyone listening to us  now, they have to say, don't wait for the tap on the shoulder or the phone call with your boss. You shift before you shifted. So how do I begin to look at my workplace through a fresh lens if I'm an entrepreneur? Who are the top 20 percent in my field? What are they pivoting to? What are they doing? How do I begin to ask a different set of questions that allows me to shift before I'm shifted? Joe: Yeah, and that's , this is what we're talking about now, the Calvary is not coming . You have to shift, you have to do it on your own or you're going to be shifted for sure. And it might be wherever. Simon: Yes. Joe: Yeah. Is there anything else about the book you want to talk about before? I don't want to keep you we're just about at an hour. And I know you're a busy man. So is Simon: One Joe: There. Simon: Thing, there are exercises in the book that I encourage each person to go through, and also we have an online course called "Shift Your Brilliance" system that people can walk through to take their teams through it. And we've gotten rave rave reviews from people who've gone through the course, and it's at simontbailey.com. Joe: Awesome, so I'll put all of this stuff in the show notes for everybody so they'll have all the links. What is the best way to get in contact with you? Simon: Yeah, they just go to simontbailey.com, "T" for terrific, Joe: Exactly. Simon: As we really Joe: Love it. Simon: Got to. Joe: So my my middle initials, P. So I can't say P for perfect, because that's not going to fly. Simon: P for Powerful. Joe: There you go. OK. I like that, OK. Like I said, I'll put all of that in there. I can't thank you enough for doing this. I you know, I respect you so much. I love watching all your videos, Instagram stuff that pops up. So it's super inspiring to me. Someday if I can get my speaking act together, maybe I'll ask you for advice someday on how I get my first one and how I Simon: Oh. Joe: Can get to the point. And maybe we'll share a stage someday before I take a dirt nap or say. Simon: Thank you. Thank you so much. Joe: Thanks. Thanks a lot for coming on here again. I appreciate it from the bottom of my heart, I really appreciate your time. And it was an honor to speak with you. Simon: Thank you, Joe. Joe: Ok, man, you take care of yourself. Simon: Take care.

The Joe Costello Show
Maria Luna - CEO of BRAVO Pay

The Joe Costello Show

Play Episode Listen Later Jul 15, 2020 47:08


  I sat down with CEO Maria Luna from BRAVO Tip or Pay soon to be BRAVO Pay. We finally reconnected after meeting each other in 2016 when she was very kind and supported a venture I was working on here in Phoenix, AZ. The BRAVO app falls in the payment technologies category and is available as both an iPhone and Android app. Initially, the app was created for hard working people and creatives to get tipped for their services and it has now grown into a payment powerhouse. The new version adds so many more features including social media, social connection, fan pages, store fronts and has literally morphed into an all-inclusive app for anyone who works for themselves or has the ability to make money on their directly with their clients and followers. Unlike the competitors who share your information inside their apps like your name, email, phone # and have deep marketing pockets and charge large fees, BRAVO stands out as caring for all who work hard and deliver great service without giving up your identity and taking money out of your pockets with unfair fees. Maria is so sincere and you can tell that her goal is uplifting everyone and that sole purpose is more important to her than making a single dime. I hope you enjoy our conversation and more importantly, I hope you download the BRAVO app and start using it for all your payments, tipping and social interactions when it comes to promoting your goods and services. https://www.youtube.com/watch?v=OIY2hkhIiZs Maria Luna: BRAVO Pay: https://trybravo.com/ Connect with Maria: LinkedIn Personal: https://www.linkedin.com/in/mlunaceobravopay/ LinkedIn Business: https://www.linkedin.com/company/trybravopay/ YouTube: https://www.youtube.com/channel/UCqzMQ63Znk4H4wKwO496F9A Facebook: https://www.facebook.com/bravopay Instagram: https://www.instagrm.com/bravo_pay Twitter: https://twitter.com/Bravo ********** Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass ********** If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.com/#thejoecostelloshow Subscribe, Rate & Review:I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to: https://joecostelloglobal.com/#thejoecostelloshow Follow Joe: Twitter: https://twitter.com/jcostelloglobal Instagram: https://www.instagram.com/jcostelloglobal/ Facebook: https://www.facebook.com/jcostelloglobal/ YouTube: https://www.youtube.com/channel/UCUZsrJsf8-1dS6ddAa9Sr1Q?view_as=subscriber Transcript Maria Luna: Joe: Hey, everybody, welcome. I'm excited for my guest today. I have Maria Luna from Bravo. She is going to explain the app and everything about it. Maria and I met, I think, back in twenty sixteen, and I haven't talked to her in quite some time, but they have definitely done a ton of stuff since then. And we're going to get into all that. I'm not going to spoil it. But Maria, welcome and thank you so much for being here. Maria: Thank you. The pleasure is all mine. Joe: There's plenty of interviews with your history and all of your growing up stories about your mother, how she made money and how this is so dear to your heart. The concept of what you built and then your own education, a bachelor's degree, masters degree. So there's plenty of places people can see all that. I really. For me. I love the app so much. And you were so gracious to be a part of my life in 2016. We had opened up a small performance school. And I really want to use this time mostly to get the word out about Bravo and allow you to explain where you've come from and where it's going. I know that there's a new iteration of it since 2016. I didn't even notice in 2016 or actually I didn't even know if this had happened since then. But we're going to talk about Shark Tank, which is cool. I don't know how much you can talk about it, but so you can just say, I can't talk about that. But I just I have some questions about all of that. But again, let's let's start with just the basic concept of what the app does and then we'll get into I know all these other questions will come up. Maria: Awesome, we'll thank you for the opportunity. So with an honor and a pleasure, whenever I invited to speak about our company, it's it's really a team effort. Unfortunately, I'm the majority of the cases on the face of the company, but there's so many amazing people in the team. I want to recognize their work and I'll be happy to answer anything about Bravo and our history and where we're going. More than anything. Joe: Great. Well, again, I think the best place to start is I think there's everyone's going to have some initial confusion when they hear about the app and they then go. But what about and I'm not going to mention any of the other apps that are on that same sort of platform or potentially do somewhat of the same thing, because I know there's a very distinct difference with Bravo. So I need you to explain what Bravo brings to the table where it's different than the the other apps air quotes Maria: Well. Joe: That are happening or what other people might use. Maria: Ok. More than happy. So starting with our journey and our purpose. When we started Bravo, the main purpose is to financially empower anybody that depends on cash payments, tips or content creators and freelancers to make a living. And you say, well, there's many ways of doing that. Yes. But what we bring different to the table. Number one, with Bravo, you your data is not the product. So we do not monetize on our users data. And that has massive implications in your security and the security of your data. And the money. So starting with that, we are super different based on how private, how protective and secure we are for our users. But beyond that, and the purpose to financially empower that takes me to the next version of Bravo. We create first a minimum viable product. And then a beta where we wanted to prove, OK. There is this perfect way. We're two perfect strangers can meet each other, page other and not exchange a single point of data. And that was to take Bravo to the market and prove that there was a need for a super private way for two strangers to connect each other and continue with their lives while taking bravo to the market. And we have listened unlocked to our users and we started to see a lot of verticals popping up beyond the typical tipping situation where you're tipping your valet or anybody that gives you great service. And then we started to see a lot of increase use age in musicians. Broadcasters can benefit from brow. We're seeing some very important podcasts and podcasters using Bravo. Maria: Any type of freelancers, photographers, yoga instructors, trainers. And then we listen to their pain points. And what are those pain points? OK. Whenever they go and put their content out to monetize, to to make a living. All of the platforms out there start either taking a lot from certain income. So they're costly to use their platforms and they start having tiers that make it super complicated. So, for example, if I have ten thousand users, I have access to these tools. But if I don't, I, I do not make the money or I depend on ads. And then they start hiding your content so that you have to pay to be visible and will listen to all of those pain points. And then we did focus groups. We tested things. We went back to them and we made sure that all of the tools to monetize combining that social aspect of it. Let me bring your my content out and let me be financially empowered by my fans or my supporters are in one platform and in a fair price, not hiding anybody's content. So you work hard for your followers or your supporters. I'm not going to hide your content. I'm going to provide those tools and democratize the tools. Why do you need to wait until your super big to have access to to the tools? And that's what we're bringing to the market in our next item nation, which is a perfect combination of sharing who you are monetizing directly from your fan base and providing a store item where you can sell pretty much anything. Joe: Yeah, that's really cool. And along with this new version, is that part of the name change that I saw or did that happen a while ago? Maria: Well, as a company, we because we went very focus on one side of the market. One one niche inside the market, which was tipping. Joe: Mm hmm. Maria: We first position bravo there because we knew that there is a pawn. Right. Tipping was the tip of the iceberg. So we knew that the first thing we could solve right away was that interaction of two strangers. But the vision is way bigger. And it was to eventually become this platform that around the world, anybody can be financially empowered directly from somebody that wants to either pay them for one time. And now we're adding recurring revenue. And we're also opening tools so that you can have your own store inside Bravo, if you will, to to sell anything like experiences. One use case would be I'm a musician and I'm going to say on this concert, I am going to open 10 spaces for people to buy a backstage experience and they can go and buy it on Bravo presented and have their picture taken with their favorite artist. Things like that. So the sky's the limit. Your imagination is the limit. Joe: Right. So is it now called Bravo Pay? Is that official, the Maria: We Joe: Official? Maria: Are evolving now. The Joe: Ok. Maria: Name to the final purpose, which is way bigger than just sending Joe: Tipping. Maria: One time gratuity. So we're evolving the name to Bravo pay. Joe: Awesome. OK, so can I give you some scenarios so that I again, I want this to be I think the marketplace in the sort of pay apps is a little clouded. Or people get used to something and it's a habit forming type thing and they don't they don't want to change and they might not understand that they might be paying fees that they don't need to pay or they're sharing information that they don't need. That's probably the most important thing that Bravo brings to the table unless I've missed something. But that's the thing that I keep hearing, is that it's an anonymous exchange of money, in a sense. Maria: On this version, on our next restoration, on top of that, which is great for your safety and security, what we're adding is that intersection of of social finance of you happen, that direct support from your customer and and your fan base and expanding the tools, democratizing the tools that in any other platform are costly or dependent ads, or they hide your content so that you have to then pay more. Joe: Great. So, again, for clarity, I want to. I want to say that before the new version comes out, though, the huge part of Bravo was not having to exchange any personal information in order for someone to pay you or for you to get paid. Is that correct? Maria: Correct. The security Joe: Ok. Maria: Of being a total. Joe: Right. And so now the new version is you're stacking on the social layer that has been missing because it's just basically was a tipping paying app. But now you're adding in. If you have Bravo, you have all you're capturing all the social tribe that follows you. You're allowed to interact with them. So you're adding other layers that could be more helpful to everybody, but definitely artistic types and creatives for sure. Maria: Correct. And let let me paint the picture for different use cases. Let's Joe: Ok. Maria: Say I'm a yoga instructor and I am on the app and now my my students can not only premium Bravo, but then I can offer it experiences to them through the app that I can sell in my store. So I create a store item for everything that I am going to offer. And like a super private class or an advanced class or anything that I want to offer, I can do it inside the app. I can also grow my my user base or my followers by sharing what I do on the app so I can then also put videos and pictures and content that can be featured on the app and can be also shared to anyone that it's on the app. So we're doing that intersection of social content and payments. Joe: Wow. So it's not just social connection and payments. It's actually you're allowing content. And are you allowing. Are you saying you're allowing even like a store front situation? Maria: Yes, you can create a store on the only thing it's like because of the different regulations of the different platforms, the store items have to be for something physical or something that is not an app purchase. So I can buy things like I like I mentioned the experience of a backstage meeting or I can buy a special class, something that it's not digital. I can buy it on the app, merch, a t shirt, anything that I want to create on a store item for. Joe: That's great. That's really. So it's really come like much different than what I knew. Maria: Oh, yes. The division, it's big and again, because the purpose is to financially empower everyone on all of these tools are offered in a very democratized way. If you use the recurring tools or the additional tools to monetize, Brummell will keep a five percent, but you keep a ninety five percent of the income. And for the gratuity payments, you keep a hundred percent of. Joe: Right, sorry, member. The the actual formula is it's a two percent fee going to the person that's actually making the payment. Right. So it's a Maria: Which which is another differentiator, because Joe: Right. Maria: Let's say if you're going to make a payment with other platforms, you in order for that transaction to be free, and then when I say, quote unquote, free, it's because you are the product most of the time. But let's say if you're going to pay with those platforms, you can only pay with a debit card or retrieving the money directly from your bank account. Bravo allows credit card payments at a two percent fee, which is Joe: Yeah. Unheard of. Maria: Unheard of in the market. Well, yes. Joe: Yeah, it doesn't happen. And it's funny because the listeners and eventually I take this and I put it on my You Tube channel because some people just don't. I don't want the content to be lost for people who don't listen to podcast. But you and I are both in Arizona. And I first saw Bravo when I would pull up to various restaurants and the valet would have a sign and I would look at it and would say, bravo, you know, tipping and whatever the sign said or used to say or still says, I'm not sure. But again, for the users, I want them to understand that what has to happen is both parties have to have the app on their phone, which is a free app. It's downloadable on either Android or iPhone. Right. And the initial way that the payment occurs is by the Jeep finding that person via G.P.S.. Maria: There's Joe: Right. Maria: Two ways if I am near you. I can you find you by proximity because of the G.P.S. capabilities. But we also have a search tab that I can find you by your username. And that's another way we protect your privacy, because my name is Murray. I will not. But on the app, if bananas is not taken, I can be bananas. So that gives another layer of security. Obviously we're in the payments industry in the back end. We need to know who you are because there are laws and regulations. Joe: Mm hmm. Maria: We need to know our customers there so KYC know your customer regulations. So in the back end, we know who you are, but the person that it's paying you doesn't need to know, you know, your real information if you don't want to. Joe: Right. Maria: Your handle is customizable. Joe: Sure. And I think that, again, money. I don't want to say this in the wrong way. Money is great. But money. Physical money is really dirty. Like Maria: It's Joe: The handle. Maria: 30 Joe: It's nasty. Maria: Now, the call, the make makes us realize they're doing more. Joe: Right. So this is a very cool thing because the timing of it where I now have a fairly sizable booking agency in Arizona. And then we expanded into Colorado last summer. So now we're in two states and we have over 500 forms of entertainment on our roster, everything from literally a instrumental guitarist to synchronize swimmers in a pool all the way up to A-list entertainment. And so for us and our entertainers were in that time right now where they are very you know, they all need to go back to work because that's how they make their living. Most of ours are full time entertainers, but they don't want people coming up to them to necessarily request songs because they get right on top of you there, or sometimes they'll even come up. I've seen people come up and they're right in your ear while you're playing a song you're trying to set. It's just ridiculous. Maria: Yeah. Joe: But on top of it, having people come close to put in a tip and put that money in a tip jar, and then you have to handle all that money later on at the end of the night. So this is a huge way to get rid of that whole they don't have to get out of their seat, that you don't have to handle dirty money. And it's just another great reason why, you know, not only the entertainers should all have the app, but consumers should start to look to put it on their phone and they're going to see more more opportunities pop up where they don't have to go, pat their pockets and go, oh, I don't have any cash. It's just right. It's all done. Maria: Correct. Joe: Yeah. Maria: And that is the general purpose. We want everybody to work hard for their money. That has something to bring to the world. Either service or your art, your talent to be to have a decent way of living. So we want to facilitate that interaction where I can. I see. I love what you do and I just tip you or pay you. But now, on top of a one time gratuity, we're adding the ability for me to subscribe to you as a fan and then on a monthly basis support what you do. So do us a podcast or I can subscribe on a monthly basis, you know, support what you do. But I also we're offering and bringing to the table partnerships like right now. We partnered with so many virtual concerts. There's a group, Facebook, that does a blues night every single night, and they're accepting the tips via Bravo. And a lot of people tell me, you know. What is next? So what is next is all of these tools that we are providing to put even more money on the hands of the creators, the artists and the service workers. And then we are going to be rolling out a marketing campaign state by state, to bring the word out in a disciplined way. I'm very proud to say that we we took problem from a bootstrap organic movement to now a movement that is going not only in the USA, but we're going to expanding to Europe, we're going to expanding to Latin America eventually. So Canada will say so. Yeah, you're going to hear more about us. Joe: Yeah, and I want the listeners to know that I knew you when. Because it's true. It's and and the fact that you and your husband, Hector, the both of you are real people like you've come from understanding that this is a situation where you're you're you're making money at something. But more of it is that you're helping people like it's a very sincere movement. This is not a gouging situation. Maria: Well, I would say it's a team effort, like the idea was conceived in a trip that hit there I was we were we wanted to tip our tour guide. We couldn't we didn't have cash. And that's where the idea was born. It took me back to the days of my mother living Joe: Yeah. Maria: On tips and all of that. And then we wanted to create an easy way for people to connect and pay. And then the vision was eventually this could help not only in the ticketing situations, but people that depend on other people to pay at a distance or take a bigger level. But we wanted to go very disciplined. It was the two of us at the very beginning. Joe: Mm hmm. Maria: I mean, Elmer joined us. Hector is a self-taught coder, although he's a physician. So he did the initial wire frames. Then Elmer joined us as a chief technology officer. And now we have six engineers of of world class quality. Joe: Wow. Maria: We have a team. We have Adam that then joined us in the marketing side and sales side. Travis Kohlberg, that it's he is super young, but probably one of the most creative social content creators in the world that he's working with big names. I can I don't dare to say it because, I mean, I don't know how private these projects are, but as big as it gets and we're so fortunate that he is part of the team as well. So super talented, passionate people. And we started with twenty five users by invitation. I think I knew you a little bit after that. Joe: Sure. Maria: And we have been told everything. We have been told that brand is going to crush you. They have, you know, millions and millions and billions of dollars. And unlike we're driven by a purpose, we're not here to take anybody out of market. We are creating our own opportunities. And the more the merrier, the more tools that people have to make money. And let's all competing. In fairness, I'm not afraid of big money or big pockets because we are driven by that purpose. We created a grass roots with twenty five users now. Now we're over two hundred and fifty thousand people all over USA and growing. And that is because of a true excited people talking to their customers and their fan base. Joe: Yeah, that's great. I'm really happy for you. I want to. Can we talk about the subscription piece of it just Maria: Because. Joe: So that I so that I understand? I want to make sure that the users, both the person getting the money and the person paying, understand that the app is free and they just put in whatever their information and then they can create, like you say, create their handle, which basically makes them somewhat anonymous or hidden. But then you offer a subscription based. Maria: And that it's coming. It's not available to Joe: Ok. Maria: Everyone yet. However, Joe: Ok. Maria: All of our brand ambassadors are testing it and very soon we're going to open it for a number of thousands of people. General public that that one, too, tested. We're going to open it for testing before releasing it to the whole wide world. And then it's a beautiful thing. Now we're allowing people to first check us out. So you don't even need to create an account to see. And that's we are changing also our tag name to explore, pay, earn, because that describes better what you can do on the app. Joe: Mm hmm. Maria: So you can explore different profiles. So you create your profile. I'm going to be able to see your profile even before I decide, OK, I'm going to actually sign up to sign up. You provide very little information, your name, your last name, your email. You enter and you can even enter with your credentials with Facebook twitch, many Apple. We're allowing people just boom. I entered with my own credentials and then you can explore the content, whatever you are offering on the app. Your videos, your pictures, all of that, it's free. I don't need to pay for all that to the content creators. What we allow them to do is create a subscription model. So let's say your diehard fans or customers can then subscribe to support you and you can offer them physical experiences or things or merch or anything that it's not an in app purchase. You can offer them on the app by creating sport items. So more to come. We are going to start releasing little by little. We already started a teaser campaign of what's coming on Joe: Mm hmm. Maria: Social media Bravo page. But we're going to very soon open it for people to test themselves. Joe: Yeah, that's great. So one of the things that I saw was Richard Sherman. Is he a spokesperson for Bravo? Maria: I am so fortunate, again, that we started with so many passionate users, but then they brought Richard Sherman is one of the kindest, nicest human beings ever. And he he shared with me that even though he's very conscientious of the importance of of empowering, financially empowering people, he dedicates time to educate his fellow friends on players, on the importance of finance and good education on your own finances. So he loved the idea and he joined us. He's part of our advisory team to better understand that world of athletes, because that's another thing. You create content. You can be a problem. Not only you have to be on service. I'm an athlete. Think about all of the athletes right now sitting at home waiting to be called to work. And now they can have this opportunity that on the app they share who they are, they share the routines, they can share everything, and then they can have that special connection with their fans. Something else we're adding on. It's the ability to chat with your favorite person, but it's at will. So let's say you can say to my customers, I'm going to chat with them Fridays at 1:00 p.m. and then you can turn it off as well. Joe: Yeah, that's great. And I just before we get away from Richard Sherman, I want to make sure that the listeners, because not everyone's going to know him if they don't watch football. But he's a he's an amazing NFL football player. Maria: With the San Francisco 49ers. Joe: That's it. All right. Maria: Yes, yes, he's a cornerback for Joe: Yeah. Maria: The San Francisco 49ers. Joe: To Maria: And Joe: Try. Maria: But again, beyond the big figure that he is inside of the NFL. He is a way bigger human being. He has his own charity. He's he's an amazing person. Joe: That's great. It's great to hear I was really when I saw that, I was like, wow, this is man, Murray is blowing it up and I just. It's crazy. Maria: Really, it's the whole the whole team and the passion behind it. Joe: Yeah, it's really, really exciting. I'm glad. Oh, so when is the new version? I think you said you're starting to kind of send it out here and there to different Maria: Well, Joe: People. Maria: Right now, all of our brand ambassadors have it in their hands. So they're they're testing it for us. And we gathered all of their feedback to make it even stronger on the next phase. Very soon we're going to release it to their fan base. So they're going to be able to provide a code to their fan base to test it. And we are going to also do a campaign so people can request to test it before we release it to the general public. Joe: And is there a release date? Maria: We're not going to announce it yet because Joe: Ok. Maria: There's many factors, and once you are in technology, you know that there are many factors around the launch. And we wanted to make it again, like everything we have done in a lack of grassroots. So we want to bring both our ambassadors, the ambassadors, Zoom, bowling their fan base. We're going to open it to people that are curious when tested and we want to use their voices. So if I talk to you, I can talk for many hours. But if a friend of yours or somebody you admire tells you this is a secure, perfect way for us to have this connection, then it's a more personalized thing. Joe: So you've mentioned a couple of times about a brand ambassador. Can you explain to me what that is and how someone would find out about it and how to become one? Maria: Well, we call them Jubran Ambassadors, but they're so gracious. They're just people that that love our kirp really much Joe: So Maria: Up. Joe: I can be a brand ambassador. Maria: Yes. You're hired. No. Yes. It's people that are passionate enough to join our movement and we call them Bravo family. And they just they just tested with their with their fan base because ultimately it's a tool to be empowered financially, directly by their supporters in the future as we grow. We will open opportunities for. To be paid to be a brand ambassador. But so far, it's a very grassroots. We have famous people like Madonna's guitarist. This woman want to give money Joe: Yes. Maria: Is one Joe: I saw Monty Maria: Rapper. Joe: And on the Shark Tank episode. Maria: Yes. Joe: Yeah. Maria: And he's still he's like a like a brother. I love him so much. I would have a richer. We have Mike Studd, which is a platinum recording artist, and he also has a podcast called Y and Kay. We have John Kilmer's that does a podcast with him. We have Alice Cooper, Solid Rock. We Joe: Oh, Maria: Have Joe: Awesome. Maria: Lee Jansen that it's a professional golf player. Jarrett under Meehl, which is a band that it's amazing. If you haven't heard your music, find you a band. I can't keep going on and on. There's there's many and comedian Brad Bryant Toffler, so many that I am I will be unfair if I leave somebody out. Joe: Right. Maria: But. Joe: No, I get it, I get it. Yeah. It's so funny. I know for Ruka and I know Jared Jared in the middle. Just because, you know, they're Arizona based, but. Yeah. That's awesome. I have a question that I don't want to forget to ask. How does somebody know that that person has Bravo? And I know that at one point when we know you and I met and in 2016 and we had it, there were stickers and there were signage. And so does that all of that still happen? Is that still available to someone? Maria: We can, but court called it temporarily changed the scene. And Joe: Ok. Maria: I'm very proud to say that the spy, that many restaurants have been affected and we have been partnering with some like Helio Raisin. It's a local restaurant that we partnered with two to help as much as we can. But all of that market dried up very soon. And then we started then to see a lot of growth in the virtual world, like like the blues artist that I mentioned and the musicians and whatnot. So we have been growing despite all of this tragedy. And my heart goes out to everybody that it's suffering from from this cold it. But the main point to be said is that that changed the arena. So now the physical interaction doesn't happen as much, though, paid by proximity. So most of the things are virtual. And the way people let them know was talking about it, like you can find no. Awful. Joe: Ok. Yeah. So if a performer let's so I already have people back at work at a local resort here called the Phoenician. So it would be a matter of them getting into the habit of saying, Maria: You Joe: Hey, Maria: Can remember Joe: You know, Maria: The. Joe: Yeah, just if you like what you hear, please hit me up on Bravo. Just something simple like that. Yeah, Maria: Now Joe: Well, that's Maria: It Joe: Great. Maria: Is, but I guess I can mention it is a movement. And normally the person that it's the receiving side has the power to to to bring the message to the people. They. Joe: Yeah, yeah, and it's funny because you mentioned the virtual stuff. And obviously I have a lot of entertainers locally in town that I know that I see up on any of the various platforms doing their live sessions with the hope of making any amount of tips whatsoever to just keep their head above water. So it more than ever, it's important to a have an app like Bravo to be able to receive those tips. And the fact that you're not gouging them with these huge fees. And so everything that a fan or a customer pays, they have it all goes to them. And it's just it's a great thing. So I just I can't stress it enough because I just think that you're in a different realm and I know that you're sincere and it's very much comes from the heart, which is in the business world. That's a hard mixture of having a heart and still wanting to be successful. Maria: I Joe: But. Maria: Don't know what they have to fight, like Joe: I. Maria: Henry Ford said once, a business that only makes money, it's a poor business. And I totally live by that. Joe: Yeah. Maria: You can. I have to be responsible with my stakeholders. And obviously, we're adding now more ways to monetize forever. The receiving side gets the one time gratuities for free and then the recurring revenue because we need to provide other tools. They keep running five percent. But beyond making money, why not be that responsible partner in society where everybody is uplifted with you? That that's Joe: Yeah, Maria: What actually. Joe: Yeah. And you are that person, so thank you for that. I appreciate it for sure. OK, so Maria: But Joe: Now. Maria: Now you're hired as an ambassador Joe: Ok. Maria: To Joe: All right. I'm holding Maria: The. Joe: You to it. All right. So I want to talk about Shark Tank because Maria: Of course. Joe: I didn't know it totally caught me by surprise. And I'm a huge shark tank fan. I follow all of them on social media. I comment all the time on a lot of stuff, on Laurie Laurie stuff and on Damon's stuff. They seem to really be up there a lot. Those are the two that I and you know, the likes. I mean, I don't know if it's them in the background doing it, but it seems sincere, like they they seem like they might be the ones answering the comments or are liking them or not. But who knows. But I have the date of November 5th. Twenty seventeen. Is that correct? Maria: That's correct. Joe: Ok. And I understand the way it happened was you had won a tech award at some other. Maria: Right through San Francisco, Joe: What was it again? Maria: Techcrunch Disrupt in San Francisco, the audience speak. Bravo was their favorite startup. Joe: Yeah. And so from there, my understanding was one of the producers from Shark Tank saw that, heard heard about it, whatever, and invited you on. Maria: Yes, they invited us to to to start the process. But after that, you just like anybody else, so you don't have any special privilege. You still have to submit your versions and everything. And then you go through a very lengthy process all the way until they select the final people presenting. And we were in that group. It was a great experience. And they're they're good people. They're fun. They're they're they're good human beings. Joe: So when you say a lengthy process, what what is that? Maria: I mean, I cannot share because I would I have a confidentiality Joe: Yep, Maria: Agreement, I can there's things that I can not share. Joe: Yep. Maria: But let me. It is not that you just submitted one audition and you're in. That's as much as I can say there. It's a process. Joe: Sure. Maria: It's an Joe: Ok. Maria: Ongoing process where they filter different. The offers are are real. All the conversations are real. And like in any business situation after the show, then there's the conversation continues. Joe: Yes. Maria: And then some companies move on with the offers and some companies are not necessarily depending on on additional discussions. Joe: Mm hmm. Maria: But I have to say they were very fair throughout the process. Everybody makes their own decisions based on what is best for the future. Joe: So Laurie said, and I quote. You were Maria: Lori. Joe: Here. You were one of the most impressive people she has ever seen on the carpet. Maria: She was very generous to say that. And I have to say this about her. I always say that whenever you say something good about a person or bad. Unfortunately. But I tend not to say or try not to say anything bad about anybody. But whenever somebody says something good is because they see that doubting themselves. And Laurita is a good person. So she is all about women empowerment. And I think she was super kind and generous of saying that. And I thank her for that. Joe: How nervous were you? Maria: I have to say the truth at the moment that you're pitching, there's this all adrenaline that it's in you that you're going to an automatic mode. And I'm the kind of person that I don't take no for an answer easily at least. Oh, I went there to bring it before that. I was extremely nervous, like any other human being, because there's many things. I mean, obviously, I saw other chapters where they pretty much crush the Joe: Right. Maria: Spinners. But my team and this is we're having a great team behind you. It's so important. Heck, they're out on Karoline, everybody. My team kept me focused on one thing. The people that do poorly on the show, it's because they don't know their business for a reason or they don't prepare well. But we built this from the ground up. I deal with the finances when the accounting, everything. So from day one. So I knew the numbers. I knew my stuff. And I knew my purpose and the purpose of everybody in the team. So that that took care of of the, you know, having the confidence. I mean, in life, what what can happen is not going to kill you. It's going to make you stronger if it goes by. Joe: It's a. Maria: Fortunately, when. Well, and it opened great doors for us. Joe: I have to tell you, I could be an amazing entrepreneur. I think if I only had the financial side of things together and I think that's probably my biggest downfall. And I'm trying. It's just so hard for me. But the fact that, like everyone that goes on Shark Tank, you go in with. We want this amount of money for this percentage of the company or whatever type of deal. But Muzi, it's that, right? It's we want X for X and you after the end. So the first thing happened is Barbara sort of interrupted you as you were about to explain some stuff and just said, I'm out. Whatever she said it was. And then Kevin thought the space was complicated. So he was out. Alex very cordial. He was just like, if it's not on the back of a napkin, I can't understand that. But me, the back of an envelope, I forget. Maria: Oh, my God. Do you remember it better than I Joe: Yeah, Maria: Do? Joe: Well, I just I had to watch it because I wanted to make sure that I really understood what happened. And then I could see Lori and Mark whispering and ultimately they made you the offer. But the thing that impressed me the most was you were so calm. And when they gave you the offer, it wasn't even like you turned to Hector and did one of those Pylos that everyone doesn't share. You were like you knew the numbers so well that you knew what you could give up and what you couldn't give up. And you counter offered, like, so quickly and so precisely. Damn, I want to know how to do that. Maria: Well, I think it's, um, it's a combination of you have other people that that were with us, friends and family that believed in us and invested also in the company. So you have to have them also in mind and have a bare minimum that will bring value to the people that believed in your first. Right. So that that was part of it. And. And having a, you know, a plan for what was acceptable and what wasn't. Joe: Yeah, it was amazing. I was just like, wow, I would have crumbled when when Barbara first Centera, I would have been like, oh, it threw me off and I would have just been all over the place. But you were just right right there. I say, go, go, Maria. It's like. Maria: They're very gracious. It's just like, oh, well, obviously it's a show, so they baby to make it super endearing, like there were places where I saw policies and I'm like, they make it, you know, super exciting. And that's that's why they're successful. They're they're very good at anything. Joe: Yeah, it was great. OK. So let me recap. So what is the Web site for the app Maria: Look, Joe: At? Maria: You can go to try. Bravo dot com right now, because we started this campaign, you're going to see a video. Is an upgraded experience coming soon? But I tried Bravo dot com. If they want to contact us, they can write to support. I try like when you try something new. I try bravo dot com support. I tried Robillard. Com and and contact us. And also we're very responsive on Instagram. Well you can find us. That's Bromwell underscore pay. And Facebook and Twitter. Joe: Yeah, and I'll. Maria: We're on TCW. Joe: Perfect. So and I'll go and put all the links in the show notes so that it'll be easily accessible by everyone. So again, to make it super, super clear for everyone so they don't go and go. What about. I hate to use this to use that word again. The selling point for Bravo is that it's a very safe, secure, practically or basically anonymous way to pay and accept money from from anyone. So. Maria: Yes. And then in all of those payment applications, which Bravo, that's a small part of Bravo were more than just payments. But those payment applications are are designed for friends and family to pay each other because you need to trust the person. If if I don't trust you, I better not receive the money because once I pay or I it's it's a done deal. And then. But with Bravo, more robust way to pay a stranger, for starters. But then the next version of Bravo, which is super robust, where you can share who you are. Share your content directly. Contact your fan base or your fan base. Contact you and then offer exclusive experiences or merch on the same. Joe: It's really exciting. I am, Maria: The majority of the money, it's a recurring Joe: Yes. Maria: And keep a hundred percent if it's a one time thing. Joe: That's a big, big plus. So I'm really excited for you and Hector and the whole team. I feel like we're family because we go back so far. And I felt like it was the beginning. Even though I know you start I think it was 2014 was the inception of. Maria: Well, we've we formed the company in 2014, but our minimum viable product. We brought it to the market in 2015. Joe: So a year later, I met you. So and here we are, 20, 20. And you guys are just crushing it. And I'm really happy for you. Maria: Thank you. Thank Joe: So Maria: You. Joe: I'll put in all the links in the show notes. And this way everyone can find you and reach out and I'll make sure this gets on all the various platforms that I push this out to. I'm almost at 5000 friends on my Facebook. Me musician page. So they will see this and hopefully we can convert them over and have them start using Bravo. And keep. Maria: Let them join Joe: Yeah. Maria: The movement. Joe: Let them join the movement. I love it. Well, I can't thank you enough for your time. I know you're super busy, but stay healthy. Much success to you. I'm really excited for you both. And the team. Maria: Thank you. Let's continue the conversation. I don't want to lose contact with you. Joe: I know it's been too long. Right. Maria: Yes. Yes. Joe: All right. Maria: It's really Joe: Well, Maria: A pleasure Joe: Thank Maria: To see Joe: You Maria: You. Joe: So much. Maria: All right. Take care.

The Joe Costello Show
Create Your New Life During the COVID-19 Pandemic

The Joe Costello Show

Play Episode Listen Later Jul 10, 2020 13:52


I'm continuing my quest to inspire as many people as I can, to take full advantage of the time we have during the COVID-19 pandemic, to start to architect their new life. I feel as if I'm beating this concept into the ground but I really feel like this is the universe sending us a gift in disguise, to help us realign our thoughts, our beliefs, our wishes and our goals. We all deserve to be happy and live our best lives doing what we want each and every day. I hope this episodes provides words for encouragement and you take the bull by the horns and create your new, amazing life. https://youtu.be/Qct_Lo5EWNw ********** Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass ********** If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.com/#thejoecostelloshow Subscribe, Rate & Review:I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to: https://joecostelloglobal.com/#thejoecostelloshow Follow Joe: Twitter: https://twitter.com/jcostelloglobal Instagram: https://www.instagram.com/jcostelloglobal/ Facebook: https://www.facebook.com/jcostelloglobal/ YouTube: https://www.youtube.com/channel/UCUZsrJsf8-1dS6ddAa9Sr1Q?view_as=subscriber Transcript Create Your New Life During the COVID-19 Pandemic Joe: Everybody, thanks for joining me on this podcast. This is going to be a short one, but I wanted to talk about, you know, the struggles that people are having during this time of COVID-19. And I don't want people to give up. I just I feel like everyone's just sort of you don't want to say that it's bad. Not everyone. Joe: But I feel like we're waiting to be rescued. And people are, you know, collecting unemployment, which they have to do, obviously. I'm doing it myself in order to survive. But at the same time, I think if I read the comments that people make and it feels like they're just kind of waiting for things to happen and this is a time to plan. This is a time to think about what your old life looked and felt like. And I think it's time to plan for what your new life should look like and feel like. Joe: And I put up post about this because I'm working hard on it myself. And I do that with the with not like I'm saying, hey, look what I'm doing or are bragging or anything. Nothing like that at all. Like, I haven't even really shown a lot of the things that I've been working on ya know,  behind the curtain. But it's more about trying to inspire people to do the same thing. I really feel like my purpose is to help and to inspire. And so these posts that I put up carefully think about and I don't just grab a quote from someone that I've heard in the past or whatever, I actually sit. And when I write my Instagram post, they take a lot of time and effort and thought I usually do them later on in the evening because I reflect on the day and what has occurred. So my routine now is pretty much getting up early every morning, going to the gym every day. Joe: I purposely am getting up and doing the things that I need to do to continue to stay healthy. Joe: And then I come back and I work on all of the projects that I have going. One of them being this podcast, I'm trying to make this podcast better. I'm working on reaching out to guests all the time. Really great content for all of you. And at the same time, I'm working on things that I can't talk about right now, but it's super exciting. Joe: So when I put up any of the posts that I put up on Facebook, Instagram or Twitter or even a video on YouTube, it's I do it out of the want to inspire because I feel I could be completely wrong. But I feel like I've heard from people that I don't know really well all the way to people that I do know really well that it's a waiting game and I'm not sure whatever one is waiting for. I think that this is the time to create the next iteration of your life. And I don't know how to to express this more. I feel like it's just something that keeps eating away at me. I just it's drives me everyday to know that for me, this was I even wrote the post tonight on Instagram. This was a gift in disguise for me. Joe: It has given me the time off to do all the things that I haven't been able to do. I don't know if I would have ever gotten this podcast launched if it wasn't for the pandemic that hit, because I was so busy running my day to day business and I was able to get that done and just work more on myself. Joe: I get to spend a little bit more time at the gym. The same thing that a lot of you been doing. You're cooking at home more. You're spending more time with family. You're reading maybe more. You're listening to audiobooks. You're listening to podcasts, whatever it might be. Joe: But I feel like this is truly a reset that you need to take advantage. Joe: And I don't want anyone to think that there's going to be someone on the other side of this, it's going to be there to rescue you. This is the time where you have to grab the bull by the horns and get it done. Joe: Just create a sheet of paper that has pros and cons and on the top should be the thing that you would do if you could wake up everyday and do it, whether it paid you or it didn't pay you. And you just have to go for it. This is it. You just you don't want this time to be over with and you've done nothing with this time off. Yeah. Joe: You've rested you've you've tried to stay safe from, you know, catching COVID-19. You've hung out with family. You've maybe read more books. You've maybe hopefully even better as you go on eating out all the time, you're cooking home cooked meals. Joe: But despite all of that, this was the time to use to plan how you are going to spend the remaining years you have on this earth. And that's the way I've looked at it. Joe: And again, this has not been pleasant for a lot of people. Loss of their job, loss of income, loss of so many different things, the loss of family members, but. Joe: Again, life will keep going on no matter what happens. So you have to look at this and say this is going to be the time that I use to create this amazing life. So when we come out the other side of this, you are already on the onramp to what you've always wish you could do. Just think about waking up every day and saying, "Wow, I get to do this again, how lucky am I?" Instead of waking up and going, "Oh, I gotta have to drive 40 minutes and punch a clock in and deal with people that I don't like at work doing things that I don't like to do." It's just an awful feeling. And I don't think we were ever meant to live this way. I don't know how we got programmed in the wrong direction to just punch a clock or do things we don't want to do. Just to make money to make a living. There's just has to be another way. I mean, I know there is you see you see people doing it all the time. People that have just created this life, this amazing life that they have come up with. And they believed in themselves wholeheartedly that they follow their dream and they just kept working on it. And it doesn't have to be mainstream. That has to be what makes your heart sing. It's just like whatever your soul wants you to do. So I hope you you listen to this. I know I'm sort of pounding this in, but I don't know how else to get through to some, some people out there that are just hoping they're going to be rescued at the end of all of this or they're their crappy job that they hated is going to come back or whatever the case might be. Joe: So I want to inspire you. You're hearing my words. You've you've subscribed or downloaded the podcast and you're listening to this episode. And what I want this episode to do is inspire you to start to plan to do whatever it is that you've always, always wanted to do. I think it's that simple. I think it's making a list and saying, if tomorrow I could wake up and I could rub the side of a genie bottle and I got three wishes, instead of them being different things, I would make those three wishes, the three ways that you would want to live your life and then just create a column of pros and cons and figure out, well, if I did this, you know, could I handle this, this and this and what are all the good things? And if I did this, what are all the things that I might have to let go of? But I really believe that we've been brainwashed to think we can't do what we love and we can't live a life of happiness and wake up everyday knowing that whatever it is we do, we love and we're happy with and we're not we have no self-doubt and we have no regrets. Joe: So I hope you'll take what I'm saying here and really put forth the effort to use this time that we have. Well, COVID-19, is still around in that pandemic and things are shut down and the world is still pretty much at a hall to design your new life moving forward and then really put the work in so that you're already, like I said, on the on ramp before things go back to whatever they're going to go back to. I really wish everyone could wake up and just feel happy about their life and just be really grateful for what they have. And right now, I don't feel that's the case. I personally am really happy where I am at the moment, working really hard to move my life forward. I have so many amazing things that I want to do. So many plans in the works. I'm super grateful for where I am at the moment and I just want everyone to get a taste of that, because I think once you realize how easy it is to live a life that you create, you'll look at yourself in the mirror and go, why did it take so long to do this? So my wish for you is that you find the perfect plan for your new life. You execute it and you realize that you can be happy from this point forward doing exactly what you love each and every day. Joe: I wish you all the best.

The Joe Costello Show
Interview with yogi, Alex Schimmel

The Joe Costello Show

Play Episode Listen Later Jul 3, 2020 76:04


I sat down with my yogi Alex Schimmel from LifeTime Fitness here in Phoenix, AZ. Because I believe the health benefits of yoga are too important to ignore or at a minimum, spread the word, I had to have Alex on to share his knowledge with all of you, my listeners. If there is no other exercise you ever do, you MUST do yoga to stimulate every area of your body. It's amazing how using your own body weight in various poses, can make you really strong and get you in the best shape of your life. ********** Styles of Yoga taught at Life Time Fitness FIRE (HIIT)- Experience our new high-tempo format that blends intense anaerobic exercise with recovery periods ROOT (Fundamentals) - Start here and begin to understand yoga movement while holding the body in long basic poses SOL (Guided) - SOL is a guided yoga format that provides direction throughout from supportive teachers in a dynamic vinyasa format FLOW (Vinyasa) - Try our new guided practice where your teacher provides more deliberate cues throughout class SURRENDER (Yin) - Experience long connective tissue stretches and meditative breathing for greater breathing and self-acceptance BE (Meditation) - Develop a conscious, calm mind through meditation with a focus on breathing Alex's Links:"Inspire The F*ck Out of People" - eBook Presale Instagram: https://www.instagram.com/theyogageneral/ Facebook: https://www.facebook.com/alexander.schimmel.5 LinkedIn: https://www.linkedin.com/in/alexander-schimmel-374484a/ Email: schimmelyoga@gmail.com Alex Schimmel - Life Time LifePower Yoga Boutique Manager LifePower Yoga Teacher Training Faculty LifePower Yoga Master Trainer https://youtu.be/vo_c_5pILKU ********** Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass ********** If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.com/#thejoecostelloshow Subscribe, Rate & Review:I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to https://joecostelloglobal.com/#thejoecostelloshow Follow Joe:Twitter: https://twitter.com/jcostelloglobal Instagram: https://www.instagram.com/jcostelloglobal/ Facebook: https://www.facebook.com/jcostelloglobal/ YouTube: https://www.youtube.com/channel/UCUZsrJsf8-1dS6ddAa9Sr1Q?view_as=subscriber Transcript Alex Schimmel: Joe: Ok. Today, my guest is Alex Schimmel. Alex and I met over at Lifetime Fitness in the Biltmore area. And Alex is the yoga manager over there. And I was super excited to take as many yoga classes as I could. And luckily, Alex is the person over there that we really fell in love with. The way he teaches is his demeanor, everything about what he does. So, Alex, I'm really excited to have you here. And thanks for taking the time to do this. Alex: Yeah, thanks for having me, Joe. A pleasure. Looking forward, Joe: Yeah. Alex: You get to know each other better. Joe: Yeah, man. So my first. What I want to do first is just get to where we are today in the sense of how you got into this. I would I would assume that, you know, you took yoga like me, and then it became more of a passion. And then you became a yogi. But what can you go to when you started? Why you did it? How long you did it? Before you decided to make the jump to be a yogi. And and then we'll go from there. Alex: Yeah, for sure. So I'll give the abbreviated version, because it could be pretty long, but so my mom's a yoga teacher, so I've had yoga in my life, like, forever. I remember being a young kid maybe like seven or eight years old, and my friends would be playing wild in my house. And my mom would like eat. Guide us through relaxation in my living room. Like, you know, just to get us to probably calm down is it's probably not just to show us yoga, but to help us chill out a little bit. And so I used to go to my mom's yoga classes and I was like a little kid. And then my teenage years kind of rebelled against it. I thought the yoga was something that just like women do. Just people my mom's age did. So I wasn't really too open to it. And then towards the end of high school, I started to just get more like into spirituality. I read some spiritual books as I was given a book, The Seven Spiritual Laws of Success, by Deepak Chopra. And there's a lot of yoga philosophy in it. And it was things that I really like. It made sense to me. And it was the first time that because I wasn't really religious, I grew up Jewish, but not really like strong in religion. Alex: And those that that book and those spiritual teachings, it just it just resonated with me. And so that kind of open my eyes a little bit. And then I had an injury. I was a baseball player in college and I hurt my shoulder just playing like backyard football. And to kind of help heal that, I started to get into yoga, go to my mom's yoga classes again and. Soon after. I noticed that yoga was like. Not only did it make me feel better in my body, it also really helped me balance my schoolwork and just help me. Like I felt like it was just making my life better. And a lot of ways. And then my mom encouraged me to do this like two week teacher training. That was when I was like 19. I was my first teacher training. And that was really for my for my own knowledge. I wasn't really sharing it yet. But it was something that I knew enough where I could practice in my living room at home. And then fast forward a few years. My senior year of college actually got diagnosed with Crohn's disease. And Joe: Allow. Alex: I was a pretty tough, pretty tough time in my life. There was a lot of challenges. And yoga then became like instead of it just being an exercise, it really became my medicine. And to this day, it's still my best, my best medicine. So that was like that was the moment in my life where yoga was no longer just like a hobby or something. I did sometimes just like it's what I needed. And it became a daily way of living again, not just what I did on my map, but like a way that I live and honor all my relationships. And then after college, I graduated and I worked a sales job in New York City and really hustled and then did the grind for about a year. And it just was not a good mix for my health. And I realized, like, I was making a lot of money, but I wasn't fulfilled at all. And I I left that job. And then for the next, like three months, I traveled around to different yoga retreats and I did my first real two hundred hour teacher training. That was seven years ago now. And. And then once I got back from that, I was like, yeah, this is my. This is my path. It's my purpose. And I just kept going from that. Joe: That's really cool. And where did you take this training? Alex: Yes, it was it was so special. I did a. It was like a three week immersion and it was twenty five days in Isla Mujeres, Mexico. So it's a little island off the coast of Cancun. And it was like a super cool kind of rustic resort hotel retreat center. Like no TV's in the room. Very, very basic. But it was it was just like super blissful. And, you know, I feel really blessed and privileged. I was able to take that kind of trip to do my teacher training. I definitely, you know, empty my savings account and those, like, months of, like, wobbling around. But it was super special. And that training, it was way different than what I teach now. But it really taught me how to be a yogi. So it taught me not just how to teach yoga, but what it really means to to live a yoga lifestyle, what it really means to be good at yoga. And it was it was really powerful. Joe: Yeah, that's cool, and people talk about going to certain places to become a yogi, right? I mean, I guess I think like even myself, you think that people that do meditation and yoga and it stems out of like being in India or something like that. Right. Is that true or is that just another fallacy that Alex: Yeah, Joe: You know. Alex: I mean, yoga's origin, like, you know, the first the first time yoga was kind of found in any text or whatever it did, it did seem to originate from India, at least the yoga exercises. Right. The poses if you look at pretty much every spiritual tradition as far as like the philosophy goes. All of them are ways to practice yoga. So that's why some people can be really religious and they can practice yoga and they can become a better or more devout Christian or Jew or Muslim. So it's it's not like yoga is not a religion, but it is a spiritual practice. And a lot of those teachings are are universal, which I think is another reason that yoga is growing so much because they realize, like, wow, this kind of goes with what what I believe in. But as far as like historically. Yeah. And India's India's the the the birthplace of it. Joe: Kind of like the Mecca. Right. Alex: Yeah, yeah, it takes Joe: Ok. Alex: A lot of people go to India for four different paintings and stuff. There's I haven't been to India before. I think a lot of yogis kind of consider it like a rite of passage. You know, once you spent time in India, maybe you get a little more street cred and some. Joe: So that's the I so I was wondering, I guess my next question was going to be, had you gone to India yet? But it sounds like not yet, but I assume at some point maybe that's a goal. Alex: At some point, I mean, it's not like the top of my bucket list. There's a lot I love from Alan Watts and I think it's really applicable to that. He says the only Zen that you'll find at the mountaintop is the Zen that you bring with you. Joe: Yup. Alex: So like, you know, India sure, you can be immersed in a culture. And I think it's cool to learn about the history, but it doesn't necessarily make you a better yogi to spend time in India. You can you can find all those teachings. They're already they're already inside you, right? Joe: Sir. Alex: That's the idea. Like, whatever, you know, whatever yoga you find in India is probably yoga that you already have. Know, it just helps you kind of uncover it. So for some people, it becomes a life changing experience. And I've heard from other yogis that, you know, it didn't it didn't do so much for them. Joe: So let's bounce back to something that you said was was when you were in high school, you rebelled a little bit against it. Right. And it was based on the stigmatism that we all think about. There's these yoga people walking around, burning incense and walk around and samples and, you know, draped clothing or whatever. I don't know. Right. Alex: Maria. Joe: But I. But the purpose of this podcast for me is to inform people and to bring subjects like this, especially when I believe in it. Like, I wouldn't do this if if it was something I didn't believe in. I know how it's helped me. And I look forward to being there in your class. So I don't think enough people do yoga. And I think it's such an amazing thing to do if you can't do anything else. Like, if I have a day where I know I'm slammed and I can't go and pump a bunch of iron or whatever, and there's days where I'll do it before yoga and yoga is like the release of all of it right from me. But I would like you for me, it's like God if there's one thing you can do. Just do yoga. Alex: Yeah, yeah, I mean, I think it's I think especially like the styles that that I've learned, you know, and I do feel really grateful that I've been taught the practices that I've been taught. It's really all encompassing. Like, there's some people that I know that practice just yoga and they are ripped. Strong human beings, if that's what you're going for. But then in addition to that, like in addition to the physical, you get the mental benefits of the focus and the memory and the kind of meditation aspect of it. And then I think also just moving your body and doing breath where there's an incredible emotional release. And to me, most importantly, it's it's a spiritual practice that you connect with your essence and who you really are. So, yeah, I think I think yoga is it's it's amazing to do. And I and I agree with you more people. It's growing for share. It's great. Becoming more and more mainstream. But there's still a lot of people, especially especially men, that would benefit, that would benefit from it. How long Joe: Yeah, Alex: Have you. How long have you been practicing? Joe: To be honest with you, when we got to Lifetime and started with you. That's the only time I had done it up to that point. And I think I might even said this to you is that we had the P90X disc right. From Tony Horton and that, that yoga program on that desk was pretty good. It put us through a lot of cool things, but I don't think I ever took a class until yours. Alex: Nice is awesome. Love it. You got them there. You guys been there almost every day, it seems Joe: Yeah, Alex: Like. Joe: Now I'm hooked. And so here's the thing that I want to convey about you, just to take kind of like my own little infomercial about you and the reason why it's it's such a great class and Joelle and loves it and Ashley loves it. And there's you have this combination about you that is like the perfect yoga instructor or I don't know what. Is that what you call it? Yoga instructor. What's the proper. Alex: I guess the guy's a teacher. Some people Joe: Ok. Alex: Say doctors I feel like instructors, correct? Teacher. Teachers connect. Joe: Perfect. OK. So to me, you encompass the perfect yoga teacher. Now I'm lucky that I found you as my first. And I didn't, you know, whatever. I didn't get tarnished by anything else. But you're, you're the tone of your voice. That's the first thing we all talked about when we got back, was like your. Your voice is like very soothing for the practice. And then you do ramp up really nicely through the class. And then it comes back down really nicely. The storytelling that happens intermittently throughout the class. So I encourage anyone to just go there and take one of your classes. I know that. I think. But you can only go. You can only do it if you're a member. All right. Alex: Yeah, I think that right now, with with everything that's going on, I don't think really guest, guest passes. Joe: That's right. Alex: But luckily for everybody and all your listeners, too, there's a lifetime app and you don't have to be a member to download the app. And there's recorded classes on there. And I was just in Minnesota, I just recorded like five classes. So probably in the next week or two. Everyone, if you have a if you have a phone, if you have an app and on YouTube, I believe you, you'll be able to take my classes online. It's not the same experience. I'll tell you about it really even. I made a post on my social media about it yesterday. It's different teaching to just a camera. Like I realized that I really feed off people's energy Joe: Yep. Alex: When I'm in class. And I think and this is a shift that's happened to me more lately when I teach now. I used to be like a big planner. I got a plan what I was going to say and what stories I would tell. And now I just go in there with maybe a loose idea of what I teach, but I just kind of let it flow like and I feel like the students that are in the class, in a way, bring bring what they need to hear out of me. So it feels really good when that happens. And it was just different, you know. There was no students to bring it out of me. So much so. So those online classes are a different experience, but yet still still good in a way. You can check me out. Joe: Yeah, that's perfect. So I'll make sure that in the show notes, I put the link to all of that so that everyone can get a taste. And then unfortunately, the reason I didn't want to do this episode with you is I don't want the class to get full. And then Alex: Oh, Joe: I can't get in it. So Alex: Yeah. Joe: I was this balance between I want to have Alex on and I don't want people to take my spot in the class. Alex: Make sure you get a spot to. Joe: So let me see what I had. Oh, so I want you to tell. I want you to tell a couple of stories that you've told. So I, I and I remember, too. So I want you to tell the water bucket story. If you don't mind. Alex: Ok, to that Joe: I think Alex: One. Joe: It's super cool. Alex: Yeah, so I love stories, first of all, I actually just wrote an e-book for teachers, leaders, speakers. It's called it's called "Inspire the Fuck Out of People." And. Joe: Awesome. Alex: And it's a book about it's really just a book about storytelling mostly and like themes. It's what I do a lot in my teaching. All of my students realize that, like, when you come to my class, it's going to be more than a physical. There's always gonna be there's not always a story, but there's something deeper. So I just I just wrote my book. I compiled, like, all my stories and everything together. So. So that's pretty cool. And I do love stories. And one of the things about storytelling that's really cool is, is we're wired for storytelling. That's how we like as it as through history. That's how we've communicated. And so our brains are actually wired and there's all kinds of research and studies that have been done. And one thing that's really cool is when you tell a story, your you and your audiences brains get sinks. So I kind of think about like Inception. Have you seen the movie Inception? Joe: I probably have and I don't read. I'm the worst at remembering that Alex: It's Joe: You'd Alex: A stupid. Joe: Be surprised how many times I purchased a movie on Netflix and 10 minutes into it and like, damn, that's $4.99 I just wasted because I already saw. Alex: So anyway, so it's just like the idea when you when you tell stories, you can you can like better plant seeds in your audiences mind. So it's a really powerful way to convey messages and meetings and deeper teachings. So that's where I look. What's one of the things I love about storytelling? So that that storytelling of the the water bearer. So it's a story that there's a water bear. And I think the story of the woman is in India. And every day she has to go and walk like two miles to get water for her family. And she carries this big pole on her back with two buckets on each side. And every day she fills up the buckets and or the pots. And when she gets back to her house or her family or whatever, one of the parts is always like a little bit down, like half empty because there's a crack in it and a cracked pot feels inadequate. Right. It feels like it's not enough. Very similar to how a lot of humans feel and different things, especially when we live in such a world of comparison and competition and starts to feel like upset. And tell us the woman, you know, I feel so bad. You work so hard, you know, to take this long walk. And I don't I don't carry my full weight. Right. I always, always let some water go. Norman says the tomorrow when we take the walk, just notice the beautiful flowers that are along the path. Alex: And so they take a walk in the pot sees all these beautiful flowers shining in the sun. And it's like, you know, temporary happiness school. Beautiful. They get home still, that pot is half empty and still is is upset. It's like, yeah, I noticed the flowers. But that doesn't I'm not full, you know. And the woman says to the pot, hey, I knew you had a crack. So every day I noticed that you were like dripping water out. So what I do is I planted seeds all along the path. And did you notice how there was only flowers on one side? So every day we take that walk. When you leave the water out, you're not leaking the water. You're watering these beautiful flowers. That makes my walk more beautiful. It makes my family happy when I can bring the bring the wildflowers home. And, yeah, it's just it's a really big reminder that we all have cracks. We all have things that we look at as flaws. And recently, I don't know. I heard this from from one of my teachers. But our our mess. Right. They got flaws can become our message and they can become our purpose. And a lot of times those things that we view maybe as as ugly or we hide from others can end up being the most inspiring thing that we have to offer the world. Joe: Yeah, yeah, it's it's so true. Man, this is part of why I started to share just some of the things that have gone on through my life. Just because I think you have to tell these things to let people know that they're not alone in in these struggles or these these turns in the roads or whatever might happen. It's like you were talking in class about I think you reference about, you know, getting knocked to our knees and getting back up. And it's when we're in certain poses and that you can feel the distress and that sensation. And, you know, my arms is doing the side planks today. And my arm was wobbling like crazy. And I like man and it's true in it. And it's it's the way you teach it and it's the metaphors that you bring up and and you never correct anyone in the class. You know, everyone smile. There's a slight hint like, no, raise your arms up, not for whatever. But it's it's it's you know, it's done in a very compassionate, gentle way. And that's what keeps me coming back. It's like I don't want to go to a class and not know the poses and be judged, you know. And I was lucky, like literally Tony Horton's disc taught me enough to at least initially walk into that class without feeling completely ridiculous, but. Alex: Confidence. Joe: Right. But the cool thing is that you have these classes online that people can learn. Some of these initial poses are what you call them. Alex: Yeah. Yeah. Joe: Ok, I got I don't want to say the wrong thing and go, oh, my God, it is. And then take your first class. If you do some of the basic things, you'll feel really comfortable. Right. Alex: Yeah, and I've I have begin people that have never taken yoga classes that come in and take take those flow classes that are hot and and challenging for sure. But, you know, one of the big things and one of the things that like let me rewind a little bit when I was first starting to get back into yoga that I didn't like is I would take classes that were very like alignment based where it was all like posture focused. And hopefully you get and when you take my class, it's not really about the pose. I like Joe: Correct, Absolutely. Alex: Most. OK. It's it's there and it's good to move your body, but it's it's not so important. So I use to take these classes in like the whole class would just be pretty much like you're doing it wrong. This has to be turned this way and this has to be done in this way. And I felt like it didn't make me feel empowered. It made me feel like I was just like not good and weak and that like that I really had to honor what the teacher was saying. And then I decided that I tried to teach. I want you to come in and realize, hey, if all you do is breathe for 60 minutes and that happens sometimes, it hasn't happened so much and more because it's a new community. Sometimes you just gotta come on to your mat and breathe and it doesn't matter anything else that you do. Like if that's what you mean. Beautiful. And the poses truly are secondary and they truly are just an opportunity to to have some awareness in your body. It's not about like perfecting the pose. And I really want people to know that not just for me, but for many yoga teacher, yoga teacher stressing or like or like marketing themselves on. I'm going to help you do this posture where you can get really good at poses if you if you practice my yoga. There's a there's a A out there. You know, I think that some people really like that. And I get it. For me, though, there's there's so much more. And like I say, in say in my classes, we don't practice. You're going to get good at yoga poses. We practice. You're going to get good at life. Joe: Yeah, man, it's it's so true. Like I said, I can't thank you enough for, you know, this the way you handled the classes and it's we're like we're signed up for as many as as many as we can take. I don't want to, like, dehydrate myself. Taking a high flow class every day. But, yeah, we keep signing up. We love it. So before you when you you took the training and to become a yoga and where. How did you teach and how did you get into. What did you do before you landed at lifetime. Alex: Yeah, that's a great question. So first of all, like when you do a teacher training, the kind of the introductory level is 200 hours. That's like that's the training and really 200 hours because yoga is so complex and deep and there's so much to it. Two hundred hours is like kindergarten, right. You get that that kindergarten degree and you definitely have a knowledge foundation. But then you have to become you have to continue to learn. You have to always be a student. And so for me, I finished my 200 hour. This was this was after I lived in York City. I moved back with my parents and I came home from that training and I convinced my parents to get rid of our couches in the living room and turn it into a little yoga studio. But a yoga studio at my house and I didn't I guess I didn't really feel that confident yet to apply. There was really only one yoga studio in my town and I didn't really feel that confident yet. But what I started to do is just have three classes at my house and I put it on Facebook and I invite people to come in sometimes and have three or sometimes five. A lot of times like one and a lot of times just no one would come because again, I was like new to my, you know, seven years ago even there wasn't a whole lot of people that were practicing yoga wasn't very popular where I was living in South Jersey. But I did that for like three months. And I probably had like three classes a week at my house and started sharing where I could. And then and then I felt ready to audition at a local studio and taught there. And then fast forward, like, you know, for my first year of teaching, I was teaching and probably like five or six different studios in South Jersey. They're all super spread out. Those times are I'll drive an hour to go teach a class Joe: Oh, Alex: And like, Joe: Gosh. Alex: You know, and when you're a brand new yoga teacher, you don't get paid a whole lot. So sometimes I would like, you know, drive an hour to teach a class for fifteen bucks. But if that wasn't what it was about, it's never been Joe: Right. Alex: About that Joe: Right. Alex: Night. I do feel like I've, I've been blessed and I am happy that I have an entrepreneurial mind where it's yoga. I live a good life. I'm very happy with with the lifestyle and able to live through it. But I was teaching for a while. And then what I really wanted to do was share yoga, like I wanted to share with as many people. That's been my my mission for a long time. I heard this somewhere that inspired me where they said something about like instead of focusing on being a millionaire, how about you influence a million people? So then I. So my goal for, like, I don't know, forever, when I heard that, I was like, OK, I want to be a billionaire. I want to have an impact on a billion people. That's a lot of people. And I know that the way to do that is to influence people that are influencers. So. So my my next kind of step in the process was I knew I wanted to lead teacher training. You know, I wanted to teach other people to teach yoga there. There I would have like an exponential growth on who I'm impacting. And I met someone actually out here in Arizona, which is funny, was way before I lived here. This was this is about five years ago, a little over five years ago. And they told me that they recommended a a three hundred hour teacher training. So that's like, you know, 200 hours, the kindergarten, 300 hours, like Joe: Hey. Alex: Maybe you got a high school little a little higher level. You go a little deeper in. And they told me to do this teacher training in Michigan with with my teacher, Johnny Quest. And I went there and it's funny, like the way I in life, I let things flow so. Right. That like that it felt very like just. It just made sense to me. So I didn't even do much research and I just went to this 300 hour training in Michigan. It was another immersion. It was like three weeks, three weeks straight. Joe: Wow. Alex: And when I was there, I realized that that training was the style that they teach at lifetime. And and that was. And then I was told when I was there about one of the other teachers that their friend was going to Grand Open. They were going to be the general manager of this club in South Jersey that happened to be like 40 minutes from my house. So when I get home from the training, I went to talk to the one of the managers there about just teaching that I was thinking, like, I you know, it's an hour away, 40 minutes away. Maybe I'll teach, like back to back classes. Let me see if it's worth it. And then, like, I show up one day and kind of just tell my story. And the woman who's a dear friend of mine now, she's like, well, we have a yoga manager. And you're hired like you're the you're our guy, you know, because I was the only person in that area that knew the style that Joe: Yes. Alex: We taught. So, yeah. So, again, fast forward a little bit. Got hired at that. That was my first lifetime. I was the yoga manager and we had like just a thriving community. Just incredible. You know, there would be we'd have classes where there would be 80 to 100 people in a Wednesday night. Joe: Oh, my Alex: Yeah. Joe: Gosh. Alex: Well, like, almost the whole floor was mats. You know, there'd be that maybe I would I would say it would it wasn't really a joke because it was true. I'd be like, if you don't know the person next to you, then you can have like two inches between your mats. If you do, another person next to your mats could be touching. So very different world than now. I don't think super to me people would be into that. But it was amazing. The energy was incredible. People made like lifelong friendships. And I was there for a while, kind of felt like I was without a teacher. So then, you know, and the universe provided me the next step where my teacher, Johnny, called me and said, hey, come to Michigan, learn from me, learn with me. There's no there's like we need a yoga manager at this lifetime, Michigan, when they're taught for a few years. Also, you know, is it amazing to be a part of that community because they had all really learned from my teacher. So it's just a really strong community. They just really got what we did. So a super cool. And then I got tired of the Michigan winter. So Joe: Yes. Alex: The last Joe: I don't Alex: Year Joe: Blame you. Alex: Last year, I was like I called my my boss who do directs Lifetime. I said, Terry, I need to know, like, what lifetimes are opening in the next year. And this built more. One was one of them. And, you know, I'd I'd come here on retreats. I'd led retreats in in Scottsdale, Phoenix, for three years, my first three years of teaching at lifetime. Not sure why Phoenix. Like, that's just just a synchronicity. I just happened Joe: Yeah. Alex: To have picked Scottsdale to come to you and I was again familiar with it. And now I'm here and I love it. Joe: That's awesome, man. That's a great story. Alex: Yeah, and I think that one of the things that's important about it, too, is like if you look from a from an external point of view, it might just look like, oh, like everything just fell into your lap. You're very lucky. And I don't believe it's luck. I believe that, first of all, it's blessed. I do feel very blessed in my life. My life, not my whole life hasn't been a blessing, but in a lot of ways and very blessed. And I recognize that. But also, I believe that when you are doing your work and yoga, get called Dharma, when you're doing like your soul's purpose. Doors are going to open up for you that you didn't even know existed. And and then, like the old paradigm is that you have to have, like, super hard work to live the life of your dreams. And the new paradigm is if you're on your path, your path. Right. That's important. Not what other people think Joe: So Alex: You should do Joe: Important. Alex: When you're on your path. It doesn't it doesn't feel like hard work. You know, I've had a lot of success teaching yoga. And I've been a student and I've put effort in and I've taken inspired action, but it's never felt like hard work. And I think it's. And I know it's because I'm doing what I'm supposed to be doing. I'm doing my my life's work. Joe: Yeah, it's so awesome. And this is great because my audience, the listeners, this is what I preach when I don't have a guest like you on, you know, it's all about that. Even though I'm older, it's taking me all this time to finally say I just need to do the things that that speak to me, that make me happy, that make me want to wake up every day Alex: Neverson. Joe: And smile. Yeah. And so I've come to the game late, but I'm working on it, you know, and hopefully I have a few more years before I take a dirt nap and I can get a bunch of really cool stuff done. So we'll see. Alex: And really, too, like your neck, it's never too late to to to to move in the direction of your dreams and really realize, too, like it's it's not a destination. It doesn't matter how early you start. You don't eventually get to this place where you like up there. I don't care Joe: Right. Alex: Anymore because it's there's always there is always a path, a continuous journey. So it doesn't matter when you get on the path. But it's it's a beautiful thing that you've found it, you know, because for a lot of people, they don't find it till maybe they're laying in their death bed. Right. Joe: I know. Alex: A Joe: Yeah, Alex: Lot of Joe: And I. Alex: It takes lifetimes to find it. Joe: Right. And I've actually I've I've talked about this in some of the. I've done a couple where it's just me kind of spilling my heart saying you don't want to have regret, you don't want to lay me there. And, you know, you want to have it be where you feel like you really live an amazing life. And so you more people have control over this than they think. And the problem is they they don't think they have control over it. They're they're just they're letting their life become something that is being steered by other people, other things, whatever. And. And I think that's why this time with the corona virus happening, this wasn't just a localized thing. Right? It was the whole world shut down and it gave everyone the opportunity to sit back and reflect on what it is that they do and what's the next step for them. And if they got laid off or fired or whatever, you know, they might not have a job. So what do you want to do with your life? Right. So to me, this is it's a cool conversation because it's it's not just about yoga. Your frame of mind is in the same thing that I'm trying to convey to the people that listen to this podcast is that let's, you know, pick what you want to do and make yourself happy. You have control to engineer your own life to to live the fullest life that you can. So figure it out and start. Now, we're never gonna get a plan. I did a podcast on this. We're never gonna get a break like this again. Our lease? I don't think so. Not in our lifetime, where literally everything just halts. Alex: Right. And also a lot of people get it individually, right? Sometimes it comes as like a diagnosis or a we're getting fired or laid off, you know. But this is a collective where we have an opportunity as a collective to reflect on, like, how do we want to be not just on our individual life, but how do we want to live as a community, as a whole, as a collective? And I think also that's why a lot of things are coming to the surface. You know, a lot of the tension and seeing like injustices and starting to the fact that there's more awareness there. It's a beautiful thing. Weather doesn't matter. You know, there's there's a lot of different opinions on how it's been addressed. But we're going to see. And I really do believe this is like a new paradigm. Things are no longer hidden. And and we're seeing that and more and more and more and more ways, like even restaurants go to go to new restaurants. They almost always have like an open kitchen. Right. Like you Joe: Yeah. Alex: Go to because you can see the food being prepared. And that's how our whole life is starting to be, where it's there's there's nothing hidden anymore. And we don't want the hidden. So, like, whatever's been in the darkness where we're shining light on it. And it's it's arising. And like what you said. Yeah. It's so important to do what you love doing, to do what makes you feel good, because there's a lot of people that are even super and putting this in quotes against successful. Right. And usually that's like a monetary thing. That's kind of how our American dream Joe: Yeah. Alex: Then equated that are like super rich and just like so unhappy and numbing themselves. They're addicted to all kinds. All kinds of shit. Whatever it is that that, you know, everyone has different ways to numb themselves. But, you know, it's not just about money. It's not just about like working hard. It's about loving your life and living the truest version of your life. That's that's what's going to bring you the most fulfillment. Joe: Absolutely. You know what? And here's a good segue way, because you talk about community and how we're all thinking about the future together. Now it's really like a shot in the head for everyone saying what is going on and we've got to fix this. And and it's not just singular now. It's it's your your family. It's your community. It's everything. And when you were in yoga and you talk like that, can feel it in the room that everyone is is realizing that we have to make the right changes to move forward. And. And it just it's it's powerful. So this is a Segway to that really cool story you talked about with the kids lined up and the Alex: Oh yeah. Joe: Basket. Alex: The trive...yeah. So there's a there's. A phrase in African culture from certain tribes in Africa. And it's I don't know exactly how to pronounce it, I think it's Ubuntu, Ubuntu. And the idea that phrase means I am who I am because of who we all are together. So like we're a product of our environment. And an anthropologist went to this tribe in Africa that kind of lives by this ritual. And they didn't experiment where they lined up all their all the children. And in the distance, like 100 hundred yards away under a tree, they put a basket of fruit and candy and all kinds of sweet treats. And this this anthropologist explained the rules of the game. He said, when I say go, it's a race. And the first person there, they get the basket of treats. They get the basket of goods. So obviously, like some of the older kids have a big advantage, they're probably going to be a little faster. So you lines them all out and he says, "Ready? Go." And the kids, they didn't have any time to talk to each other beforehand. And as soon as he says go, they look at each other that turns had side reach out and grab each other's hand. And together they like kind of jog or skip to the basket and they get there at the same time and they shared all. Anthropologists ask one of the older girls in the tribe that that probably was was one of the fastest, fastest ones. And you said why you could add it all to yourself. Why do you do that? And she said, you want to. How can one of us be happy if the rest of us are sad? Joe: It was so powerful when you told that story as a wow. Alex: Yeah, I mean, when you get that story mixed with, like, intense, you know, physicality, transformation, that's another thing that's beautiful about yoga. What I love about this platform is when your physiology changes. So if you're doing some kind of activity, you're also more open and receptive on on all those dimensions. So then when you hear something like that, it really lands. It really impacts you Joe: Yeah. Alex: More than even just listening to this or listening to a podcast or something. It's a different level when you're getting your physical involved. Joe: Yes. Absolutely. Alex: Huge one too like that idea, because a lot of us and this is another, like old paradigm we're taught. How many times we hear it like the idea of survival of the fittest and it's a shark eat shark or Joe: Yeah, Alex: Dog eat dog world or starve. Joe: Yeah. Alex: You've got to be a shark. And you've got to know in order to be successful that you need to kind of push other people. There's there's people that you need to kind of push down for you to to rise up. And that's that's bullshit. Like that's gone. That maybe that's how it used to be. But that's not how this new world, this new paradigm that we're moving into is like now it can be rather than competition, it's collaboration or conscious competition where we can kind of grow together. There's Joe: Yeah. Alex: A quote that my teacher used, always used that all ships rise in a high tide. So collectively we're raising each other up or lifting each other up and there's enough abundance for everybody. And that's huge to understand and to really get to and believe because we believe it on an individual level, the collective starts to believe it and then we'll start to really see it in our lives that like there's enough work for all of us. Joe: Yeah, yeah, and that's why the classes are so strong in the sense of it's the it's the work out that you get and it's that all of the things that that you get out of the class, but it's you get this benefit of all of this positive energy that comes out of it. And it's just it's amazing. That's what I want to touch upon. All I want to know for people that don't understand yoga. And obviously it's new to me. But I. I just know the benefit. I can feel it. I can already twist certain ways that I couldn't twist a month ago. Whatever it is. But I want to educate the listeners who have been on the fence about taking a yoga class. What are the benefits that you can express of what yoga does and why it's so needed? Alex: There's there's a there's a lot of benefits, and it really happened in in a lot of different ways. So I'll talk about the four dimensions. I talked about that a lot in my trainings and stuff four dimensions, physical, mental, emotional, spiritual. And yoga has it's going to improve your life and in all of those physically. Is gonna help you feel good, right? Like moving your body and breathing deep. It's medicine for your body. And and and like, if we're honest with ourselves, we want to feel good. And there's enough shit that we do that kind of brings us into a state of not feeling great that this will help balance it out. Right. So if you'd like to party a little bit and drink or maybe, you know, indulge in some unhealthy food, that's fine. But this will help you. This will help you be balanced and and moving your body has it has a ton of benefits and moving. You're like just body weight is really good, too. So I know that a lot of people like my age. And when you're younger or really I should say, like men, men in general, we we think and we've kind of been programmed to think that in order to be. I don't know, appealing and sexy. And we need to lift a lot of weights. Right. And it's good to be strong for sure. But there's just so much wear and tear that comes from lifting heavy weights. Alex: And in most cases, like, we don't need that kind of strength. Right. Like like in our day to day life, we're not doing things well. So then it becomes not even that functional. But yoga, moving your own body, that's it. We're constantly doing and through those body weight movements. Not only is it going to build strength, but it's not going to, like, wear you down as much as I'm doing other other types of exercise. So that's a one big one physically is just feeling good in your body, going even deeper. Like I can tell you. So I have two autoimmune conditions. I've been diagnosed with Crohn's disease, which is intestinal inflammation. Kind of throws off my digestion and diabetes, so affects my blood sugar. When I practice yoga or really now I see it more now and I don't practice yoga because I do it frequently. If I don't practice yoga, my blood sugar is way higher. So it regulates my blood sugar. And there are studies that show it helps really everybody's blood sugar, which is good. But you have diabetes or not. It's good to have regulated blood sugar, helps your body just stay in and kind of balance. And and my digestion is better, too. And there's a lot of people that that have digestive problems. So just moving your body around and a lot of the forward folds and twists, it's like a massage for your digestive organs. So those are just like little benefits. Alex: And I'd say that each person you kind of have to experience it for yourself to really get to know. Right. Like I could tell you that honey is sweet and delicious, and I could talk about it all the time. How good honey is. If you never taste honey, you're not going to really understand. But when you really do it yourself, then you'll start to realize, like, well, yeah, I do feel better. So that's physical. Mental. It's gonna help you. I think the biggest one is it's going to help you be less reactive in your lives. So reactions are like, you know, someone cuts you off in traffic and you die. You start getting crazy and like fight or flight response, start getting angry. Or maybe it's with your partner that you live with where they say something that kind of pisses you off and you you just get super agitated right away. And there's no like, there's no. There is no cause from like the stimulus to the response. It's just right away that you're super reactive. And it's really powerful to be able to increase that space. So something happens, there's some kind of stimulus, and you're able to take a little bit more time to respond with with your whole being, not just like out of emotion or not just like out of anger or you're able to more intellectually, intelligently and emotionally respond. So I think that helps a lot. Joe: That's really interesting, too. I never thought of it that way. But to have that space between between what happens in your reaction is really cool. Alex: It's huge when you can when you've made that space even bigger, when that gap becomes bigger. That's really you talk about regret a little bit. Usually we only regret things when we react to them. When you have that space and you usually have a little more time before you respond to something, then you're probably not going to regret you're probably going to make a decision that's that's going to be best for it, for all parties involved. Definitely increases your ability to focus. Right. So if you want to be more proficient, efficient at work, if you want to be able to have better conversations, be a better communicator. Is going to help you with that, too. So mentally really powerful. And it just goes to improve your mood like movement and breath helps you feel better. So you're gonna be in a better state of mind when you're not when you're in a better state of mind, in a more elevated state. You're going to attract better things into your life. That's the best law of attraction and law of attraction. Is not this like hippy dippy, crazy thing that is real. And we're all doing it constantly. Right. We just aren't necessarily aware emotionally. Yoga is a great way to express it. So it's another thing with men like men were taught that to to be a strong man, we need to be stoic and we need to not really show emotion. Alex: And that takes it takes a big toll. Right. And that's why more men have like serious health conditions, because this is a popular saying mom like wellness practitioners, our issues are stored in our tissues. Right. So if we never release emotionally, then then then we have so much stress that we're just holding in and holding onto. I think also that's a big part of why I had a disease, why I got diagnosed, because I didn't have a healthy outlet to express the things I was feeling and some of the challenges that I went through. So. So yoga like moving your body, breathing. Kind of shaking things I talk about. Like shaking. That's a way that our bodies release. So that's a really powerful thing on an on an emotional level. And it just allows us to feel right. Like, most of the time we're numbing ourselves. Yoga is like the opposite. Like, go ahead and feel. You can feel angry. It's OK. You can feel happy. You can. You can. You know, there's a lot of people that practice yoga. And they they feel emotional, like they might cry or like feel like they're tearing up beautiful and you off to try to make sense of it, just like that's a release that had to happen. Joe: Yeah. Alex: And then finally, the good news is that. Joe: Not I don't know if it's it's exc. I was just going to say that you talk about the emotion part of it and how I even said to you after one of the classes, I couldn't keep tree pose, I couldn't keep it without falling out of the pose and losing my balance. And I found myself getting mad at myself a couple of times. And over the months I've learned to to just breathe and settle into it. And then it's it's become a better way of doing it for me. But I used to get mad at myself because I want I'm one of those people I got to do everything good or I suck, you know, and it's. Alex: You know, that man and I and having the awareness of it. That's a huge benefit of the practice. I say it a lot in my classes. How you do anything is how you do everything. Joe: Yeah. Alex: And, you know, this is an opportunity to become more aware of, like what happens when you struggle. Right. Do you get pissed at yourself? Do you start to have this negative self talk? Because all that does is bring you to a downward spiral. Right. So as you become more aware of it, you go into your yoga mat and you might do something that like, OK, you're going to struggle in it, but can you still stay, like, optimistic? Can you still keep your energy up even when you're struggling? And that's going to help you so much in other areas of your life and your relationships in your in your work, in your, you know, whatever it may be. So that's really powerful. And in the final dimension where you get benefits is the spiritual and spiritual true. That's a pretty, like, misunderstood term. Couple of things that that it means to me. One of the one of the most powerful emotions or traits, I guess, to feel is inspired and inspired is that word in spirit. So it's like when you're connected to soul, right? When you're connected to your true self. Because you don't have a soul. You are so right. Every single human being is Joe: Mm hmm. Alex: A school. We have a body. We have a mind. But we are we are soul. And when we're in that place of spirit and soul, we get out of our own way. And we start to realize that we are our biggest obstacles, like our ego. Right. That that part of us that maybe gets pissed when we're not doing so good or maybe gets offended or overthinks things like we get in our own. Our ego gets in our own way all the time because we just want to be loved and we want to be appreciated. We want to be like, you know, our ego wants to be the best and recognized as the best. And when we're in spirit, we don't care about that. Like when you're really inspired, all that shit goes away. And I think everyone's experienced it in some way where they're just in the flow of life. So, like, I'm a big athlete, I love playing sports and I've had moments in life. I'm just totally in the zone. Right. I know musicians and runners. They experience it, too. And in the zone is the same thing. You could change interchange that word with being in a state of meditation or being in it in a state of inspiration. In spirit. Joe: Yeah. And it was interesting because, again, talking about the practice of yoga. And I wanted to actually ask you, what do they call it, the practice of yoga. Alex: Yeah, I love that because it's not a performance and it's not a competition, right. And it helps you realize that it's not a destination. So if you if you're not performing yoga, there's no one that you're trying to impress with yoga. Social media. Maybe there's some other things about it, because you'll see a lot of these famous yoga accounts that just pose like pretty photos. But to me, that's not really what yoga is about. And yoga for four more more of the time that it's been around, as has not been about postures, it never really was about posture. It's just in the past few hundred years, poses became became what yoga is like known for. It's never a performance and it's never a destination. And, you know, one thing about practice is like you don't really need to label or judge it as good or bad just by putting the effort in. You get the results out. And I think that's a pretty powerful thing because most of the things we do in life, we're doing to, like, impress other people or to to perform something and almost everything that we do, we do to kind of impress other people or or get some kind of recognition and yoga. It's not about that. Just you come to your mat. We just practice certain things. And what you're really practicing in yoga, not getting good postures. You're really practicing strengthening the qualities of the mind that serve you right. So equanimity, having a balanced mind, non reactivity, kindness, compassion, enthusiasm, inspiration, like those qualities, the mind you're strengthening and then you're learning to weaken by just not giving energy to the qualities of the mind that that detract from you. So like competition and judgment and negative self talk, those things. So really, that's what you're practicing. You're practicing getting better at living your life. Joe: Yeah, awesome. I want to, if you can, and I don't know I don't know how deep you want to get into it, but I want to get a little deeper in the physical part of it, because I think that that's what's important for people to understand. I don't want them to think it's like to showing like I think the other benefits will come out of it if if they understand the health benefits in a physical nature of what it can do to them. And I know that where we're in certain poses and when we're in class and you're talking about how your toes are spread out when you're let's say you're in downward dog or your fingers are spread out. And it's and they talked about us all getting more down into the earth, like sitting on the floor during the day occasionally, like feeling more connected to the earth. Alex: Yeah. Joe: And and I know that when we do these poses and you talk about how you're pushing on your ankles and your fingers and your toes, and it's it's creating this circulation in the areas that normally aren't getting that kind of attention. Alex: For sure. Yes. Love it so. So let's start by saying, like, first of all, in in our Western culture, right. In America, there's something like one in four people have chronic illness. It might even be higher. It might actually be like one and two. But we live in a culture where a lot of people have disease and disease dis Joe: Yes. Alex: Ease. So the opposite of having ease in the body is dis-ease and the cause of most diseases. And this is really according to like all traditional medicine practices that have been around for thousands of years. Right. Way longer than our modern like pharmaceuticals and what we do here in our health care system. But like traditional Chinese medicin, Ayurveda which is the kind of sister science of yoga, traditional medicine that was practiced in the Middle East for thousands of years. It all says that the main cause of disease is stagnation. Right. Like when there's just stuck, when we're stuck, they're stuck. Energy, that's the reason that we get tension, everybody. That's the reason that our digestion kind of sucks. So yoga in the poses and we work in the yoga posture to bring sensation to every single part of our body and wherever there's sensation that that's that goes hand in hand with there being stimulation. Right. So that part of your body is stimulated. And if you just, like, took your arm and you stack smacked your arm a lot. Right. This is stimulation. It's going to start to turn red. That's increased circulation. So wherever you stimulate whatever part of your body you stimulate. There's more blood flow, more energy flow. And when everything is flowing, that's when we're at a at a greater place of of health. Better place of healing. And I love using the analogy of like a stagnant pond. Alex: Right. It's like very murky. It's it's kind of nasty. A lot of mosquitoes and bugs compare. And that's that's when we're stagnant. And if you think about it, probably a lot of people that we know well, maybe people that are listening to this right now. We spend hours a day sitting in a chair. So there's a lot of stagnant energy, a lot of blockages. Tips are so tight, our low backs are so tight. That's the pond. That's real stagnant energy. And then if you look at like a stream, it's very clear. It's smooth. It's flowing. That's the. That's what yoga helps helps us get like, more circulation in our body, more energy flowing in our body. A huge one. A huge benefit of the practice is you don't you'll see that you, like, don't need to be addicted to coffee and caffeine to have energy. Right. Like, you can find weight. Just breathe deep. You'll have more energy. Do some sun salutations, which is like a basic yoga warm up super D. D series of movements. You'll you'll have more energy. And that's a beautiful thing too, because it's really empowering. You start to realize, hey, I can take my healing into my own hands. I can take my energy and my efficiency into my own hands. So that's a big part of how the physical postures work, is bringing more stimulation and therefore circulation to every little party about. Joe: Yeah, I think it's really important, so I wanted to just kind of drill that home because again, I think that the the idea of what yoga is, is you have to experience it. Like you said you can. You can tell me all day that that honey is sweet. And if I don't taste it, I'll never know. Right. So I just I want to encourage the listeners to initially if they just want to watch you online in a training, but ultimately I don't care if it's at lifetime or. I do care. I don't want anybody at lifetime. I don't want that. Alex: Save you a spot. Joe: No but I encourage people to go in and when they're ready to go take a class, because I really think it's super important. Alex: And I'm glad you said that because that it is a little bit of a blind spot for me, because if you talk to people that are close to me, like you'll see like I love yoga for definitely more than just the physical practice, like the physical to me is like really a smaller benefit to all the other practices. Like I said you don't practice yoga to get good at poses. You practice, you're going to get good at life. But I also realize it's really important for people to realize that, like, the physical is usually the introductory. Right. Most people come to yoga because they want to feel better in their body. They want to be more flexible. They want to kind of like, you know, if they have low back pain, they want to they want to help take care of that. So I think it's important for me to realize that and talk to that, too. And really, if you come just for the physical, that's fine. You'll get everything else. That's how it works for most people. They come for the physical. They want to Joe: Yeah. Alex: Be more flexible. They want to, you know, open up their hips a little bit. And then they start to realize, like, wow, this is. Like, I didn't freak out when someone just cut me off. I used to have road rage. Whoa. This is like my yoga practice is helping. I breathe. I did deep. I took a deep breath. Instead of, like, maybe yelling at my partner or yelling at my kids when they kind of pissed me off. Like, I saw that there's a little more space between my response. You don't have to. You want to go to yoga for that. But you'll get the. Joe: Right. So on top of that, this is just more of a personal question. Do you meditate also? Alex: Yes. Joe: Ok. I just that was a selfish question because I've done it off and on. And I was just wondering if it's something that you do as part of your daily lifestyle. Alex: Sure. I mean, I've I've been inconsistent over the years where I'll go and be really consistent with we're going to fall off. But that's like the seated meditation practice. And I feel like there's a lot of misconceptions about what meditation is. I've had I can't tell you how many students I've had say I can't meditate. I can't get my mind to still to be still. I can't get my mind to calm down to any thoughts. And like, that's very natural. But that's that's part of being a human having a human mind. It's not about making your thoughts go away. The practice of meditation and this is ancient yoga philosophy. This is like that the eight limbs of yoga, which is a really foundational yoga philosophy teaching before you get to meditation, that kind of the precursor is is concentration. So when you're doing when you're meditating, what you're really doing is concentrating on one thing. And if your mind wanders, it's OK as part of the practice. But you just sucks instead of letting your mind go away off into the distance. You notice it wandering and you bring it back. You notice it wandering and you bring it back. So the practice is concentration. Meditation is not really a verb. It's more of a noun that you might get into. But just because you sit and sit for five minutes doesn't mean you're gonna get into that state of meditation where you're like in the zone. Alex: And that's not it's practice another you know, another thing like you want to judge it as like, oh, did I actually meditate or not just take if you. And I like to teach when I do like one to one coaching, I just teach. Hey, guys, this is like we're just gonna practice concentration and let me call it meditation. We're gonna practice concentration. And as you get better at concentration, you start to get into the zone. And some people, almost everyone meditate just in different ways. Like runners. You know, I've talked to some people, too, that work with or might you have like a concentration practice, ignite or meditate. And I was like, well, what do you do to kind of like get out of your own head like or like, you know, what do you do to kind of if you have a lot of thoughts going on it, like why I like to run when I'm running, I'm just like fully in the zone and not thinking too much. Perfect. That's your meditation. Some people meditate when they play basketball and they play music when they create art. So there's a lot of different ways to do it. And I think that's important to realize, too, to. Joe: Yeah, and it's funny because what yoga has helped me to do is to understand how poorly I was breathing because I'm definitely a breath holder type person like I. The tension from holding my breath for certain things. And so it's opened up the fact that I need to breathe deeper and longer. And it's all part and it's all these little benefits that you don't realize you're getting. And that's why I think it's so important. I wanted to have you on because of all of this, you know. Alex: Yoga changes your life does Joe: Yeah. Alex: If you commit to it. And it just it just works for everyone. The big thing is you have to find the right teacher, right? The right Joe: Yeah. Alex: To feel like I'm not everybody's teacher. I've had people that don't like the way I teach. They don't. I talk a lot to a lot of stories. Some people like that. Some people like more silence. You know, I play my music really loud. Some people like that. And that's fine. And I and I realized that, like, not everyone's going to like me. I think if people if I wanted everybody to like me, I'm probably doing something wrong. I'm sacrificing Joe: Yeah. Alex: My truth. But there's plenty of teachers. There's plenty of styles of yoga. So once you find your teacher and your style and your person, you dive in and and like, it'll it'll change your life. Joe: And you touched upon something there that I wanted to ask you, this is about the music and how. How do you think that Paris, with what we're all doing in that room and and how do you I would, knowing you

The Joe Costello Show
Architect Your New Life...NOW!!!

The Joe Costello Show

Play Episode Listen Later Jun 24, 2020 12:14


I've been working my ass off on creating my new life since COVID-19 hit the world in the middle of March 2020. I can't emphasize enough how this might be the only time in your life to architect your master plan on how you want to live the remaining years of your life on this earth. You and only you are responsible for your happiness and this is a recess, a time out, a glitch in the matrix which is allowing you the needed time, to make your dreams a reality.I simply can't stop talking about this as I feel if you don't take advantage of this very moment in time, you will jump back into the rat race that was interrupted by the COVID-19 pandemic and never fulfill your life long dreams and aspirations. I wish you the most fulfilled life you can possibly have and that my friends, is entirely up to you and in your complete control. https://youtu.be/f-J1gNQQngE ********** Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014Andy's Links:http://andygalore.com/ https://www.facebook.com/andygalorebass **********If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.com/#thejoecostelloshow Subscribe, Rate & Review:I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to https://joecostelloglobal.com/#thejoecostelloshow Follow Joe:Twitter: https://twitter.com/jcostelloglobal Instagram: https://www.instagram.com/jcostelloglobal/ Facebook: https://www.facebook.com/jcostelloglobal/ YouTube: https://www.youtube.com/channel/UCUZsrJsf8-1dS6ddAa9Sr1Q?view_as=subscriber Transcript Joe Costello: Joe: Everybody, thanks for listening. I really appreciate you being here. And the fact that you would like to have me in your ears. It's exciting that the podcast is getting some recognition and we've had some really great guest on. So for this podcast episode, I wanted to talk about the time that we live in now and how much I need to emphasize that this is a huge, huge opportunity for you to finally do whatever it is that you've always wanted to do. I mean, you have nothing in your way. I know that financially, it's a tough time for some people but if you can get by with collecting unemployment and just pulling back on expenses, sitting down and just coming up with an amazing plan to finally live the life that you've always wanted, this is the time I had an earlier podcast. I think the title was "Now is the Chance" or "Now is Your Chance." But I thought that that was going to be a short lived time and that if you didn't jump on it when that episode was released, we were going to be back to doing whatever we were doing before all of this hit with COVID-19 and you would have lost that window. But based on what's happening in the world and how more cases seem to be cropping up, it just seems to be we're going to have this time at home to really work on ourselves and to think more about what we want to do with our lives. Joe: It really is an amazing time to do what it is that you've always wanted to pursue. For example, when this happened, I don't think I waited too long to actually kick off this podcast. I wanted to start this around 2015 and here we are in 2020. I started it. I think the first episode was March thirty, first of twenty twenty. So I jumped on the opportunity to say, OK, I actually have time now away from my daily routine and my business that was really slammed and was doing great. Now I have the opportunity to go ahead and get this podcast off and running. So what I'm trying to do is encourage you to also do the same thing. I think you need to say to yourself, you won't have another opportunity like this where the whole world has been put on hold. So I would really love to see everyone put down pros and cons columns or whatever it is that that's going to help you to mentally think about all of the things in your life and all of the past that your life has taken. And look at what it was that you always wanted to do or what it is that you want to do now that you had never thought of but because you have this extra time to sit around and think and maybe meditate or just have some quiet time alone, that there is something that would really make you happy. There's a lifestyle that you would choose now over your your lifestyle from the past. Is it you want to travel the world and make money as a photographer or a vlogger or do you want to do a YouTube channel on cooking or gardening? I mean, there's so many possibilities, but you just have to make the commitment to say, "I'm going to do that, I'm going to go online, I'm going to learn how to put together a YouTube channel or I'm going to learn how to put together my own podcast", any of those things. But I think this time is so unique right now. I just feel like it's, it eats away at me when I see people make comments on Facebook as if they don't have any choices in life and they're sitting there just waiting for the world to open back up again. And I think the time during this COVID-19 dilemma that we're in, is that the time that you do have at home should be this gift to you, as if you can now create the life that you will always wanted. And I implore you to just do some research, sit back and do it with yourself first if you need to, or do it with your partner because you want them involved or you want the buy-in from them. Joe: But I don't think you should hold back on anything you've ever wanted to do, because right now I'm really enjoying my life. I have my podcast off and running, I've gotten my YouTube channel up, I'm going to the gym every day, I'm probably doing yoga two to three times a week, I'm in the gym at least five times a week because I believe my health is more important to me than anything at the moment. So take that, for example, if you always put off working out because you said you didn't have the time, now is the time! I mean, when we could even go to the gym, I bought a jump rope on Amazon and I said, OK, I'm going to do my best to stay healthy. So I, I attempted to make a promise to myself. Didn't always keep it, so I'm not going to say that I made these great commitments to myself and kept them all. But I did my best to jump rope as often as I could. I attempted to do at least one hundred push ups a day when I remembered too, I would always do abs and I did it all in my house. Joe: Now the gyms have opened back up, granted at most of them, you have to wear a mask at least into the gym and when you're walking from, let's say, machine, to machine or certain area of the gym to another area, but when you're in position and you're let's say you're doing squats, you're allowed to take your mask off, at least at my gym during that period of time. So I don't know, I just I feel like I really need to spread the word to get people to start motivating themselves, you know, get some drive to go out and do what it is that you've always wanted to do, because now is the time! I've never seen this my whole life. No matter what age you're at, all we've done is run, run, run. As soon as you were old enough to go to elementary school, you were there and you'd come home and, you know, then you got into junior high and high school, you had homework and you had sports, it is just running, running, running and dinner and then homework and then bed. I've never had a time in my life like this where I literally don't have anything that I really need to do. Now, mind you, my booking agency business is starting to come back a little bit, so I do have some increase that I have to deal with and send out some contracts but it is drastically reduced because events are nonexistent. Most corporate events won't come back until maybe the Spring if that early. There's just a wedding here or there and a few of the resorts are opening up on a minimal basis. Joe: So I'm literally doing my best to use this time every day to just educate myself on all of the things that I want to do to move myself forward in life. A lot of that deals with just being an online influencer, I want to build my YouTube channel, I want this podcast to become more well-known, I want to get guest on here that are more well known and I just want to keep increasing all of that momentum that I'm working on. So once again, this is me just reaching out to you. I hope that this podcast somehow lands in your ears and you have a chance to listen to this episode and it motivates you to understand that there's a good chance we will never have a time like this in our lives ever, where we are given the freedom to sit down and start thinking about how we can live the most incredible life that we put together and we plan out. Literally. This could happen in the next month. You could just do all the things that you wanted to do, get them all ready to go and start the momentum. So when life comes back to whatever it's going to be, you can choose to jump back on the train that you were on or you can stay on this new path. It's a self designed life that you've thought about that you always have wanted to fulfill, but you never had the time, or at least that was the excuse we all used. But I truly, truly believe and I know this is a painful time for a lot of people, but I believe this was a gift. This was a, a readjustment of the world to stop and think and slow down and re-evaluate our lives and figure things out. We've all lost people with COVID-19. So I'm not saying that this was a pleasant thing that happened to a lot of people. What's happened with COVID-19, has affected all of us differently, and we've potentially all lost someone during this time. But we have to rise to be as positive as we can and look at this as a time to take our lives to a new level, a new direction, something where we wake up every day and we love what it is that we're doing and we love what it is that we're contributing to the world and we smile and we're happy and we're healthy. Joe: So please, please, please, if you stumbled across this and you're listening to me right now, I'm asking you to take this time to architect the life you've always wanted to live. Start planning it and don't over plan, don't overthink, don't over criticize what you think might be the outcome, don't be scared, punch fear in the face and get this going and start your new incredible life. If there's any way that I can help you at all, please reach out. You know that all my contact information is in the show notes and I will give any advice that I can as long as I feel that it can be helpful. Joe: So please, get going on your new life and you will never regret this time off. Thank you for listening. I really appreciate it. Best to you all.

The Joe Costello Show
Interview with World-renowned Vegan Chef and Author, Jason Wyrick

The Joe Costello Show

Play Episode Listen Later Jun 17, 2020 65:33


I sat down with world-renowned vegan chef and author Jason Wyrick who has co-authored a NY Times Bestseller "21 Day Weight Loss Kickstart" as well as the book "Powerfoods for the Brain" with Dr. Neal Barnard, MD. Other books he has written are "Vegan Tacos" and "Vegan Mexico". He was the food editor for "Living the Farm Sanctuary Life" with Gene Baur and Gene Stone. He's a coauthor of "Clean Protein" with Kathy Freston and Bruce Friedrich. Jason has published the world's first vegan food magazine, The Vegan Culinary Experience which is now defunct and has been featured in the NY Times, the LA Times, VegNews, and Vegetarian Times. He has traveled the world teaching cooking classes and is the first vegan instructor to teach in the prestigious Le Cordon Bleu program. We talk about being vegan, health benefits, dairy, cheese, his home delivery service of amazing vegan food called The Vegan Taste and his restaurant Casa Terra. Jason gives us such a great insight of his progression of eating like most of the population to becoming a vegetarian and finally a full out vegan. It was such an honor for me, to have such a celebrated chef and author on my show. Because I've eaten his food, this conversation had so much more of a meaning due to my various attempts of being vegan myself. I hope you enjoy this conversation and the knowledge Jason shares with us all from his heart. Jason Wyrick: Vegan Food Delivery Service: The Vegan Taste Vegan Restaurant: Casa Terra Co-authored a NY Times Bestseller: "21-Day Weight Loss Kickstart" and "Powerfoods for the Brain" with Dr. Neal Barnard, MD. Other books he has written are "Vegan Tacos" and "Vegan Mexico"He was the food editor for "Living the Farm Sanctuary Life" with Gene Baur and Gene Stone. He's a coauthor of "Clean Protein" with Kathy Freston and Bruce Friedrich. Connect with Jason: YouTube: https://www.youtube.com/user/thevegantaste/videos Facebook: https://www.facebook.com/jason.wyrick.5 Instagram: https://www.instagram.com/casaterrarestaurant Twitter: https://twitter.com/VeganChefJason https://youtu.be/6jzSCBvX7PA ********** Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass ********** If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.com/#thejoecostelloshow Subscribe, Rate & Review:I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to https://joecostelloglobal.com/#thejoecostelloshow Follow Joe: Twitter: https://twitter.com/jcostelloglobal Instagram: https://www.instagram.com/jcostelloglobal/ Facebook: https://www.facebook.com/jcostelloglobal/ YouTube: https://www.youtube.com/channel/UCUZsrJsf8-1dS6ddAa9Sr1Q?view_as=subscriber Transcript Jason Wyrick: Joe: All right, welcome, Chef Jason Wyrick, this has been a long time coming for me. I have looked forward to interviewing you the moment I tasted the food that was delivered to my house. So here we are and I'm so excited to have you on the podcast and I really appreciate the time and you actually saying yes to me, so thank you so much and welcome! Jason: Well, you're welcome, I appreciate you having me on here. Joe: Yeah man this is a, the way this came about for me was I got a flyer in the mail and it was one of those things like come to this free, healthy dinner to hear some, I don't know, some sort of talk about healthy eating and nutrition. And it happened to be from a nutritionist, a company in town, like an office in town. And I went and then I, I got pulled into it, you know. The food we had was great, but it wasn't necessarily vegan, it was just healthy. But then when I got into the program, which was not cheap by the way, but I felt I was worth it. They started to say, you know, do all this blood work and then we found out my, I knew my cholesterol is always a little high. So their program is doing vegan for 30 days on their menu. And then from there, you, you know, you the hope is you stay with it or you alter it a little bit or whatever, so that's how I got into this. And the problem for me was I literally was so busy I did not have the time to prep my food. It was taking me like half days on Saturdays, half days on Sundays. And I was like, my weekend is shot and I've prepped all this food and, and I, you know, any small amount of time I had was gone. So then I really went on the hunt for trying to find healthy vegan food that I could just literally eat and not do anything with. I had already done, I think I did Sun Basket a while back. You know, all the food prep things that you know Jason: Right. Joe: of and we talk about. So that's how you and I got connected. I, I don't even know how I ended up finding you. I say it was just purely, I was so desperate doing a Google search and I found you and I was like, SOLD! You mean I can just heat it and eat it, right? That's that's your thing, it's just heart and eat. So here we are. So I want to start from wherever you want to start. I know that this was a health thing for you in combination of other things. But knowing the stories that I've read and interviews I've seen of you, that this came about more for a health reason initially for you. And then it just blew up from there and and it became your passion, which is really cool to me, because this is what I preach on this show and on my videos, is that I want people to live or fulfilled lives doing what they love. And it's cool that you went into that direction knowing some of your past, which you can talk about om how this all started for you. So take Jason: I'm Joe: It away! Jason: Sure it was a kind of a winding journey, I think I mean, it, it seems kind of straightforward when you look at it. I was unhealthy, I went vegan, I got my health back. Hurray! But that's, that's really not how it started, I mean. It's starts when I'm a little kid because, I think I didn't eat great, but I didn't eat bad for the kind of regular American diet. Which meant, you know, my mom cooked some of the meals and occasionally ordered out and I played sports all the time, I was always active. So I was a super healthy rail thin kid. And then as I got older, towards the end of high school and in college, I kept eating the same way I had been eating the last few years and last few years had changed because my mom went to work, she got busier and so our food choices changed to, "What, which one of these seven different chicken dishes do you want tonight that I know how to make? or would you like Taco Bell or Burger King or Pizza Hut or something like that?" So when I stopped playing sports all the time and was super active, the calorie and taken and honestly, like the terrible food I was eating, started to catch up with me. And so I, I probably put on 30 pounds from when I was 16 to probably 19 and just kept going up about 10 pounds a year from there. Jason: So I was already getting overweight. And then right at the end to college, I started learning how to cook. So I went to, I went to this really great Egyptian restaurant in Fort Worth where I went to college, had the ah this amazing meal with the first amazing meal I'd ever had. And I was like, "I want to learn how to eat like this!" And I'm broke because I'm in college. So I started to learn how to cook for myself. And then right after that, it was like two months after that, I went vegetarian and that was solely for ethical reasons. No real idea of the health impact or anything like that, that it has. I didn't care at the time, I was just going to keep eating food that was super tasty and not worry about the health part. So, of course, even going vegetarian, a couple gaining weight. In fact, I was kind of a stupid vegetarian, I'll just be blunt about it. I took the meat I was eating and I replaced it with blocks of cheese. So instead of these instead of like these super fatty steak fajitas loaded with sour cream and cheese that I was eating before. Now I was eating cheese lover's pizza from Pizza Hut and the additional topping was extra cheese. Exactly! [laughter] Joe: [laughter] Jason: And that was that was my dinner. I was with someone at the time, she had her own pizza. It was it was terrible. And so I became incredibly overweight. I weighed about 330 pounds and I got type two diabetes by the time I was in my mid 20s. And I was, I was faced with having to take insulin for the rest of my life and in basically starting to deteriorate even more. Like I was already deteriorating, my eyesight sucked, sleeping 10 to 12 hours a day. Everything you can think of with Type two diabetes was going wrong with me. So I was facing having to take medication and deteriorate for the rest of my life, which was probably not going to be that long at this point or changed my diet. And so it's, it's funny because I was, I've been vegetarian for five years and I had, I had heard of vegans, but I didn't really know what they were. And I even made fun of it a little bit.[laughter] Joe: Right. Right. Jason: This was back in the late 90s. And then all of a sudden it's 2001 and I'm faced with having to make this choice, do I do I give up this food that I love, which is cheese, and live a better life or just keep going with the cheese and and it's funny because even though it it sounds like a no brainer, like eat cheese and die or give up cheese and regain your health. I mean, it sounds like an obvious choice, but there is so much there's so much pain involved in a lifestyle change, that the stress of that was really bad in itself and, and going vegan in 2001 when really no one else around me was, was vegan. It meant I had to learn how to cook, I had to learn how to fend for myself, I had to completely change all these foods that I knew how to make and eat when I was growing up. And so it was super stressful at first. And so I relaxed a little bit and decided I was going to give myself a cheat day. So I was going to be a cheating vegan once a week. So every Wednesday night I'd go out and I get all you can eat enchiladas at my favorite Mexican restaurant and they bring them out in pairs they'll bring you two enchiladas at a time. And the first time I went in there, the waiter was like, "OK, yeah, whatever, it cool! He brings out enchiladas, except I eat 14 of them. Joe: Oh, my gosh. Jason: And then they come back the next week and all of a sudden the waiter's like, "Hmmmmm" because I need another 14 enchiladas. So by the third week, the waiters like "I hate you but I have to serve you anyway." Joe: You're like the, you're like that all you can eat buffet, crab, Jason: Right. [laughter] Joe: Leg guy. [laughter] Jason: It's it's probably familial in some way because I know my, my little brother would go to a Mongolian stir fry places and he take the bowl and see how much he could pack in the bowl because it was one pass through. And so he'd, he'd have the regular bowl and it only come up like three inches and then there was like the six inch pile of stuff on top Joe: Oh, Jason: Of the. [laughter] Joe: My gosh. It's. Jason: So there must be something familial about that, that buffet all you can eat thing. I, so I, but anyway, the point is, I, I did that for a few months and even then I managed to start losing weight and my symptoms went away. So I'd be vegan for the entire week, except for this one, one rather egregious cheat meal but it was still just one meal. And then it went to once every other week when I would go to this place. And then once a month. And then I remember the last time I purposely had went to this place in order cheese that I order in the enchiladas and I, it was a weird experience because I looked at them and I realized they didn't taste good to me anymore. They didn't have that, that feeling you get when you cheese that Homer Simpson like, "dooonnuuttt" like when you eat dairy, so I didn't have that anymore. They didn't taste good and I realized I was ordering them out of habit and not because I actually wanted them. So I didn't even eat the enchiladas, I pushed them away, paid the waiter, who probably sighed relief Joe: Right. Jason: that I was getting had their there and that was the last time I ever stepped foot in that place. And at that point, I was a full on vegan, which took me about eight months. And it also coincided with me completely getting rid of diabetes. Jason: And Joe: Incredible! Jason: After the first year, I dropped about 60 pounds and then when I added in some real exercise, I dropped another 60, so I dropped about 120 pounds over two years. Joe: That's incredible. And I think Jason: Yeah. Joe: What people need to understand about you, you're a big guy. Like I know Jason: Yeah. Joe: from the interviews and stuff, 6' 3", right? Yeah, I mean, that's you know, and and I think at one point you said you, you went to school and lived in San Antonio...Fort Worth, sorry. So you're like in steak town. Jason: Yeah, I mean, Joe: Right. Jason: The nickname of Fort Worth is Cowtown. Joe: Yeah, ok, so there you go! Yeah, so that must, the be, that must be hard. It's just the stigmatism with, you know, vegan and yoga and all of those kind Jason: Ok. Joe: Of things. Right. It's tough. Jason: It depends. OK, it was weird because Texas is really interesting. I mean, I grew up here in Arizona but my dad is Texan. And so I was already pretty familiar with Texas before I actually moved there for school and stayed there afterwards. And Texas has this reputation of being big and boisterous and rednecky and it is. But it also has has this huge liberal side and has this huge health side, has this huge vegan side to it. I mean, I remember when I was in college, I went to the Texas Vegetarian Chili Cookoff. And this was in the mid 90s and it was like this huge gathering of people from all over Texas doing this Chili Cookoff. Like Texas had one of the biggest vegetarian societies in the 90s, at least when I was there participating in that stuff. And so Texas is just this really cool mix of all these different things, religion and Atheism and big hair money and rebel activists and steak eaters and vegans and no one is quiet about it. Maybe that's the one thing about Texans is, you know, everybody kind of gets by in the big city but they're, they're friendly but boisterous about that stuff, which makes it really cool. Anyway, that's my tangent on Texas. Joe: No, but that's great, because it's exactly you, you saying that is exactly how it educates people to know that it's not just big hats and boisterous voices and steak and whatever, it's, I had no idea that you would think that long ago people were vegan in the state of Texas. Jason: I mean, I think, I think Fort Worth had one of the first vegan restaurants in the country, which was Spiral Diner that opened up in 2001. Joe: Yes, I don't think anybody would ever know that. So that's, that's cool. So the tangent was great. OK, so you are, this is what year now that you go full vegan? Jason: So that was the, I started the beginning in 2001 and then I was full vegan by the end of 2001. Joe: Got it. Jason: And I think, I think I might be more like a lot of other people with this, like I've, you know, I've written books with a lot of the vegan doctors and usually their message is that's all or nothing proposition. You go from zero to 60. And from a physiological standpoint, you're going to regain your health really fast that way. But if you're miserable doing it, chances are you're going to quit out. And so I think for a lot of people transitioning, as long as they have it in their mind that it is a transition, it makes it easier for people. So that's that's what I did. It took me it took me about eight months to fully transition over. And I tried to zero to 60 approach for Joe: Right. Jason: three weeks, and it, I was miserable. Joe: Yeah, and for me, the 30 day thing I did not find hard, the part I found hard about it was the meal prep and that's literally what was difficult for me. And I even heard you in some other interviews, the good thing that we have going for us these days is that it's, it's much more accepted in the world. And when you go out to a restaurant, there are options that would have never been there 10 years ago. Jason: Yeah, there are plenty of options, Joe: Right. Jason: Which has made it an interesting landscape for vegan businesses. Because I think in the past, vegan's gravitated towards vegan businesses because that was their only choice. And now at least in the Phoenix area, vegan businesses are just one amongst a bunch of other vegan options. Joe: Right, but I think the key and the reason I was so excited to have you on is what helped me get through the, the, the next 30 days that they asked me to do because they could see that my cholesterol was dropping. So Jason: Great! Joe: They were like, will you, "Are you willing to buy into doing it another 30 days? And towards the middle or end of the first, as I think when I came across your website and then it was easier for me to say yes, because I literally just could not afford the time to prep. Jason: Right. Right. Joe: But but besides that, the biggest thing for me was the taste. And I don't know, like this could be a trademark or something that I'm saying, but I didn't know vegan food could taste so good, and you can still Jason: No it's true, Joe: if you want. If it's not taken by somebody, it's all yours. But, yeah, that's what it was for me, man. When I first dug into it and the way I worked with you was that I wanted it spicy, which you were all down for. I think even when I, I got from my doctor what I needed to do, he said, OK, well, if you're gonna get this food from The Vegan Taste, just make sure, ask them if it's low and oil, right?. And it so... Joe: It everything was a yes. Like all, you know, that was when I wrote to you, Yes, you know, it's either low or minimal oil or no oil. And I can get it the way I like it, so you made it spicy, which is the way you said you liked it in email. Jason: Right. Joe: So it was like the perfect marriage. I was like sold! Jason: Yeah, I think that's, that's the key to getting people to make a change. It's about honestly, I think it's like about the in the environment that you put people in. So I know Dan Buettner, who wrote the Blue Zones by it. And one of the things that he told me that really impacted the way I thought about food and getting food to people and the way we treat people, is that the the biggest determinant for someone making choices that let them live a long time was not their willpower, was not a doctor's prescription or anything like that, it was the environment in which they lived. And so if the choices were easy to make, to go out and exercise, statistically speaking, more people would go out and exercise...that way. And so to me, food is part of the environment that you're in. And so the easier I can make it on someone to make a better choice for themselves, the bigger chance they are they're going to have to actually make that choice. And so for me, that's putting ready to eat meals in front of someone that's going to make them happy. Joe: Yeah. Jason: The less you have to worry about it, the easier it is for you to be healthy. Joe: Yeah, it's it was so nice to find the website. It was that, I could hear that sound when the heavens open, I was like "Thank you!". It's the only thing that's gonna keep me on track. Now, you know, before, before we get too deep into this, I'm not full vegan. Since doing nutrition program, I've cut out a lot of, like I would use, I would snack before dinner. I'd be so hungry I'd come home at four o'clock, whatever, and I'd pull out the the block of cheddar cheese and some Triscuits and, you know, just take the edge off. I, I stopped doing that a lot more than I use, you know, it's, it's cut way back to almost minimal, you know, to none. I don't drink, I used to drink half and half of my coffee and now all I use is either oat milk or almond milk. So I've completely switched over to that type of stuff. So while we're on the subject of, of, you know, how this has helped you, why do you think dairy is so bad? Is it just that it's like, was it not meant to be eaten or drank? Is it just like we've created this product that should not have existed? Jason: I think so. I mean, dairy's primary uses to grow a baby. And so you're you're consuming something that's meant to grow another being and as, as adults, we're not, I don't think we're supposed to be consuming foods that are continue endlessly making us grow to that scale. Like I have a five year old daughter, I watch how much she eats and sometimes as much as I do, because she, she's always out there running around and she's, like I look at her in a week later, she's taller and I'm like, oh, my God! And so calorically dense foods are good for her, I mean, that's why human mothers breastfeed and you know, all this other stuff. But then when you stop growing and you keep eating those foods, you're consuming growth hormone and all this other stuff that I don't think we're meant to be consuming. And then, you know, there are a couple other issues that go with it, which it turns out casein, which is the protein in milk seems to be carcinogenic, even, even in that milks appropriate species after their weaning, it seems it seems like the incidence of cancer goes up in that species if they continue to consume milk even from their own species after they're supposed to stop drinking it. And then, I mean, look at us where we're drinking stuff that's meant to grow a baby cow into this big monster cow compared to humans I mean a cow is pretty heavy. Jason: So, you know, there's, there's that it's, it's loaded with fat and it's all if you have cheese, it's all condensed down into this calorically dense product with all these other, all these other ingredients into it that are probably not meant for us to just get fuel. And it's all like if you take milk, milk is this big volume, take cheese and it comes down to  this little thing, all that condensed down. It's like a black hole of food. And then you're you're eating that, so, of course, no wonder you're you're getting fat, you're having arteriosclerosis as you age and all these other problems. So that's why I think the health problem is with dairy. From, from an evolutionary standpoint, it's was a good thing because you could have this nutrient dense food even in times of famine. That's, that was one of the benefits of cheese because cheese was basically shelf stable in a long period of human history when we didn't really have very many shelf stable foods, the same way that after a fashion beer, a shelf stable, just one of the reasons that beer was traded there and there are all these ways to preserve foods during times of famine and we just don't live in that anymore. Joe: Right. So on the dairy part of this, what I guess people have a hard time thinking of how they would substitute a cheese for these recipes, and I know that in you know, you have this enchilada recipe and you, there's I mean, you have a ton of different recipes. What are just some off the top of your head, some substitutes that you do use for cheese? Like, how would someone make a pizza? What would they put on it as their cheese? Jason: You know, it depends. There are a lot of nondairy commercial cheeses out there. I think from a health standpoint, they're good insofar as you're not getting casein and all these hormones that go with it, but I can't pretend that they are health food. Joe: Right. Jason: I mean, it's base, it's like cheese is solidified fat when it's dairy and the non vegan cheeses are still a solidified fat. They just have all the other junk that goes with them. So, you know, if you if you limit that look, if you're going to have a pizza and you have it once a week and you put some vegan cheese that's made out of almonds or cashews or something like that on it, you're going to be OK. If you do that every single day, you're not going to be so OK anymore. You can still be a junk food vegan. In fact, it's easier now to be a junk food vegan than it is to be a healthy vegan, because you can run over to Carl's Jr. and get a Beyond burger, that's, you know, still loaded up with all this fat and it's still a burger where as when I went vegan almost 20 years ago, if I was craving a burger, I had to make it myself. Joe: All right. Yeah, I mean, the creativity Jason: So that's. Joe: That, that you have to come up with for these recipes must be daunting. Jason: I sometimes, but only because when I do a lot of recipes, Joe: Right. Jason: I mean most, most chefs at a restaurant might do 30 recipes throughout the year. If they're really pushing themselves. I think with the delivery service, we're doing 300. Joe: WOW! Jason: Every, every year, at each year, it's different too. Joe: Ok. So you're rotating 300 recipes a year from The Vegan Taste. Jason: And we're just making about as we cook every week. Joe: It's amazing! Jason: Yeah, it's, it's, it's daunting, but it's cool. Joe: Yeah, it's. Jason: Yeah, I mean, and like back to the cheese thing, sometimes it's replacing that, that fatty mouthful, mouthfeel that cheese gives you so you can even use something like an avocado or you can use, what are my favorites is this thing called pipián verde, which is just this ah pepitas and tomatillo puree. It's it's a classic Mexican dip and I'll just use that on enchiladas or we'll make our own cheese at the restaurant, sometimes we'll make it just out of almonds and some other ingredients and we'll make our own queso fresco like that and we make our own mozzarellas and stuff. That's a little laborious, I think, for the for the home cook, it's just getting that, that creamy texture which you can get from nuts and seeds. Joe: Right. Yeah. Because even on the recipes at Casa Terra, your restaurant, I saw that there was I think you have is it brick oven pizzas or just... Jason: Yeah, Joe: Or Jason: We have worked fire Joe: Wood Jason: With Joe: Fire. Jason: Fire pizzas Joe: Right. Sorry. Wood fire. Yeah. And so and I did see one of the recipes are one of the descriptions of the you know, the pizza said mozzarella. So I was like, OK, how does he doing that? Jason: Right. It's just a, when you get to that type of cheese, that's it's a little time consuming and it's a mix of art and chemistry. Joe: Yup. It's just it's incredible. So I know we just kind of skipped over it a little bit but we talked about your daughter and, and I and I know we talked about, we didn't quite say that she's vegan, but I know that she is from based on my research about you. And I know it's tough with kids these days with all of the gluten allergies and, and everything that's going on that or used to be a lot tougher. Now, its parents are more aware there are more options and I would think that it's almost the same thing with your daughter as it is with a child that has a gluten allergy. When they go to a house for a birthday party and let's just go back to using pizza as a example, because that's how I grew up, right? That your parents would buy a bunch of pizzas, and... What does she do in that case? Or how how do you let the parents know that she's vegan and that, you know, that isn't something she would (A.) like to eat or (B.) she shouldn't eat or (C.) it might make her sick of she eats because she's not used to eating cheese. Jason: We just we tell them and ask them not to make a big deal out of it. And then we make sure our daughter has food that totally owns everybody else's. Joe: Perfect. Jason: I Joe: That's awesome! Jason: When she was in school before COVID hit, the teachers were asking if we could bring stuff for them. Joe: That is so funny. I can imagine, no I, listen, I know what it smells and tastes like. Every kid we sit there with, their pizza from Dominos going, WWO!, what are you eating? I'll trade you, I'll trade you two slices for that, that's perfect. Well good, she's totally vegan incorrect? That's amazing. So you, what is the Vcology project? Is that how you say it? Vcology Project? Jason: Vcology. Joe: Vcology. So. Jason: It's pretty much the umbrella for all the stuff that I do. Joe: That's what I thought, I just wanted to make sure. And I, because I know that you spoke about The Vegan Taste, which is the home delivery food service, Casa Terra, which is the restaurant out in Glendale, Arizona. And then I heard you speak about other things potentially coming down down the road, so I assumed that that was the umbrella where all of these things would fall under. Jason: Yeah, I mean, we're working on commercializing our cheeses on a large scale. We've already had one big vegan restaurant chain express some interest in it, which was really cool, it came out of the blue. But that was, that was a nice surprise. And Joe: Yeah. Jason: And we just want to roll out really high quality vegan cheeses onto the, onto the food service market and then retail, if we can. Joe: That's great. Jason: But if I can. I mean, if I can get, like some of the best restaurants in Phoenix using high quality of vegan cheeses, all of a sudden it opens up really great menu options for vegans around the entire town. Joe: Right. And I Jason: And Joe: Was Jason: I Joe: Thinking Jason: Think Joe: Good Jason: Go ahead. Joe: While I was sitting Jason: I think. Joe: On the dairy part of it, and I didn't even know that this underlying thing about the cheese had a broader scope or what was happening. I just I kind of chose the one thing that I know, like you, you know, it's like, how do you have ravioli? How do you have a pizza? How do you, if you you're so used to having half and half in your coffee, how do you make the move away from dairy? And I think that's, I think that's harder almost than the meat part of this or that Jason: It's way Joe: Or the Jason: Harder. Joe: Protein part of it. Right. Jason: I didn't know why until Dr. Barnard told me a few years ago that the casein in cheese is called the casomorphin and that basically means that acts like morphine. It acts like an opiate in your system. And I was like, "That makes sense!!", because one day I just gave up meat and it was like, whatever but when I gave up cheese, I had withdrawal symptoms. I was jonesing, I mean, like the hands were shaking and I had headaches and I was irritable and everything else that I had heard from people that were trying to give up cigarettes or drugs or something like that, I was going through and I'm like, "What the hell is going on?" That was, that was one way where I knew, like, I've really gotta get off this stuff, because Joe: All right. Jason: If I'm having that reaction, this is probably pretty bad for me. But it was a few years later when he told me why. And so Joe: That's Jason: Anyway, Joe: It. Jason: I think that's why cheese is so hard. Joe: That's incredible. How did the two of you get connected for that book? Your book? I wrote it down. I'm going to have it in the show Jason: Sure. Joe: Notes. Jason: The "21-day Weight Loss kickstart". So he was coming through town to do a talk and they wanted someone to do a cooking demo and I was the only one in Phoenix, doing this kind of stuff, so I just volunteered to do it. They were gonna pay me and I was like, don't worry about it, I'll just I'll just do it. And so we became friends through that and then I started teaching the cancer project classes here in Phoenix for a few years, which later became their Food for Life program. And, and during that, I just developed tons of recipes every single week. Because I think back then they were kind of in the same boat that a lot of healthy, healthy doctors are in, we're like, they're like, you have to change your diet. Here's how you do it. But they're not really experts at the here's how you do part. Joe: Right. Jason: And so, you know, their recipes were easy to do, but they weren't necessarily great. They were just like, "Ahhh". And so during that class, I just continuously develop stuff that was usually easy to make, but also really spectacular. And then because of that, we just wrote the book together. Joe: And that's really cool. It's just amazing how things, you know, you can make these connections and they just turn into something amazing like that, so, yeah. I'm trying not to skip around, there's so many things I have to ask you, I have so many notes, it's like this is, like I said, I, I was doing the meals for when I was doing the 30 day thing, basically for lunch and dinner. And then I started to do them just for lunch because my partner, Jo Ellen, we were like we were eating separate times, separate things at dinner, it felt like it wasn't this Jason: Right. Joe: Community. Jason: You loose the social part. Joe: Yeah, and so it's this balance for me. But so I thought at least at a bare minimum, and I think this is one thing that we talk about stepping stones and doing this in stages, is that it's worth at least trying to say to yourself, OK, "I'm going to eat vegan for lunch", just take a meal of the Jason: Right. Joe: day and say, this is what I'm going to do. And literally, breakfast is super easy because for me, it's, it's like a vegan smoothie, right? There's nothing and so I don't have to worry about that. It's not sausage, an egg and bacon and all this other stuff. So then you handle the vegan lunch part and you're already better than probably seventy five percent of the world in regards to how healthy you're eating. Jason: That's Joe: And Jason: What Joe: Then. Jason: I think. Joe: Right and then you just. So and that's kind of the approach I took. I don't know yet, just being honest with you, if I can completely eliminate that occasional steak or burger or Jason: Right. Joe: And I'm sure I can at some point, like for me, like you, I, I refuse to go on medication. So I'm 58 years old and I'm like, I'm not going on cholesterol medication. I don't take anything for high blood pressure. I'm not going to do any of that stuff. So if it's a, if it's food, it's going to make the difference, then that's the difference that I'll make. Go into the gym five days a week is already easy for me. But if I have to do that and get rid of the burgers and the steaks and whatever, and that's the mood that I would make. Jason: And if you could make that, did you make it fun and pleasurable, then why not? Joe: Right. That's Jason: If Joe: It. Jason: It's this chore, you know, like most people are gonna be like, ahhh screw it. I don't want to do it, Joe: Now, Jason: But. Joe: For me, it's it's talking my girlfriend into seeing if we can do it together, so that'll be the that'll be the piece we'll see. Yeah. So tell me a little bit about, oh, I also heard an interview where you said that your daughter growing up with two chefs. So is your wife also working with you at either at The Vegan Taste or Casa Terra? Jason: She she was Joe: Ok. Jason: Doing The Vegan Taste for a while. Joe: Ok. Jason: I mean, for, for years, she was with me in the kitchen. And sometimes when I was off doing other stuff, she was running at it for months at a time. Joe: Got it. Jason: But I now we're in a situation where it's hard for us to split our time like that. And so she takes care of the household and raises our daughter while I take care of the business. We tried where we were splitting it both ways and it was like, I think it's hard to multitask. Right? It's hard to be great at a bunch of different stuff at the same time. And so we just finally decided, well, I'll have to go off and kind of slug it out and be the champion for the business, while she's the champion for keeping the rest of the family sane. Joe: Which is the admirable thing for sure. So The Vegan Taste, let's talk about that really quickly. So The Vegan Taste as home delivery, vegan meals that come in these great packages that are, like you said, are the goal is to heat and eat. And Jason: Right. Joe: They I don't know. I'll let you just talk about it because I don't want to, I know I had a certain schedule and the whole thing with the coolers, but I'd like you to describe it so that the audience will know what it's all about and then they can make their decision from there. Jason: Yeah, it's it's super easy. So the menu changes every single week. It's a fixed menu. You put your order in by Friday night. My crew comes into the kitchen on the weekends, makes everything. We plate it up over the weekend. Pack it up for delivery on Monday and then my team of drivers go out every Monday and they deliver all the meals at once for your entire week, that Monday. They leave it in a cooler loaded up with ice packs so even in the middle of July, the meals will stay chilled until you can pick them up and then you put them in your fridge. I know, some of our clients will reheat them on the stovetop. They'll take the ingredients out and reheat them on the stove, top it honestly, talking to people, most of them stuff it in the microwave and they have a lunch in two minutes. Joe: Yup and those containers are microwaveable. Jason: Yes, Joe: Is that correct? Jason: Yes. Joe: Yes. I know I've done both. I've depending on what the food was, sometimes I would heat it on the stove and sometimes I would heat it in the microwave. And I think that's all, also another thing in my brain about microwaves, they know make me a little nervous thinking that maybe something's there that eventually Jason: Right. Joe: someone's going to admit to, so if I if I have enough time, I'll go to the stove. If I don't, I just use the Jason: I Joe: Microwave. Jason: Am exactly the same way. I mean, I don't even have time to cook for myself very much anymore, so so I use our delivery service for me and most of the time I just slide the contents out of the container and right to a pan. Joe: So in regards to the meals that are available, is it, are they just lunches and dinners? Are they breakfast, lunch and dinners or... Jason: It's basically lunches and dinners right now, but will add in a breakfast option and the juicing option and some desserts pretty soon. Joe: And and like me, at one point, I was getting doubles of things so that I could have something for lunch and then something completely different for dinner. So I assume you have clients across the board that are only lunch, only dinner or a combination of enough meals for, is that how many, how many Jason: Yeah, Joe: can they get? Is it Jason: So, Joe: The. Jason: Yeah, basically we do six different dishes every week and you can get a single portion of each one or you can get a double portion of each one. And the people that want to have our meals for lunch and dinner, get the double portion. Joe: Right and that's what I was doing for a time, that's, that's right. And then in my case, I said that I wanted it spicy but so you actually keep tabs of certain things that people request on a small, I assume a small level because you can't be doing personalized, you know, things across the board for everybody. Jason: Yeah, we have spice is one of the standard options we have for people. And then we have a gluten free option, soy free option, although we use pretty limited soy already anyway. And then no oil option in the meals, again, are are pretty much pretty low oil already. So we just talked to people like, do you really, really want no oil? Or is that that's that you're trying to minimize your your oil? Are you trying to minimize your soy? Are you trying to minimize gluten? Because we don't we don't use those types of ingredients heavily in the meal service. And then if there's something that we can, leave off as a garnish for someone like if someone's like, "I hate right onions." I'll tell them, you know, if it's mixed into the dish, we can't change it but if it's a garnish, we can make a note to leave it off for you. Joe: Right. Jason: I mean, most people are good about it, but then sometimes I get someone that sends me a list of like 10 different things, I can't, sorry, I can't do that. Joe: Thank God I do that I don't want to sit here and look at you in the camera and go, oh, I was one of those people. And Jason: No, not Joe: I Jason: At Joe: Think Jason: All. Joe: The only thing that I said, I everything was great for me. The only thing I request that I think was less tofu in some of my stuff only because I'm I, it's just me getting used to it, it's it, and, and it's not, I would, I wouldn't even say it's a texture thing for me because I eat oysters, right? That's about as weird of a texture as you can Jason: That's sure. Joe: get. So I don't know why I definitely have had tofu from your food service, that was amazing. And it's almost like it's firm and some of it sometimes is even like crispy, like it's it's hasn't where I've had it other times where it just, just, it's just weird. Jason: Yeah, I mean. Joe: I don't know if there's good or bad tofu, maybe there's just the quality of it, I don't know. Jason: It's the way, it's the way it's prepared. And I think it's also what you're used to growing up with. I mean, if you're used to growing up with, say, diced up firm tofu in a miso soup, you're not going to bat an eye at it. But if you're not used to that, the texture might be weird for you. And I think, when dealing with American culture where we're not used to that stuff, too many people just take tofu and throw it in a soup or a stew and they're like, "Okay, that's good enough." But it's not I mean, it's like to me that's like throwing in a raw hunk of meat and is something and being like whatever. So, Joe: Yeah, Jason: You know, it's just it's Joe: Ok. Jason: All in the preparation. Joe: Ok, good to know because I started to get to like it. And thanks to you once again, because I was definitely I grew up with, in an Italian restaurant family and my father was a chef and so all of this stuff is new to me. Jason: Right! Joe: I was eating pizza and pasta and bread and, and you name it. So I wanted to ask you about Cassa Terra. I noticed that on the website, like a lot of places, especially during this time we're living in right now with COVID-19, that the kitchen is closed for the summer, right? That's what it says on the website. Jason: Yeah, Joe: Is that true? OK. Jason: A lot of the high end restaurants, it seems, around town actually close up for the summer. Unless there are these big corporate things that can afford to take the loss that restaurants just suffer with the summer here. Joe: Is Casa Terra where you do actually all the food prep and making them? So that that kitchen is still being used for the food delivery service? Jason: Yeah, it's our Joe: It's. Jason: R&D kitchen and our delivery service kitchen. We do catering and stuff out of there, too. Joe: When does the restaurant open or when do you expect it to open back up in the fall or ? Jason: I'm not sure yet Joe: Ok. Jason: Because honest answer is for a, for the type of food that we do, our location is not that great. And so if we can find a location that's more central or on the east side, that makes more sense for us right now than trying to just reopen in Glendale. And Phoenix is a weird city, so, we have these really accessible freeways and it's actually pretty easy to get around here but I don't know if our food culture is is there yet, because if someone else to drive more than 20 minutes here for food, it's painful. And the chances are they won't do it. Joe: You know. Jason: Or if they do it, they'll come once a year. And Joe: Yeah. Jason: So it's, it's difficult that way we're compared to like Los Angeles and New York or Chicago, people will spend an hour getting to, getting to a place to have dinner. And if it's a good meal, that's just part of the it's part of the experience. That might not be a great part of the experience, but it's something you're willing to do. So. Joe: Yeah, absolutely, Jason: So Joe: Yeah. It's Jason: We Joe: Funny. Jason: Have to be, yeah, we have to be in a more central location. Joe: Yeah, because I know we're in, and I live in Arcadia and the boundary for me is pretty much like the 51. If it's on the other side of the 51, I have a hard time going that far west but I understand that. You, one of the things that I did read was that about the Le Cordon Bleu the school and it was something about you being, was it the first graduate of vegan Jason: First Joe: Or Jason: Instructor. Joe: First instructor of vegan? Jason: Remember when it was theater, 2007 or 2008 that I was teaching at the Scottsdale Culinary Institute Joe: Yeah. Jason: And right when I, right when I started teaching there, they became part of the Le Cordon Bleu program. And so I, because I became the first official vegan instructor in that program. Joe: That's really cool! Jason: There was there was cool. Joe: Yeah. There's so many things, the other thing was I remember either hearing or reading that philosophy was your major? And I think what, what struck me about it, when I when I read it and then who you are and, and I even, there was an interview about making the argument of why to go vegan, like how when someone find something like this and this is why this has been like I've wanted to talk about, even though I haven't gone full vegan, I think that the health benefits are so important and just the, the eliminating of dairy alone. I mean, I've told people when they said, oh, yeah, you know, it sucks getting old. I'm like, well, I'm 58, I agree with you, but I don't, I'm, I don't wake up feeling achy. And, and, and I never did a lot of dairy, but even cutting out what I've already done, I think the inflammation piece of this is what other, you know, is another part that people are missing. Jason: I'd, Joe: And so, Jason: Yeah, it's. Joe: You know, so getting back to the philosophy part about how you're able to convey this in a not like beating someone over the head with a club, you've got to do this, it's, it's the only way. Your approach to it is your first of all, your demeanor of how your, you know, your a 6' 3" guy who you would never think if I met you in the street, would say you're vegan. And then the way you intelligently talk about the food and then the bonus of all of it is how it tastes. And so there's just so many amazing things about this, it's why I was so excited to finally do this. Jason: Well, cool! Thank you. Joe: So the Jason: It's. Joe: Go ahead with the phil..., with the philosophy part of this, I think it's helped a lot. Jason: That that's actually what got me to go vegetarian, but also it it taught me a few things about the way people make decisions because I socially and just because of the way I was raised, I didn't want to go vegetarian because it meant changing my lifestyle. And intellectually, I've been kind of bandying it about for a couple months before I pulled the trigger on it. And I didn't do it, it was just something I had thought about it. And then I had an epiphany because I was watching, I was playing with my cat. And I, intellectually, I knew my cat is this other being with its own thoughts and her own emotions. But then there was something where I was just playing with her and I had that emotional epiphany and that's where it went off and I was like, I understood that my cat was this separate creature that was valuable and she had her own rich emotional life and because she was sitting there problem solving and she was getting excited about bringing this little bottle cap back to me and playing fetch with me. It wasn't like this, this robotic, emotionless, thinking-less, piece of matter that, that's how Descartes used to view animals and that's how he justified doing all these horrible experiments he did on them because he, you know, even though they would, they would scream and all this other stuff, he passed it off as they didn't have a soul and they weren't really conscious and all this other BS. And so you can intellectually know that, but then you have the understanding there is that connection. And within a second I was like, wait a minute, it's not ok for me to just, like, take a hammer and smash my cat apart right now, that's really jacked up, that's something serial killers do. Why? Why can't I do that to my cat but why am I paying someone to do it to a cow? And I was like, "I have to stop!" So I stopped, went vegetarian and then spent a month arguing against vegetarianism to see if any of the arguments hold up. And none of the arguments were self-consistent. And so I was like, I'm going to stay vegetarian. And that was the the rational part of that. But what I learned was I had to have that emotional epiphany to fully make that leap in my decision making. And then when I went vegan, it was even more so because I was doing it for health reasons. But then I found out about factory farming. So it's ironic because being vegetarian for a few years, I had no idea about factory farming and then all of a sudden I'm looking at it for health reasons and learning about factory farming and I know that it's what happens in a factory farming is horrible and I don't want to partake in it. But yet I'm going out and having all you can eat enchiladas once a week. Because I emotionally had that tie to the enchiladas and, and so I think for most people, decision making is ah, pain pleasure balance. And it's, it's a very immediate and very immediate decision. And it's funny because people that can make that decision for the long term, we call them wise, because in the short term, going out and jogging or lifting weights sucks for most people. But the wise people go out and do that because, you know, it's going to pay off in the long term. And so I think going through that myself, even though I was trying to be rational about it and I knew what the right decision was and not being able to make it because I had this emotional thing is what got me into food in the first place. Because I knew if I could if I could take the pain part of that calculus away for people and just give them an environment where they could make a good decision for themselves and for the planet and for the animals, then, then I had to do it. Joe: Yeah, it's, it's really cool. I mean, I learned so much more about you just doing the research that I wanted to do up front and, and I think it's important how the philosophy part of your, what your brain has done through, you know, getting that degree in school and then then I heard about the soul sucking marketing job that, you Jason: Oh, Joe: Know. Jason: It was horrible. Joe: Right. Yeah. And it's and this is it all plays, this is why this Jason: It's. Joe: is such a cool interview for me. And I don't want to keep you any longer because I know that, you know, you work really hard and but I, I would love to do more at some point, Jason: Yeah, that'll be Joe: You Jason: Fun. Joe: Know, it's just cool that you, you are doing your passion. It really means a lot to you. You're you know, you eat, sleep and breathe what you preach, but you preach it in a way that it's not preaching. The food tastes amazing! It was just a godsend for me to find it. We find out tonight as you're setting up here and give it a talk, you play the drums. It's like, what, what more of a kinship could we possibly have? And all I do is try to preach on my podcast and on my, you know, social media and all that is just people following their dream. And it's really cool to see you do this. It's, it's, it's great. And and I'm glad you're healthy. Glad you made the choice when you did. You're here Jason: Yeah. Joe: To help keep us all healthy and feed us. Jason: Well it's funny, so it's funny you brought that up, because I feel like I'm in another transition point in what I'm doing because, ah you know, I had this amazing journey where I lost all this weight, I cured my diabetes, became a chef and went and helped out other people. And in the last couple years my, my health started to decline and I was like, what's going on because I'm eating right. But there's, there's all this other stuff. So, I mean, you know, in the last couple of years, I almost got divorced. I was working 100 hours a week. I was doing all this other, other stuff. I was, you know, we went to set up to open up this restaurant, we had some guys steal about 50K from us and steal, ah... He probably cost us about 200 grand in the long term, which was almost all my family's money and almost all of my best friend's money that she had. And then we opened up this, opened up this restaurant, which you were in the restaurant business, so, you know, like it is a lot of work. And on top of that, we're doing these other businesses. Jason: And so there are all these other stressors and I realize it actually happened right wing COVID hit. Because we were thinking about like, we were really looking forward to the summer when we could shut the restaurant down for a while and get a breather. And then COVID hit and all of a sudden, oddly, my life got better. Because I was spending time with my family and I was killing myself anymore and my health started to improve. That was it, I had this very narrow focus in my life, which I was really good at but it also carried all the stress that I think, I think you have when you get a little bit older in your career and you're kind of at the, you're operating at a higher level, it's also a more stressful level. And there's a lot more at stake about point. And so when COVID hit, I had more time for my family. And then I started going on bike rides again and hiking and I started spending time playing the drums, I hadn't touched my drum set in three years. Joe: WOW! Jason: And I started playing again, which was actually cool. I have this thing where I get my, stop something for a while when I pick it up and better at it. So now I can actually play some of the Rush songs that I couldn't get through Joe: Nice. Jason: For three years. Like, where did this come from? Joe: It's awesome! Jason: You know, so that was cool. And so, so I realized, like, I'd been talking about environment with food choices. But I've been ignoring everything else that goes into being a healthy person and taking care of your mental state, taking care of your family, making sure you have time to not be insane with all this other other stuff and so I think my crew is shifting into a point where I'm going to start talking about more about holistic health and creating good environments for your, for your well-being as an adult. It's, I'm sure it's true for for kid or whatever part you're in but since I'm in my 40s and kind of went through the midlife crisis part, that's how I solved it, was figuring out that I had to create a good environment to make good choices throughout my whole life and not just with the food, because I'd just been concentrated on the food, which is one key. Joe: You. Yeah, it's amazing how many people I know, it's it's hurt a lot of people. But I personally, it's been the best three months and so long because I was running so hard. And like I said, I've gotten to do things that I want to do. I it's just it's been a good thing. And I'm glad to hear that everything is turning back around for you, too, as well. I worried about you when it happened, to be honest, because, you know, I, I know it devastated the event world for me, I mean everything just stopped. And so I was worried just purely whether or not you know how how well you would do during that time. And it's funny, speaking of, you know, COVID-19. Was there any concerns about, you know, your clients with Joe: The food delivery and any, any things that you had to do differently in order to to be, you know, follow the CDC guidelines or anything like that? Jason: We just did extra sanitation, but we were already doing that stuff anyway. Joe: Right. Jason: We were just more hardcore about it than normal. But that was it. Because I think with the food delivery, it's contactless, so our drivers just show up and Joe: Drop the Jason: They're Joe: Cooler. Jason: At their doorstep Joe: Yeah. Jason: In and head out. Joe: Yeah. Jason: So, so in a way, it didn't really affect the delivery service at all. Joe: Got Jason: It was Joe: It. Jason: horrible for the restaurant, but that ended up being a boom for us personally. Joe: Yep, yep. Well, awesome! Man. I cannot tell you how grateful I am that you're here. Like I said, I was disappointed when I had a sort of postpone it last time, I just took on too much. It was one of those deals where I thought I could I forget how much time postproduction takes after I get off this thing to get it, Jason: Yeah. Joe: You know, ready for prime time. But I am super, super grateful that you said yes and you came on, I love your food and you're an amazing human being. The more I've done the research and get to know you now. And it sounds like your daughter is definitely waiting for you to put her to bed. So I'm glad, I could go on, I swear to God for another hour, there's so many questions about food and just things that you've done, but we'll do it another time for sure. Jason: Yeah, that'll be fun. I'd love to come back. Joe: I again, I can't thank you enough. It's an honor to have you on here. And I'd love to have you back again. Just for the audience sake and things like that, where's the best place to get in touch with you? And I'll put I'll do in the show notes, I'll list every, you know, your social media things but like in regards to, let's say, The Vegan Taste, what's the best way for people to reach out? Jason: Just go right to thevegantaste.com Joe: Okay, perfect. Jason: I mean, we have all the social media platforms, but it seems like, you know, Facebook changes what they want to show to people every few months and Instagram is the same way. You know, all these other ones. So just just go straight to thevegantaste.com Joe: Perfect. I'll put in all the other links, I'll take care of all of that. Again, thank you so much, I appreciate it, it's so, I look forward to actually meeting you live in person. Maybe we can sit around and jam one night. Jason: That would be awesome! Joe: I would love it. So. Jason: Cool. Joe: All right. Thank you so much, man. I appreciate it. Jason: Hey, thank you. Have a good night. Joe: You too!

The Joe Costello Show
Part 2 - A Conversation with Richard Maxwell

The Joe Costello Show

Play Episode Listen Later Jun 3, 2020 83:03


Richard Maxwell has created and runs one of the most unique and inspiring creative musical arts and sciences program in the nation. For me, it reminds me of the entry level sound recording program I went through in college, only Richard's students get into the creative process early because of what he had the guts to create. This program happens in an area of the school campus where they have their own section of rooms that is their facility. It's made up of a larger classroom if you will that doubles as a performance room plus they have 15 Pro Tools stations and Pro Tools running in their A and B recording studios. They learn how to be expressive without fear of judgement, they write songs, they mutually assist and critique each others work in a helpful, loving way and it's magical to see what happens on a daily basis. Richard is a loving, caring person who, by his own efforts and fortitude, has created a platform where he can give the students, his very best in regards to guidance, ideas and processes.If you love music, talking about music, the process of making music, what music looks like in today's world, interested in how music could be handled in schools or always wondered how a single person can make a huge change in our education system, these episodes split into Part 1 and Part 2, are for you! Enjoy, share and spread the musical love. ********** Richard Maxwell's Links: Richard's Website: https://sites.google.com/view/richardmaxwell CMAS Program: https://sites.google.com/view/arcadiacmas YouTube: https://www.youtube.com/user/RichardMaxwellMusic/videos Facebook: https://www.facebook.com/richard.maxwell.3538 Instagram: https://www.instagram.com/rchrdmxwll/ Twitter: https://twitter.com/rchrdmxwll LinkedIn: https://www.linkedin.com/in/richard-maxwell-235ab513/ https://youtu.be/wtg_TV3j_wA ********** Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass ********** If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.com/#thejoecostelloshow Subscribe, Rate & Review:I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to https://joecostelloglobal.com/#thejoecostelloshow Follow Joe: Twitter: https://twitter.com/jcostelloglobal Instagram: https://www.instagram.com/jcostelloglobal/ Facebook: https://www.facebook.com/jcostelloglobal/ YouTube: https://www.youtube.com/channel/UCUZsrJsf8-1dS6ddAa9Sr1Q?view_as=subscriber Transcript Part 1 – Richard Maxwell Interview: Richard: Basically on a whim. A weird situation develops. And I get a phone call from the then band teacher of all things at Arcadia. This is the late 90s, I'm giving away my age a little bit, I suppose, but we didn't know each other directly, but he had also gone to U of A at one point. And we've heard of each other and for a variety reasons, it just wasn't happy in Tucson. And he says, "Hey, I have a situation, would you be interested in moving up to teach here at Arcadia? [Richard] "Sure!" [He says] "You want to know what the gig is?" [Richard] "Not really" So we're three weeks into the school year at this point. So I come up and I spent a day with him at the school getting a sense for what it is and I walk away thinking, ok, this could be kind of cool. I want the orchestra too. Because that's where my love was, so, I, I meet the principal, great guy, Jim Lee. And he hires me and in the conversation I said, "Look, I'm so excited for it," it's like a first real, it's a big gig for me, it's a huge thing. And it's I'm going to, you know, bigger city, better music town, I'm thinking all these different things, but I tell him, like, "I know the orchestra teachers a couple years from retiring, I want writer first refusal." And he's, you know, whatever, but he, he agrees, thinking probably I'll forget and I can remember a long interview process, with parents and everybody else. Basically what happens is, is after my first year, a couple of things happened that kind of get things a little weird. So I'm still trying to do my own thing in the world of regular music but I don't know enough about the Phoenix music scene at the time I was trying to hold down this job, that is awesome but kind of beaten me up just because I'm new at it. So I make a whole bunch of changes, you know, he had a very, very big jazz program, which is awesome! I love jazz, but as a director, which I don't like the word director, if it makes me feel like a traffic cop, if I can still want to Greg's themes, but I didn't that wasn't where I wanted to be. So I morphed into more like wind ensembles and we ended some pretty heavy stuff. And there's a bit of a love hate with it, but you can see like the level of musicianship. And I'm like everybody who's gonna read notes, like we're not playing games with this, lot of wrote stuff, a lot of, you know, play it based on your, you know, improvising skills, which is fine and you need to do that as well. But I had a certain level standards and I was still pretty, pretty much full of my own brilliance at that point. I mean, let's not kid ourselves. Joe: And this Richard: And Joe: Was just band at this point. Richard: Was that Joe: Was this just Richard: This Joe: Band Richard: Is band Joe: At Richard: This Joe: This Richard: Is that Joe: Point? Richard: First Joe: Ok. Richard: Year. Joe: Ok. Richard: So the second year, two things happen. One is Jim, I guess, decides the principle that I must not have completely destroyed things. And he comes to me and says, "Look, we have this opportunity to expand your contract. We don't have a choir teacher anymore. Can you take over the choir?" I very foolishly said Joe: Well. Richard: "Yes!" It was bad idea, it  was a bad idea for the kids. It was bad idea for I mean, it was just bad. It was. It was. It was. It was well-intentioned... if had that opportunity now, because I do a lot of stuff with a lot of vocalists now, now I could do it and do it comfortably and make that experience significant in a way for those kids that they would be glad, I think that they had it, not then! Oh, my gosh, not even not, I mean, like, literally, I want you to imagine the worst possible experience for those students and then be grateful if they would have had even half of that level of a caliber of experience. I mean, it was, it was, it was horrible. But the other thing he asks me to do is take over the guitar class slash club. Because Joe: Interesting. Richard: He knows that I gig a little bad and I do the singer-songwriter thing a little bit and the studio stuff a little bit, he knows I have these other interests, but he doesn't really know to what extent. And you know, I'm not responsible basically anybody but myself in terms of my time at that point. I don't have any real you know, why not? And it's money and and it's a gig and I like the school and I like the people there and I like the community and da a da a da. So "Sure, why not?" So I take on this whole thing and basically what happens is, things start to build and eventually you wind up with, you know, I have two full symphony orchestras, winds, strings, percussion, all in the same rehearsal hall every day, all year round. We're still doing a marching band, while my version of marching band, which I have been justifiably criticized many times, I'm not a marching band guy, I'm a, I mean, I love the art of it. But I was I like, you know, one year we wrote our own show, the kids and you know, one year, you know, we were doing crazy, we were, it was just nuts, it was you know, they wanted to do rock shows the last two years. And I was kind of moving away from that because I you know, you just you know what you know and you know what you are Joe: Yep, Richard: Or what you're not. Joe: Yep. Richard: So I was like, okay, we'll do rock shows, but if we're going to do rock shows, you don't need a conductor, that's where literally we're wasting a ah resource, right? So, so we had a drum line, our drum line became our click track, screwed up everything in our scores because you didn't get a caption award and you didn't get points, they deducted points for not having a drum major. Joe: WOW! Richard: So it killed our scores. But musically, I think those kids benefited from that. Because that sense of internal clock and time and how you synchronize and what that does to intonation and every other musical element you can think of. I mean, all the things that you as a very seasoned studio player, let alone all your live work when you're sitting there in the control room, listening to playback on that and you're going, you know, because somebody can't...you know, Joe: Yeah, Richard: I know, you know, but Joe: Sometimes Richard: But Joe: It's me, Richard: well... Joe: So I do know. Richard: I doubt it. No, seriously. But my point is, is that, that, that was sort of where things started to change up a little bit. The guitar program is growing crazy. Some Joe: Still Richard: In Joe: To Richard: Some Joe: This Richard: Ways Joe: Day, Richard: Because it Joe: Are then. Richard: This is then Joe: Then Richard: This is Joe: Ok. Richard: Then. So we've got the orchestra building. We've got you know, there's Joe: A Richard: Now there's Joe: Wind Richard: Piano, Joe: Dancer. Richard: There's, you know, everything's building up and we've got songwriting I introduce because for me I've always been kind of a cool you play an instrument, what can you make with it. Well but it's the clarinet. I don't care, what can you make with it? You know, I don't, it doesn't matter to me. So guitar to me, you know, the first year or two was very much about just technique and then I got very much in to, I don't, I don't care about this technique. Let's write songs, let's make music. And it just so it seems kind of going and going, going and eventually it just, the circumstances are such, that there's basically too much to do for one person or even two people. My oldest son, who came in a minute ago, was born without going too far, but he was born 10 weeks early. And he's obviously, you saw he's fine. But at the time and I'm like, I need a change. I've been at Arcadia at that point for nine years. Joe: You Richard: There Joe: Basically Richard: Is a point. Joe: Have said yes to every single thing they've asked you to do. Richard: Well, Joe: Ok. Richard: But I've also enjoyed the challenge. I mean Joe: Right. Richard: I mean, the truth is, is I enjoy the challenge. I'll tell you, this is heading to something that you're probably going to go either think, WOW!, that's really cool or are you out of your mind or possibly both. But in any case, we, you know, there's an opportunity, that our principal has changed, and we have Anne-Marie Woolsey, Dr. Woolsey is there. And I start talking about this idea. And the idea is why, I'm starting to really and maybe it's just because of my own state of mind, but we're doing all these things with, you know, we have what we call the songwriters and we have the more traditional ensembles, it's not CMAS yet, but it's in its early stages of existing. And I'm actually still, I have I have a couple of now what I would say close friends that are graduates from that time who are incredibly supportive people you might even talk to, you just like, like I'm like, so I'll just, local guys like Thomas Brennaman and Alex Fry and Zach Tonkin and there's a ton of them, there's a ton, Ed Bakerman, Addie. She's still gigging all the time all over the country, she's brilliant. I mean, there's, there's, there's a ton of these people, but Joe: And Richard: They're Joe: This Richard: On one Joe: Is late, Richard: Side of. Joe: This is late. Richard: This is this is still within those nine years. Joe: Right. So this would be since you started there. Richard: This is like 08, 07, 08 kind Joe: Right. Richard: Of thing. Joe: Right. OK. Richard: And I am starting to get and it's just kind of I think it's a culmination of things. Most music teachers at a school are, you know, the average is less than five years, I'm at nine, which isn't like good or bad, it just kind of is what it is. But I'm also really struggling. I realize now in retrospect with this dual musical experience, because you know, this is at a time where these devices are starting to come of age, streaming is starting to become a thing and on and on. And you, I just, other people have phrased it so much better than I have but just this idea that the kids, it's done in their rehearsal and they explore all this music, but then as soon as the rehearsals over, they're going home and what are they listening to? Everything but what they're rehearsing. Joe: Right. Richard: And I understand the argument of well, but that's why you need to have those ensembles and do, and I don't think that's necessarily wrong. But fundamentally, there's something missing, if you are, if you, if the real world has one opportunity and the educational world has one that is completely diametrically opposed to that. And we're talking about something that ultimately comes down to a cultural element, a tell your story, if you will, element, which is what I think all art really comes down to. And that's being effectively either ignored or dismissed or in many cases, I would say, mutated into something that basically makes somebody feel, makes a student feel like somehow their musical instincts are either, I don't know, at best immature. But, you know, you talk about a terrible amount of disenfranchisement and disenfranchisement, you're talking about a terrible amount of just not, they think, they feel like it's not legit, like they're not legitimate somehow, that's their choice, you Joe: Right. Richard: Know, or we don't do that here, kid, that kind of thing. Joe: There's a misalignment. Richard: Yeah, and Joe: It's Richard: It doesn't Joe: Just weird. Richard: Mean anything if you walk the logic through, it doesn't make any sense. And yet, it is still essentially perpetrated across the world and a lot of ways, and I just was like, got to do something, now I, you could argue I went too far to the extreme and I regret but, you know, for all the things we've accomplished and all the things that we've done and, you know, the program is basically now I said, okay, look, I've got all these songwriters, we've got this, this is what I've become kind of like an industry history class. We've got the guitar players. You know, we had the pianist. We've got, we, we have this contemporary thing happening anyway. So I went to the principal and I basically said, "Can I just walk away from the band and orchestra part?" It's become, you know, "It's just not me anymore the way we'd like it to be," the politics with the parents and everything else is getting sick, I was just tired Joe: Yes. Richard: Of it. I don't do well with it anyway. That's why, I just, I'm just, I'm very confrontation adverse. It's just, just naturally. And then you get into like high school band and orchestra parent land, with all due respect and it just wasn't, it wasn't gonna be, I wasn't gonna last long without losing my mind. Plus again, Grayson, ten weeks early. So I held on for one more year and I remember very clearly that last concert we did, you know, the good, the farewell symphony, the Haydn at the, as the last piece. And I remember choreographing it and nobody knew about what I was doing, except for my very good friend, who's still my good friend, the theater teacher who was running the lights for us in the on the stage and the head of the school security who's still there, Jeri Eshelman. I told the two of them what I was gonna do, and that was it. Go through the whole concert, do the whole senior recognition thing, the whole thank you's and all of it and then we do, traditionally, we would do one last song. We do the one last song which the farewell symphony, which I'm not sure if you're familiar with, but literally the way Haydn wrote it was that as it's ending, the players get up and leave the stage until eventually Joe: Right. Richard: Not Joe: Right. Richard: Even the conductor is there and it's just I believe it's just the single first violinist if I remember right. So we did that and I added one element. I walked off the stage and very quietly walked out the stage door to my car and went home. Joe: Of course you did. Richard: I just left. It's kind of rude, I suppose. Joe: It's awesome! Richard: But, but, but it is. Joe: And you're still there Richard: Yes. Joe: And you're still employed by that school. Richard: I am, I am, but doing something very different. And it has been, I mean, you know, we could have an entire series of podcasts on the politics of what has gone on. Joe: Oh, Richard: It has Joe: I Richard: Been. Joe: Can Richard: It's Joe: Only imagine. Richard: It's been. I used to get really angry about it. I still am frustrated by it at times. But now I'm more like, I don't, I'm almost more entertained. Because there are too many people now that like yourself who are seasoned industry professionals or their education professionals, who see the concept of what what we've built there and very specifically say that concept is important and vital and necessary so that, you know, you get enough music education, professors and universities and like I said, actual, real in the industry, people saying this is what should happen. And all the arguments become a little bit silly after a while. So now Joe: Yup. Richard: I'm just kind of like, really? You want to line up, you know, your cynical view against of, forget me, you're going to tell all these other people they're wrong!? Joe: Yeah. Richard: WOW! Even in my most arrogant, I wasn't going to do that. So it is what it is. But, you know, it's, it's, it's, it has evolved a lot. I mean, you know, if you look at the setup and even now, I mean, obviously with the closure, Joe: But Richard: Things are different. Joe: Wait, Richard: But. Joe: Before you get past this, so you, you, you state you said you were gonna do one more year. Richard: This is the end of that year. Joe: Ok. Richard: So this is the end of that year. So I basically, you know, and, you know, I made several mistakes, big ones! One of them was, the then head of the district's fine arts and I've talked to Anne Marie since about this and she agrees that she should never have agreed to this. Basically said, ok, we'll support you doing this, but you have to stay away from your old program because you're still going to be on campus and the new teacher needs the opportunity, because, because that kind of community of students is it's a, it's a very family kind of thing. Well, what happened is it became very confrontational between the two programs. My new program is the new "IT." The new teacher is struggling for a lot of different reasons. Put in a situation that she cannot possibly succeed in. You know, imagine being a young teacher and they give you a class of band, a class of orchestra that they've separated now, you have a percussion ensemble, you have a piano class, I think she had a computer class, I mean, it was literally like we're giving you all of the leftovers. It was Joe: Yes. Richard: It was a terrible gig. Nobody is going to do well in that situation under any circumstances, period. It's just. Joe: Right. Richard: A nightmare scenario. But what winds up happening is it creates a lot of friction and a lot of confrontation. And I again, I am so committed to, we have to prove that this thing should exist because I like in my gut, I know it should but I don't have proof of concept yet. There's nobody doing it at a high school, the way I wanted to do it, you know, there was, there were programs that I had found it, then maybe, maybe this is more my inability at the time to search Google effectively. But, you know, you had people doing production. Absolutely! You had the technical side of it and you had people having like composition classes or songwriting classes, even rock band classes or whatever they call them. But I wasn't finding anybody that was looking at it in a more homogenous way, in a more holistic way of it needs to all be, it's all of it, you know. And so I was kind of starting from scratch. I took a lot of college curriculum. I talked to a lot of people that were in the industry and just kind of threw things against the wall to see what would stick. But in those early years, as I'm getting, you know, all these criticisms and destroying this, you know, you're killing the orig...you know, the traditional program, all these things that are provably false and everything else. But that reputation did build for quite a while and I I was like constantly biting my tongue because, again, you know, if I could avoid the confrontation and put it off for Joe: Yeah, Richard: A little while, I'd rather do that bad habit. Don't you know, Joe: Yeah. Richard: Kids don't do that if you're listening, don't do that! But I know, so I just, I really I struggle with that a lot. But we kept building things and one of the things that I saw, a couple of things that I've discovered in all of this, which is that, kind of like what I was saying earlier about the shows we did even during the COVID closure, that are very imperfect. If you, if you were to sit down and look at those shows that we did just these last several weeks, you could be arguably disappointed in a lot of there's, there's glitches and sound and some other things like but this is not what, don't you deal with audio and all this other stuff? But that wasn't really the point. And so we would have we have shows and in some shows there's people that are like, wow, you put that act onstage? Really? I'm like, yeah, is that kid now has been on stage and now we can move from there. Process has to matter more. I get in the professional world why it can't on some level but at the same time, boy, I wish it could. I'm Joe: Yeah, Richard: Sure you do too. And a Joe: Yeah. Richard: Lot of ways just knowing you, you know, I mean, you don't, you get duplication and you get repeats and you get even a certain level of perfection, but you don't get real originality unless you're willing to deal with process over product. I mean, you have to really embrace it. You know, Little Richard just died, as you know and it really, I mean, aside from I mean, is there anybody he did not influence in some way? I mean, literally, the man's legacy is endless. The other thing that kind of is horrible to say, but we're getting to a point where we are going to be out of truly original musicians, truly innovative people, there are very few people and I'm not even saying it's an age thing, it's just who's out there doing things that you go, WOW!, I've never heard that before in that context. And they're just, you know, there's a lot people perfecting it. There's a lot of people doing incredibly viable things and wonderful things musically. But to truly be innovative like that. But anyway, I'm so sorry I get Joe: No Richard: On tangents. I'm Joe: Better. Richard: So sorry Joe: It's okay. Richard: He I'm so, so, so this idea of, you know, process becomes really, really important and we're building it. And then. And what I was gonna say is, is that. Joe: But at this point, I'm trying to just make sure that both the viewers and listeners and I'm clear, though, that that you have this woman who is now responsible for these various things like band and orchestra and whatever else she was given that you have now been given the license, you know, the stamp of approval by the principal or Richard: And the district. Joe: The Richard: Yeah, Joe: District Richard: Yeah. Joe: To create this program that involves what at that time? Richard: Ok. So I you know, I'm sorry. Thank you for pulling back. So there actually is another player, analyst named Mitch Simmons, who needs to be mentioned. He is the director of the district's what's called Career and Technical Education Department at the time. And Mitch is brilliant and wonderful and will self-described himself as not having a musical bone in his body. But when I made this absurd proposal to him and I gave him like a 20 page document, like I had a curriculum and I had standards that I had adapted and which later wound up becoming basically the first draft that the state used and is still using for a lot of, a lot of things. Thankfully, they've had other people come in and perfect them and not just be stuck with my mediocrity, but. But Mitch, Mitch looked at and he goes, we so need this, this is the bridge, we've been looking for the bridge. Arts and here's the thing, everybody looks at career technical education, they get so hung up on the t the technology part. That's, in my view, as I get a lot, I get on a lot trouble with actually CTE people. I get, I get in trouble with the arts people for one thing and then I get in trouble for CTE people with the other. The "T" is, is completely to me, is nearly, it needs to be like lower case and in the smallest font possible. It's the "C" it's the career part. Joe: Right. Richard: Where's the job? Mitch saw it even better, like I understood, like it was my idea. But he saw other things in it and he's like "You", he's like, "Oh, my gosh, we can get, kids could get jobs in these industries." I'm like, "Yeah, we could!" And he gave me, I was, it was a perfect storm. He gave me the flexibility to just screw it up and rework it and reiterate it and retry and my principal did the same thing. And coming back to these shows that we had done, I told you I knew I would loop around back to my tangent. One Joe: And Richard: Of the Joe: This Richard: Things Joe: Is still Richard: That I. Joe: 2009. Richard: We're Joe: Is Richard: Still Joe: This Richard: In 2009, Joe: Ok? Richard: But Joe: Ok. Richard: It relates to something that just happened in the last few weeks. When you have students go through a process where we start with essentially nothing and they go through a self derived process or a self adapted process at the very least and then at the end there's a thing. I don't care what that thing is, that is powerful and wonderful and awesome and so that when you have like we would have shows, we still sometimes have shows that are just like, oh, you got to be kidding me. Because underneath that, there's also the, you've got to be kidding me! Joe: Yeah. Richard: Like, I mean, it works in both directions because it's derived and, and one of the things that I've learned is, teachers and educators who live exclusively and vicariously through their students are doomed to get burned out, frustrated and every other negative you can possibly think of. And I, I am committed to that completely. I don't think you can be competitive and creative at the same time. I believe that is like one of my very big mantras. I think that, you have to be your own creative, like I have struggled a lot, like, like thank God for therapy a lot, with not feeling like I've been able to do my own creative stuff. And I've sort of over the last year and it's been a struggle, it's made this year very weird and very difficult in some ways to say, like wait, I need to find a way to have my own creative outlet because it's not healthy. Like, it just isn't healthy. And whether that creative outlet is me throwing a video up on YouTube or a song up on SoundCloud that four people listened to or four million people listened to is kind of not really the issue. But that, we go from nothing through the process that a thing exists. It's all, it all ties together in this weird Zen ying yang thing. But as we grow, you know, we start doing all kinds of live events. We are, you know, we start very cobbled together. The early parts of the program in the early versions of the program, I didn't let the kids record anything in the first year. It was all learn an instrument. Keeps Joe: Did you even Richard: Them. Joe: Have the equipment Richard: Oh, yeah. Joe: That early? Richard: I mean, it was it wasn't what we have now. Don't Joe: No. Richard: Get me Joe: But Richard: Wrong. Joe: But you went Richard: Yeah. Joe: In there and you said, I need this, this, this, this and this to make this happen. Richard: So we started they got me a bunch of iMacs and we got some interfaces and we got Pro Tools early on because I know we're gonna do it for real and I was very committed to the legitimacy. Overcommitted, possibly, that I allowed other things to suffer. That battle that I know, the politics of things that I allowed myself to fall into the traps of these circular logic arguments that now I would never allow myself to do but, you know. Joe: Guy. Richard: Past is behind us and what's been has been, you know, that is what it is, but. But we just kept evolving and it's still evolves and, you know, we've we've, we've gone so far, as you know, there were years, the marching band kind of fell into a state of disarray and almost non-existence for several years. We started playing all of the home games, kind of like mini Super Bowls. Literally wheeling stages out and putting together shows for that. We still do them once a year. The marching band is back and is now for the last several years, like wins every award on the planet, literally. And God love them for it. It's amazing! Not my, you know, but that wasn't me. And that needs to be ok. I have some people that are still mad at me about that too, but whatever I don't, you know. But we, you know, we can go into studios, we go into every couple of years now we've been going to Blackbird Studios in Nashville this is like, in Nashville. This is a multi-million dollar facility. The last time we were there in February, just before all the closure happened, we were, I mean this is how far the things have evolved, this is possibly the greatest, I've gotten a lot of big compliments and they all mean a lot to me. We befriended Steve Marcantonio because he's the uncle of one of my former students. I don't know if you know, forgive the namedrop but Steve, I mean, like he got his start on John Lennon's last album. What, I mean, so you mean he's, the man knows his stuff! He's a genius and the nicest guy in the world. Like, like unbelievably giving of his time. He has come in and produced our sessions at or engineered our sessions at Blackbird and supervised them while we're there. So we're like one of the greatest recording spaces on the planet with one of the most gifted engineers to ever live and it's a bunch of high school students and me. Joe: That's amazing. Richard: Yeah. Life, Joe: How many Richard: Eight life. Joe: How many go to that trip? Richard: We took like 25 or so, this time 30. Joe: And how do you how do they get chosen? Richard: They just decide they want to go. Joe: Ok. Richard: We make it through tax credit. I have, I'm not going to do the cookie dough thing. I'm just not going to. You know, Joe: Yeah. Richard: Hey, I just I can't do it, but and it's expensive and it sucks and we try to scholarship where we can, Joe: Yeah. Richard: You know, we don't take nearly as many. But, but it's an opportunity. We do other things, we go to the conservatory recording arts and sciences. I'm looking at doing more. There's a lot of great stuff here in Phoenix for that opportunity Joe: Right. Richard: Or similar opportunities. But there is something cool about it, I mean, Nashville is Nashville. Let's not kid ourselves. It's just it's a great if Joe: Get. Richard: I could move anywhere and know I could still make a living, Joe: Yeah. Richard: I'd totally I'd totally being Nashville. I Joe: Yeah. Richard: Just. What a great place! But what you say is, is that this is this, this, this is unbelievable to me. So Steve walks in and he's giving the students an orientation and he's talking about all this gear and he gets about two minutes into it and then he looks at me and then he looks at them and he literally goes, "What? I'm wasting our time, your kids already know all this!" Because he's like talking Joe: Nice. Richard: About how, like the studios are set up and everything else. Ok, so that's not even the biggest compliment. We start getting everything set up and the boards placed and you know, Blackbird's provided interns and these are very highly skilled professionals and we've got Steve, ok? I have a couple of my more experienced students, one in particular who's she's like, I don't even think she's five feet tall, she's a graduating senior. She's just really quiet, sweet little girl, Emma. And she's up at the board and he just walks away. Like, not like I'm quitting, he walks away and he leans over to me and goes, "You don't need me." Joe: What's so funny? Richard: He goes, "She's got this!", he's like, "I'm going to just sit here and listen and I'll give some suggestions." And literally, that's how we spent an entire day recording, I don't know, 9 or 10 tracks or whatever it was of the students, some of them are great, some of them not so much, it doesn't really matter. But, you know, he, and it wasn't because he was lazy. Steve is like the least, you know, like between the two of you, it would be a really tough pick of who works harder. I mean, he wasn't just walking away because he didn't feel like helping, he was just like I'm going to give them the chance at this and this is a like it's like an 18, 20 million dollar place. This was not like, you know, these weren't inexpensive facilities with inexpensive gear. This was, you know, potentially massive, you know, liability and he's like "They have, they have this, just just do what you're doing." Joe: And I assume Emma is running a Pro Tools session? Richard: Oh, yeah, yeah, Joe: Right! Richard: A but, but mostly running the board, you know, on the side. I think it was an API. Joe: Ok, Richard: Something worth like more than my house, like Joe: Sure. Richard: 10 times over Joe: Yeah. Richard: In a room, you know, I think at one point Queen had recorded in the same room. I mean, this is not you know, Joe: Yeah. Richard: And who knows who else. I mean, this is unbelievable! I mean, Joe: Right. Richard: It was, but that to me, that was one of those moments where I was like, ok, the ups and downs of everything that may have gone on, clearly, again, at least as terms in terms of the concept, wWe're doing ok. You know, Joe: Yeah. Richard: If Steve Steve Marcantonio feels like he can let my students run a session on that equipment...ok Joe: Yeah, Richard: I'm going to take that for the win. I just Joe: Sure. Richard: I just don't think Joe: So the program Richard: I. Joe: At this point still in 2009 involves what different aspects? And how do kids get into it or not be in it? Richard: Ok, so I and I still, as much as I can have a, if you like anything at all about music in any capacity, I want you in here. Joe: Ok. Richard: If you're hard to work with, this is probably not going to go well. If you're, if you're lazy, that's going to be ok, as long as you're not blaming me for your laziness. If you own up to it, we'll find a way to make it work. I know that there's a lot of people will say, you know what? "You got to drive the kids, you got to drive the kids." And you know what? That's probably true. I just can't do it because my brain keeps going back to like I get, I get, I get hung up on the I, "You don't want to pick up that instrument and play it!?" I don't, what? what? "Why would you not want to pick up that instrument and play it!?" It literally, doesn't, I can't, I can't sort it, I wish I could, I know that maybe that's a cop out. But basically, at this point, everybody comes in and it's a year of intense, got to play instruments, got to play instruments, got to play instruments. There's a lot of benefits to that. But I start running into a philosophical problem, which maybe I needed to get over myself. But, you know, at the time, the original name of the program was not Creative Musical Arts and Sciences, it was Contemporary Music and Sound. The word contemporary has a lot of baggage, I soon found out. And I also felt like it wasn't really accurate. I wanted the word creative. Joe: Super important. Richard: It needed, it just needed to be there. So there you have the name change. And what, what starts to happen over the preceding years and you know, we get better at producing more material. We are proving ourselves more and more so we can get a hold of more equipment and things of that nature. And all the while, in the back of my head, is this creative name thing happens. You start referring to like what I wanted to be, which is a truly open, creative platform. And so what happens is I start to look at that first year and I go, well, wait a minute, I'm setting up roadblocks for these kids, well-intentioned roadblocks. And I think from a pedagogy standpoint, the idea of you have to rock or a rock...you to walk before you can run. I get it! I understand it! You know, you got to start with, you know, plan like, you know, your 50's kind of surf beats before you're gonna go play Tom Sawyer kind of stuff or whatever, you know, you're not you know, you're not playing a Purdie shuffle right out of the gate. You know, it's I mean, there's you know, and I understand that. But, and maybe this is a, a nod to the reality of the world that students currently live in and maybe maybe it's wrong of me to to say, well, it's ok but there is a, if you're going to be truly open and creative, then you need to be open and creative. Richard: And I started to develop this process where I would look at the program and anything we would want to do or anything the kid would propose and I would say, "Does this move their process forward or not?" And I started to look at the first year and that massive intensity on learning to play an instrument. And I looked at the well, ok, it could be argued that the long term benefits outweigh the short term frustrations but I'm loosing kids. And I'm also, I realize the thing that made me stop having just a year long exploration, if you will, of how to play an instrument, was I realized that the very thing that I was railing against in the traditional music world that, you know, you got to stop telling kids that just because they want to, like the turntables thing, is somehow illegitimate musically. I realize that in my own way I was doing that. And there are so many graduates now that I have been so tempted to try to find on social media and be like, hey, you probably don't remember me, that jerk music teacher you had for a year or two in high school but I wanted to tell you, I was wrong about this part of the approach. And I'm constantly looking like, to me, this is cathartic, like I will confess that in a heartbeat. Whereas other people what are you doing? What do you know? But I'm I can't, I can't, I have a hard... Richard: I look at the program right now. I look at the program in terms of this closure and I even thought, we were doing a workshop yesterday with a bunch of students on some stuff and we got on the topic of it and just their frustrations and the whole thing and I said, honestly, I'm not looking for false compliments here, I said "I would give myself a C plus for how I've executed things as the instructor, as the facilitator." And I'm pretty good at this stuff, I actually have been consulting for years with other people on how to move their game forward and you know, weird situations or whatever. And I'd only give myself a C plus. And, you know, that's really made me think. But in any case, it all comes back to this open creative platform idea. And so what I realized is that when I tell a kid, look, you're going to spend a year really getting good at guitar so that in year two we can start writing and recording. What I've actually said to them is your ideas aren't worthy yet. And the more I thought about it, the more I got really upset with myself. And I just basically decided that whatever happens, happens but I'm not going to do that anymore. And if a kid comes in and all they can do is grab a single drumstick and whack a snare drum in time with their friend. Go back to that Marcus Mumford kick drum idea Joe: Yeah, Richard: A little Joe: Yeah. Richard: Bit, if that's all they can do? We're going to legitimize that because and here's what I found. It's like a slingshot a little bit. Yeah, they seem like they're almost moving backwards in their musical skill set because you're not pushing that but what seems to happen is when you legitimize it a couple of things happened, including they get self-motivated. Because that kid that starts just on that snare drum hitting out time, if they stick with that in the context of I'm making music with my friend, they will get it in time, and then once that's in time, they're going to go, "What happens if I pick up another drumstick and now I've got one in each hand?" And now we have, you know, doubled the rhythmic possibilities. But they're looking at it through the perspective of what can I do with it musically, not all about technique. Technique can't be the "T" for technique can't be important, just like the "T" for technology can't be important. It just can't! The creativity, the career, the career part has to be the over shouting or over overarching thing and it has to be overshadowing everything else on, as far as I'm concerned, a multi expo, an exponential level. It just has to be! So I've continued to move into that. So now the technique is covered differently. I have what I call the, I just, I call it the GAC should be the GEC. It's G, E minor and C and the premise is you're going to learn G, E minor and C or you're going to learn how to keep a very basic beat to somebody else who's learning G, E, minor and C and we're going to have you make a piece of music with those three really basic chords that are all white keys on a piano, that you can play with one finger on a couple of strings on a uke or a bass or a guitar, or you're gonna you know, you're gonna sing unison tones if you're a vocalist or match it with that clarinet or I don't care, it's not about that. It's about seeing the musical connections with somebody else. You are going to collab, that's the other thing, the collaboration part. I can keep bringing on all these "C" words, but it really. They'll become, the self motivation will make up for it. The other thing, too, is, you know, if I want to play Beethoven, I need a certain amount of technique or I'm not getting Beethoven, I acknowledge that, that's important. There is an art to that, that cannot be overstated. But I don't require Beethoven to express myself. And I think a lot of people get confused about that. And I think a lot of people don't understand the importance of it. I think. well, heck, Beethoven himself changed things so radically because he himself believed that he should express himself the way he felt he should express. I mean, I mean like literally by ironically moving away from Beethoven, where if we do it, I think in this context, we're actually paying an odd sort of homage to him Joe: All right. What he believed Richard: Philosophically Joe: In. Richard: in terms of music. And it's just evolved from there. I would rather see a kid get up and play something that's theirs, that is imperfect. But that is them. Then have a kid get up there and feel like, well, it doesn't sound like it's supposed to because that's not what the recording sounded like. Who cares? That's not what it's for. I found over the course, you know, as it's as this is as grown. It was interesting over that, we're finished out. The school year ends next week. But I've been having weekly scheduled workshops that I have kids come into when they can. I should have probably and this is part of my C plus or C minus that I'd give myself. I made them essentially optional as long as they kept up with the asynchronous assignments and stuff. But what I found happened was, is a lot of kids are showing up to these things, just for the sense of showing up to something. You know, we're having conversations that are Joe: To Richard: Rooted Joe: See their Richard: In Joe: Friends Richard: Music. Joe: And. Richard: Yeah, but, but, but, but that's, that's OK. Like, like that's turning into good things. Or I'll go out and frequently what happens is we'll have our session, we'll be talking, we'll come to the end of it, I'll have to go on to something else with another group or whatever and they'll be saying, "Hey, can you hit me up real quick? You know, open up another Zoom?" Or they'll do it on Dischord or whatever and, you know, let's play around some ideas or stuff. So it's, they're still making connections and if they use the workshops for that, do I really have to care that they didn't present the project, you know, in the same circumstance? They submitted the project, will take a look at it or we'll do it in a different workshop. It's ok. I think things like that have to matter more. What I was gonna say and I know, oh, my gosh, I'm gonna hit your two and a half hour mark. I'm so sorry! Joe: So Richard: I mean, I'm, I'm embarrassed. Joe: It's okay...No not at all Richard: I do have to, but I do have to share one other part of the program that has evolved since just last year. And I'm glad you're sitting down for this, because when I describe it to you, it's almost comically funny, but I mean to preface it by telling you that I am now so committed to this because I see the open creative platform element, in such a different way now, that I am, I'm well into my career as an educator. I'm not that old, but I'm old enough. This has given me so much of an interest in what could the next phase of this CMAS program be that I can't even begin to tell you. I would love to bring back the more traditional ensembles. I know, I actually have derived a plan. I know it would work. Politics won't let me do that.  Someday I still have hope but this is different. Out of the blue last spring, I get asked and I still don't fully understand why I got asked. I got asked to, of all things, pilot, no, not pilot. I got us the first started with teach at Arcadia, an engineering design class. Why are you giving me an engineering design class? Well, because you're technically qualified because of the CTE, the way the rules are written for CTE. And you like having the extra contract and this way you can keep the extra contract, because every I look at everything through the lens of my two little boys. That I will literally do I will braid your hair, Joe, for a six fig, for an extra contract. Richard: That's literally where my, that's I mean, I will totally do it. So but so I'm like, ok, sure, why? why not. Right? And I'm, I don't want to throw anybody under the bus, but to put it nicely, I'm promised a whole lot of resources and none of them, none of them come through. On a whim, I threw a thing like, the one thing that they said they were setting up for me, the people organizing were like, "Yeah, you don't have the engineering background to come to this conference for us to work with you, really sorry." The woman who was basically organizing it for this conference, not in my district, not at my school, actually still have yet to meet her. I would like to meet her. Jill was really kind. She's like, but I know of this other thing going on. I'm going to call you back in half an hour. She calls me back with these phone numbers. I went up on the phone with these people that are going to pilot for this previous school year, for the first time, they have a multi-million dollar grant through the National Science Foundation to revamp the entire concept of engineering in schools. Richard: It's headed up by and now I am flexing on their behalf. ASU, which is one of the large...I think it's the largest engineering school in the world, believe it or not, Vanderbilt, University of Maryland, Virginia Tech and I forget the fifth major university that is supervising this. And they, because the woman, Jill, from this other thing, this small little training session that they won't let me go to because I don't have the degree in engineering. Got all this experience in audio engineering but none of that, and that's fine. They are all excited and I think they may all be drunk. I don't know what's going on. So literally, they're like, no, no, no, no, we, I'm like, I'm like, what are you talking about? They're like, okay, here's your, [Them]"Can you come to Maryland for a week over the summer?" [Richard] "I guess" [Then] "We'll pay for it, don't worry, we'll pay for everything. Just can you come to the University of Maryland, we're gonna do a training session." [Richard] "Yeah, OK." [Them] "It starts Sunday." This is like a Tuesday. They're like [Them] "If you can get on a plane, we want you here for a week to do this thing. We just got to make sure we, we just got dot some "i's" and cross some "t's" or whatever. Richard: So we get to Friday night and I get this call from, you know, one of their head lead, lead investigators on this whole thing and he goes, [Them]"Ok, yeah, yeah, we need you here!" I'm like, [Richard] "Are you sure? [Them] "No, no, no, we've been looking at your website and we've been looking at you, you're the perfect person for this!" And I'm like [Richard] "I'm a musician, maybe, I sure as hell I'm not an engineer, and they're like, [Them] "No, you don't understand." OK, they're like [Them] "Just come to Maryland." So I literally, I booked a flight on a Friday, I get on a plane Sunday morning and Sunday night I'm at a dinner where I am so not the smartest person in the room, it's not even funny, Joe. I mean, it's, and by the end of dinner, I realized what they're trying to do and what they've basically decide, what they've basically come up with and they've done all this research prior to it over the last several years, that the concept of what people think engineering is, is completely off. I say the word engineering not to be funny and flip the script here a little bit on you, what are the first three words when I say engineering that you think of? Joe: Well, I always think when you and I are talking and you say engineering, I'm thinking just sound engineering. That's like so when you keep, you keep talk, you keep talking about engineering, I'm like, what does he know about engineer, like Richard: Ok, Joe: Sound engineering? Richard: Ok, Joe: But Richard: So remove Joe: There's electrical Richard: The sound. Joe: Engineering, there's, I don't know, mechanical engineer, I don't know. There's whatever. Richard: Right. But are you going to minus the sound engineering part, you're not going to time much of any of that to music in any fashion right? And the thing of it is, where they did all this research is that apparently most people don't tie it to creativity either. And they don't tie it to solving problems for people. And they don't tie it to something that I've latched on to that, there's a story behind every single thing that has to get designed or built or created or engineered, because otherwise, how would you come up with the need? And some of these stories are incredibly impactful. So their whole premise is that they wanted to pilot this year, there were nine of us across the country, most of them on the East Coast and the Midwest. I was the only, one part of the reason they got excited, I think was also because I was from Arizona and Arizona didn't have anybody in it. And the University of Arizona was one of the biggest contributors to this whole thing excuse me, not University of Arizona, Arizona state. But in any case, but what started to happen, we start having these conversations. And by the end of dinner, we are talking about what they call the engineering design process and what I have for years been calling and have gotten, I guess you could say, known for of the creative process. And what we start to realize are, well, they're, they're kind of like halfway laughing at me, halfway laughing with me because they understood this already. This is why they got so excited for me, I know and they've told me this since. Because when you take the two processes, engineering, design and creative process and you put them next to each other when you keep the definitions the same, but change the jargon on a few terms, they're not just similar, they're actually identical in a really freaky way. So all of a sudden, last fall, I'm in the summer and fall, I'm like, oh my gosh! Well, now and you have to remember all these years of building this thing, then that whole epiphany about open creative platform and what that needs to mean. And now I just feel like I'm on a mission with this. So I go through this whole year and it's, it's very much kind of an engineering design process, although interestingly, I'm still getting and I still am every year getting the music education interns from ASU, nearly every music I get, I don't know I don't get every one of their music education majors, but I get almost all of them. At some point they spend a semester with me, for better or worse. They're coming in and they're watching this class, too and it's getting really interesting to see. And we're talking about parallels and process and parallels and possibilities everything else. And as we're going through this and I'm having meetings with these engineering folks from all over the country and we're talking about all the connections. And I'm like, I have an idea for year two. And I'm like, so I've built this industry based music program that has proven itself, I'm not saying we've got it perfected, but you know, I have a, I do at least have a reasonable track record for flying a plane while it's being built. Richard: And for upping the possibilities of where we can push things in terms of opportunities for kids. And I've been successful,I mean, it's not like, you know, I think that, you know, on balance, the risk of sounding a little egotistical, it's not unreasonable to say at least "Give me a shot to explore the idea." Right? So I started looking some like I'm looking at the standards for this new program I've been piloting for a year and looking at the state education standards. I'm looking at my music standards and my own program standards. And I'm going, oh, my gosh, we could take all of this stuff, you know, speaking of mixers, could have a kid build a mixer. Why not? They're going to have to, I mean, there's electrical engineering in that, we're getting into mechanical engineering because of what a mixture does in terms of its functions, in terms of controlling the sound of space in a room. There's all kinds of engineering already that and I was starring in little projects throughout the year. You know, had them designing windows. We'd need a window between our control room and our life studio space. These are the champagne first world problems that we have in CMAS. But I had the engineering students designing how that would look. We were talking, you know, the lighting on the soundstage and how can we build a different mechanism, door thresholds. I mean, we were already starting to do some of these stuff, at least as concepts and on all these different things. And I'm like, there's so many things. So I called the head of the State Joe: Wait, Richard: Department. Joe: Wait. Please Richard: I'm sorry. Joe: Tell me please tell me you're addressing the the buzz that can potentially come through the console from the lights Richard: Oh, absolutely. No, Joe: And Richard: We're talking about the electrical Joe: Please, Richard: Interference. Joe: Please tell me you're you're talking about the the awful sound of the air conditioner when it comes on while you're in the middle of Richard: Absolutely, Joe: All those all those Richard: All Joe: Things Richard: Those Joe: We Richard: Different Joe: Struggle. Richard: Things. Joe: That's right. Richard: You know, right now above my head, there's a fan because we live in Arizona and this is a house that I've been very lucky enough to be not to convert to a nice home studio, but it's still a house not built as a studio from scratch, you know. And we're talking about things of that nature, you know, how do you deal with isolation when you don't have isolation? I mean, you name it, we're, we're dealing with all this kinds and it's endless and this is my point. So I'm, I'm, I'm, I have this idea my, my district, God love them, doesn't quite see it. But the people who run the pilot with the National Science Foundation, they're looking at, they're going, "You're basically just talking about changing up the projects, not really changing up the standards of the curriculum goals." And I'm like, "Exactly!" Because it's the same thing, the prob...I mean, it's just the same thing. So I call the state, the head of the State Dept. of Ed, who I get along with to be fair. And I'm just like, "I just want to run this by you so that if anybody comes back and says you can't or shouldn't." And she hears that and she's like, "That's just I said, I already wanted to take your classes and now I now, I think I'm going to like, I'm going to come take your class!" Like she's all over it, but she's giving me ideas. So now, just to give you a sense of where this is headed, she goes, "OK, what about this?" I looked like she was even worse than I was. She's like, "What if you had the kids simulate like they're touring, like they're, they're a production company for a tour and they have to get the band from, let's say, LaGuardia Joe: That's awesome. Richard: Airport Joe: Yeah. Richard: Over to London and they got a design like, how are they going to put the gear on the plane? And they've got to calculate now, like, how much tonnage can they actually take and what are they gonna have to buy or rent over there versus what can they take it? How are they gonna get all these other things calculating like the air velocity and how long it will? Well, I'm like, we are so open like that, I mean, like the creative options are there, the industry options are there. And if you had told look, if you had told me years ago that, first of all, I'd be making, you know, my day job would be an education and I would enjoy that, I would think you were nuts! If you told me that I would be developing a pilot for an engineering program that somehow tied in the music industry legitimately and I'm not just like phoning it in and I'm like passionately committed to it. I would have had you locked up somewhere for being certifiable. But, but, you know, back to the original thing and I know that sounds funny, but this all still comes back to those key concepts to me, and that's why I'm excited about it. To me, what is the, what does the art need? Well, the art needs engineers. The art needs musicians. The art needs producers. The art needs...and I'm not just talking about sound engineers. They are important too. The art needs marketing. We've actually had and you've mentioned we've brought in a marketing track a little bit into, you know, what we do with the program. Anything that's industry based, the career part, you know, if it's career based, if it's creative, if it's collaborative. We should be able to do it, and if we can't, what I have learned is that's not because we can't do it, it's because we haven't figured out how to do it yet. And so I'm really big on any silos or any walls that block creative process. I'm knocking them down, you know, and I'm going to try piss off some people doing it. This engineering thing, there are some people that aren't thrilled about it and I'm gonna have to work through that at some point with them, just like there are people who aren't happy that the program exists. You know, on the music education side of it. Joe: That, to me, is just, blows my mind because and Richard: Because Joe: I Richard: Your career, Joe: Don't get it. Richard: But that's because you're career oriented. To you, you love the art but you also know what's necessary to pay the bills. Joe: Yeah, but it's just, it's a tool set that is invaluable because you're, you're going to run into situations where you're gonna be like, I'm so glad I was a part of that, because I can take even that one little piece of it and it's going to help me get through this moment. I mean, to be able to be a musician but at the same time, understand the process of recording, of acoustics, of, you know, so many other things. It's, I don't know. I'm blown away to even hear that. But that's. Richard: I, I, I hate to say it, but it's true. I mean. But like I said, part of me now looks at that and thinks it's just kind of funny almost. And not to, I don't I'm not wish, I'd like, I don't want the confrontation. But I mean, like the people that are going to say no to this, are going to go on record and saying those five major engineering institutions. You know, the National Science Foundation is wrong, Joe: Yeah. Richard: That that's not a real engineer. The state, the Department of Ed for the state, which is funny enough, almost like the smallest bat to swing in all of this, and that's a huge bat to swing. So I'm just kind of like, I'm just going to keep moving forward. It's good for the kids, the good you know, my site administration think they've, they don't get it, but they like it and they're kind of like, we're just going to stay out of your way. I'm not really worried, you know. I mean, it'll be what it'll be. If I'm wrong, I'll go find some, I mean, I guess I'd go find somewhere else, but I just don't I know I'm not wrong, I hate to say it that way. That's such a horribly arrogant thing to say after I talk all of that about not being arrogant. But these people have convinced me people like you have convinced me, you know, like I said, the industry part of it. Why? You know, of course, we all want to be A Listers with valets and somebody plugs in all our gear for us and everything else. But at the same time, the best musicians know how their gear works. Joe: Yeah. Richard: They just do. And to some extent, want to go and make sure it's, like even if they have somebody who plugs it in for them, can you honestly tell me? Look, I know you've had gigs where some but, you know, you've got a drum tech or whatever. You don't go and check that kit before before you perform on it? Just Joe: Yeah, it just Richard: I mean, it's Joe: It's part of your being. Yeah. Richard: Exactly Joe: Yes. Yeah. Richard: It's absurd not to. So I think all of that put together. This is fascinating to me. Joe: And you've already proven the concept. So you would think that, I guess that would be the most frustrating part for me is that you've already proof of concept been done. It's how many years is the program now been in running. Richard: It's officially 12, I guess. Joe: Because of the CMAS program is 12 years, is it, is it, you're in the program from what? What year of high school. To. Richard: So well, and this is becoming an issue, too, it's always been open from freshmen through senior. Joe: Ok. And is it you're either in it or you're not? Or is there tracks that you can say, I'm interested in the sound recording track. But I'm not Richard: Ok, Joe: Interested Richard: So, Joe: In the songwriting Richard: Yeah. Joe: Tracks. Richard: As he was saying, so I'm going to take the this new engineering, in the traditional word of the word engineering, I'm going to set that aside, because that's where that's going to take some years to develop. Richard: So I'm going Joe: Right. Richard: To set that aside. But as far as the rest goes. Basically, it's what's your interest? I want to be in it, I want to I want to do sound engineering. I want to be a producer. I want to be on the stage as the performer. I want to be a beat maker. You name it and again, I, I, I want to promote the shows. I want to make the music videos, whatever. OK. Everybody's gonna go, there's like some core things, I need everybody to understand the basics of how this microphone works that I'm talking. I need the basics of why your headphones need to go into an interface and what that interface does. I need you to understand the stuff on the walls here, why it does what it does and why it's actually not gonna soundproof the roomm, it's only treating the roo

The Joe Costello Show
Part 1 - A Conversation with Richard Maxwell

The Joe Costello Show

Play Episode Listen Later May 27, 2020 76:35


Richard Maxwell has created and runs one of the most unique and inspiring creative musical arts and sciences program in the nation. For me, it reminds me of the entry level sound recording program I went through in college, only Richard's students get into the creative process early because of what he had the guts to create. This program happens in an area of the school campus where they have their own section of rooms that is their facility. It's made up of a larger classroom if you will that doubles as a performance room plus they have 15 Pro Tools stations and Pro Tools running in their A and B recording studios. They learn how to be expressive without fear of judgement, they write songs, they mutually assist and critique each others work in a helpful, loving way and it's magical to see what happens on a daily basis. Richard is a loving, caring person who, by his own efforts and fortitude, has created a platform where he can give the students, his very best in regards to guidance, ideas and processes.If you love music, talking about music, the process of making music, what music looks like in today's world, interested in how music could be handled in schools or always wondered how a single person can make a huge change in our education system, these episodes split into Part 1 and Part 2, are for you! Enjoy, share and spread the musical love. Richard Maxwell's Links: Richard's Website: https://sites.google.com/view/richardmaxwell CMAS Program: https://sites.google.com/view/arcadiacmas YouTube: https://www.youtube.com/user/RichardMaxwellMusic/videos Facebook: https://www.facebook.com/richard.maxwell.3538 Instagram: https://www.instagram.com/rchrdmxwll/ Twitter: https://twitter.com/rchrdmxwll LinkedIn: https://www.linkedin.com/in/richard-maxwell-235ab513/ https://youtu.be/KPMuQNW9GL4 ********** Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass/ ********** If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.com/#thejoecostelloshow Subscribe, Rate & Review: I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world.For show notes and past guests, please visit: https://joecostelloglobal.com/#thejoecostelloshow Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to https://joecostelloglobal.com/#thejoecostelloshow Follow Joe: Twitter: https://twitter.com/jcostelloglobal Instagram: https://www.instagram.com/jcostelloglobal/ Facebook: https://www.facebook.com/jcostelloglobal/ YouTube: https://www.youtube.com/channel/UCUZsrJsf8-1dS6ddAa9Sr1Q?view_as=subscriber Transcript Part 1 – Richard Maxwell Interview: Joe: Hey, Richard, great to have you, man. I'm glad you could come on the show. And as you know, I'm a huge fan and when I reached out, I figured, you know, while we're all in this COVID-19 thing, you aren't quite as busy as you usually are. So I'm glad Richard: Different Joe: I was able to Richard: And Joe: Get you in here. Richard: Different, busy? No, I'm I'm I am as I'm I'm as big of a fan of yours as you are always so kind to me as well. So Joe: I Richard: I think Joe: Appreciate Richard: A Joe: It. Richard: Mutual admiration society. But that's Joe: Awesome. Richard: A Joe: Yeah. Richard: That's a good thing. I'm flattered to be here. Joe: So I know just from my own personal experience with you that you are a multi instrumentalist because I know that you and I have a kinship with drums for sure. Richard: Yes, we do. Joe: But that's pretty much where my talent starts and stops. And then you go on to songwriting and playing guitar. And I'm sure you play the keys. Richard: Yeah, but. Joe: So. Richard: Yeah. But to be fair, your skill you have in, like your little finger in drums eclipses my entire rhythmic independence and abilities beyond belief. Joe: Now that you talk about being too kind, that's too kind. Right. Richard: Well, no. I mean, you are a masterful musician in your own right. Absolutely. Joe: Well, Richard: I am Joe: Thank you. Richard: A jack of all trades, master of none in some ways. But I think that I mean, for what it's worth, the multi instrumentalist thing is partially due to the control freak nature of my personality, I think. I've had time to analyze this over the years and some of that I'd like you know, I'd like to be able to sort of be like, yes, I love playing all these instruments and I do. But some of it is because somewhere along the line, it was hard to find people that I felt like I could say, hey, let's do it this way, you know, and some of that was because I was probably not probably I was really difficult to work with. I think myself. So I started just kind of trying to figure out ways to do it on my own. On the other hand, you do learn a lot when you explore other instruments. So there's a lot of instruments that I will pick up and play badly just for the sort of joy of seeing what it does. What's that? But I like that. I think I think I think musically, there's something about process for me. You know, I'm I'm at an age where, you know, there's a lot of "what ifs" in my life and in my career musically. So now, you know, it's interesting because, like, I think you're, you're in, you're at a point in your thirties where you like all of those things are sort of like, oh, man, if only I had. If only I had. And then, weirdly enough, you get to a point where you're like, wait a minute, I actually now this actually means like artistic freedom. Which has been fascinating for me, and I know we also want to talk about, you know, the program at the school and stuff, but it sort of relates to it like, like you start to realize, like sometimes that's actually more valuable. Like there's a ya know, there obviously we all want to be Springsteen or Taylor Swift or whoever is that, you know, that that A-list group. Of course. I mean, who wouldn't want Joe: Yeah. Richard: That lifestyle and and those opportunities and I think that anybody who says they don't, is probably not being entirely honest. On the other hand, you know, I remember, I've been biking through this COVID stuff as much as I can so I, I have one ear with a couple different podcasts that I listen to and when John Prine died, when and if you know who he was or Joe: Yeah, Richard: Not, is Joe: Absolutely. Richard: Really a brilliant songwriter. So there was this one podcast that was talking about him that had said something that just stuck with me. I was never a huge John Prine fan. I mean, I respected the guy, but they were saying how he looked at his career and at one point, the fact that he never had, like, that top 10 smash hit was a detriment. But then the music critic who, who's pretty, pretty brilliant guy, he goes, yeah, but on the other hand, when you talk to people about his entire catalog, everybody's like, yeah, but everything's brilliant and not having that hit, like, he wasn't identified by a particular sound or of particular time and he could always kind of do what he artistically wanted. I've become more fascinated by, by that than, than anything else. And I talk a lot about that with my students, you know, in their process to like, you know, that thing that you love is wonderful. But what's like, what's the step before and maybe what's the step after? And are you and frankly, are you allowed to even take it? You know, we get very critical of artists and what we see on TV and on, you know, any video and YouTube now and everything else, but sometimes I wonder, you know, man, it's that the pressure to sustain that, whatever that thing is for them. I don't know. I know it sounds weird to maybe people would say, oh, he's just copping out for whatever. I don't know if I'd want it at this point in my life. Joe: Yes Richard: You don't. I mean. Joe: That's funny because I've had the same conversation with myself. I totally in my heart and in my soul and to be truthful to myself, that's all I ever wanted. And then it took me until I don't think it was that long ago that I actually was able to look myself in the mirror and go, you just didn't put in the work. You didn't put in that extra thing to allow yourself to rise above to be noticed. It just, it didn't and I know that, you know, I just I just never went that last whatever it was Richard: Sure. Joe: To get Richard: But then, Joe: It done. Richard: On the other hand, you know that what's the cliche about, you know, one. One door opens and another and one closes and another opens. I mean, you just you know, I've come to realize that. That that. Things happen for a reason like, like, you know, along the lines of what you're talking about. So, like, I never took the risk to, like, go out to, I've been to L.A. enough times that I kind of have a love hate relationship with that city in some respect, I think, like everybody does. And places that nature in terms of the industry. But I never when I was in my early 20s, you know, I didn't do the stereotype I wanted to but the thing of it is, is that I know now, looking back, if I'm like you're saying, being truly honest with yourself, I'm truly honest with myself, I know for a fact that if I had gone out and done that, then, it wouldn't, I would have, I would have destroyed myself, probably like I wasn't going to hit it, like it wasn't going to happen then. It Joe: That's Richard: Just Joe: Interesting. Richard: It just wasn't I wasn't ready. Joe: The. Richard: I wasn't you know, I am a very slow process learner. It takes me a long time. I guess I'm not OK with it, you know? I mean, I'm sitting in this, you know, not to sound funny, but on the other hand, I'm this is everyday for me where I am right now. Like, Joe: Right. Richard: This is you know, I was I was in a position we were able to get a house built. And it's not like it's that fancy. And I'm not going to show you. I could show you what I'm looking at out my window. But like, if you saw like, there's just gear and stuff everywhere, it's a mess in the studio. But the fact that I'm able to sit in a studio every day, I have opportunities where I can make music on my own terms. You know, I'm thinking about everybody I grew up with and stuff like that, that's, that's not so bad. You know, I mean, I'm not like like taking a, like, sort of second place on that either, I mean, you know, I have I have friends, I have students who tour, former students who tour all over the world now. And I'm so proud of them. And it but it's brutal, I mean, it's just I mean, not even I'm not even talking about, like, the COVID stuff. I mean, just that lifestyle in general and trying to maintain that, I mean, it, it I did I did some of that, you know, like one hundred years ago. But, you know, it's I guess, I guess maybe I feel lucky we live in a time where I can feel fulfilled in some ways. Joe: Yeah, yeah, and it's so funny because I just the last guests that I had on it, we actually talked for two and a half hours and I won't do that to you. And it was I'm going to actually blame it on him because he's such a great storyteller. But I had Nate Morton on who is the drummer for The Voice, and him and I have become good friends over the past few years. And, you know, we went through his early childhood then, you know, going to engineering school, of all things, and quitting it because it was he knew it wasn't in his heart. Going to Berklee and then the connection that I'm making here was you talking about L.A., is he said that I knew I had to go where the gigs were of of the caliber that I wanted. I know I could have stayed in Boston, but I wanted to play on a hit TV show or I wanted to tour with the best of the best. And so he said, I just knew that that's the only move that I had with the two things that he he points out the two biggest things, decisions he's ever made in his life, even to this day was, number one, going to Berklee and number two, going to L.A. And without those combination of those two things, you wouldn't be where he is today. Richard: Sure, sure, Which Joe: So, Richard: Totally makes sense. Joe: Yeah. Richard: Which makes sense and for everybody, you know, and you've got to find your place in it. I don't know. Who knows? I mean, we're not that old. You never know. It's, I mean, to me, mean and the industry is different now. And there's, you know. I mean, because I work obviously I work with a lot of teenagers and a lot of 20 somethings and they're all and they're wonderful. But it is interesting how, like, you really can almost you can almost like feel the sort of like flash in the pan kind of vibe of whatever they're, they're currently into. Joe: Yeah. Richard: Which I don't see that as a criticism. I just mean, you know. Sometimes you, you know, I wonder, like, yhere are certain artists or certain bands and, you know, they used to get like, you know, the joke was like the oldies circuit kind of thing. But at the same time, you look at what those musicians are doing and there's something about the fact that they're that they're playing like, like I feel like that state, even with all the technology and I am a technology guy, let's not kid ourselves. Joe: Right. Richard: At the end of the day, it can't be about the technology. And I feel like there's something, you know, like. And I know they have all kinds of ups and downs with personnel and issues of personality. But like journey of all the, you know, sort of like stereotypical cliche kind of bands in a way. But it is interesting to me that decades on, when you see them play they're play like they're actually are playing Joe: All right. Richard: Late. And I think that's the right partially think that that's a big part of the reason I think that people go and see the Rolling Stones play. Because they're playing like like it's not tracks, it's not you don't you know, you don't go into their show going, well, they're going to produce it this way or produce it that way. And I don't think that has so much to do with age. I think that has to do with approach. I've become a big fan of all crazy things. I tell my students I always find this funny. I found myself a few years ago and I couldn't figure out what it was. At first I would I would be in here like in the studio and just kind of like I'd be doing like paperwork or like just whatever, like just I wasn't working on something, but I'd want happened in the background and I would find myself streaming from YouTube, live bluegrass. And I could not for the life of me, I don't like, I'm not like a country guy, I don't, what in the world is happening? You know, that's like my having, like, some sort of, like, long, weird dystopian out of body midlife musical crisis... Richard: I mean, like because I mean, I was, you know, my first musical love was classical and in prog rock. And then I got into rock and anything else. So like bluegrass is is just. We're, we're, we're moving on in a chain that was so bizarre and then I finally figured it out and it was because it was pure, like it's a bunch of guys and girls sitting with acoustic instruments, basically, and they have to play them. The instrument has to respond. You don't get the benefit of, you know, all the other stuff if you don't do it, it doesn't happen. And I have that has become incredibly compelling for me. And now so I've been spending years and I don't know if you want to get into this part of it or not. But I've been spending years trying to figure out a way to marry the two. How can you like my big thing right now is. How do you take like I love loopers, for example? The textures you can create. I really dislike the lack of in the moment control you have, though, with a looper, because once you do a loop, you're basically stuck with it. Joe: Right. Richard: You know, you can stop it. You can start it and sign. But in real time, I want to sit down like, like when you sit down behind a kit, you know, I want the high hat to respond as I'm playing it, not in some prefabricated way that I can no longer alter in any way. So I've been working on trying to figure out a way to play with all of the layers, but have them respond to me like I was sitting down behind the kit and doing it organically or at a piano or on a guitar or just, you know, a kazoo. I don't care what the instrument is but the idea that it responds immediately to me, that's a more interesting use of all of this. So anyway. Joe: What are you doing? Yeah. Not to go too far because we know, but it's interesting now, what are you doing to do that? Richard: So a lot of it has to do with um, figuring out ways to like, look what makes up the layer that you need. Do you know what I mean? So like like a loop for me, when I was like, you know, you there's there's people that are brilliant data. I mean, and that's the other thing, too. You know, you're you know, Ed Sheeran is a brilliant songwriter. He is gifted on so many levels and he's kind of perfected the looping thing. You know, Tash Sultana, I don't know who she is or not. Joe: I don't Richard: You should definitely look her up. She Joe: Work. Richard: Is. Oh, my gosh. She is about the most organic looper I've ever seen in my life to the point where you can tell that something glitched or made a mistake. And it's like she does it, it doesn't stop. She's so in the moment about the music she's making and it's it's just frickin' brilliant. It's unbelievable. But the point is, is that, you know, you start to look at all these textures and you start to see some commonalities. And then funny enough, I, I started looking at, well, what do I really need? Like like when when I when a singer songwriter starts a loop performance, a lot of times, you know, they start with like a drumbeat kind of thing, right? And, you know, they've got their acoustic guitar and they're doing all kinds of stuff. And there's not I mean, it's cool. But then it's like, well, what is that really about? You know? And so I had gotten really heavy into Mumford and Sons, of all things. And I'm watching Marcus Mumford, especially when it's just the four guys. Sorry, four guys [shows fingers]. And, you know, and the and he's doing you know, he's just got that kick drum and he's got that weird little pedal mechanism for the tambourine. But it's essentially he's doing all that momentum off of a kick drum. And because it's so well played organically, you can hear the rest of the drumkit, but you don't actually need it. I know for a fact that you in studio work because, you know, I've talked about this. You have a less is more kind of approach. You know, you don't have to you know, don't get me wrong, we're all fans of Neil Peart. I mean, Joe: Yes. Richard: You know, God rest his soul. The man was a genius on so many levels, but we're not gonna be able to pull that off. Like, I mean, he he could he could fill the space and you didn't go "Well, that was gratuitous." Joe: Yeah. Richard: You know, that's a I mean, you know, he's like he's not the only drummer. I think that could really get away with that consistently. Simon Phillips may be another one. But that's just and that's just just my opinion. But my point being, what I've basically been doing is I'm looking at the layers of what can you actually do and then essentially it's a variation on voice splitting. So if I take a tone and I branch it out and I noodle with it and essentially process it in a certain way, you don't necessarily know what it is that I'm playing from. But then it goes even further, and I promise we won't stay too long on this. But just because this is where my brain goes, Joe: That's right. Richard: Still, I had developed this hole and there's some video and stuff you can I mean, I'll send you some links and stuff of early, like prototypes of what I was doing and it's fun. But it's are real, first, I was a real pain to get a song prepped. Like the irony of the amount of time it would take me to get a song prep so that it could feel natural and organic was just like killing me. Like it, it became so creatively so, so I went back, I've gone back and I've read redressed it. And the crazy thing is, is so I started looking at instead of for the drum kit, I started looking at the relationship between the kick drum and the bass drum. And part of that was because at one point years ago, I had developed this really cool way to simulate what sounded like drums off of an acoustic guitar without having to play it as a loop like it was coming essentially off the strings, believe it or not. And it sounded really cool. And then I would do like some coffeehouse gigs or some, you know, whatever, some small shows and things, theater kind of gigs and stuff. And I realized that people like if they knew what I was doing, they'd be all over it. But just as a listener, it was like, oh yeah, he's got backing tracks. An I'm like, no wait, you've missed the whole point. And then I realize. And then. And then you like and I know, you know, you perform all the time. You can't really blame your audience if they if they don't get what you're doing, that's on you. You know, there's only so far you can go. Oh yeah. They didn't understand like Joe: Right. Richard: I mean, it's just, you Joe: Right. Richard: Know, you can't play that game successfully. I don't think anybody can. So I've gone back now and I've started to look at what really is required for momentum. And can I treat like for some reason, hearing a bass line off of a guitar? We'll make that jump. I'm still trying to figure out how far do I go with the actual percussion sounds and things, but that's also to me, part of it is I'm a big process guy. I come back to that all the time. This, to me is fascinating. I've been playing with this concept since before my oldest son was born. And I'm really, really freakin old. It's been a long time, Joe: No, Richard: But Joe: I Richard: I. Joe: Really friggin old. Richard: Fair enough... Joe: I Richard: Off. Joe: Don't. Richard: Fair enough, now you're not. And it's just a number anyway, Joe: Right. Richard: Even if you were. And even if I was. No. But seriously, you know, to me, it's the process. I think that. That's the fascinating part. I am reminded Mick Jagger has been asked how many times what you know, "How do you write a hit song?" And I love his response in certain in one interview. He's like, "I don't know and as soon as I figure it out, I'm probably done." Joe: Yeah, Richard: Like, I don't want to know Joe: Yeah, it's interesting. Richard: Why it looked like it. It kind of ruins the magic of it. Joe: Right. Richard: I think there's great merit in, you know, I think art in all of its forms. And for me, it's music is its own, kind of like its own living, breathing entity. And you communicate with it. And, you know, if you if it's if you're working with it collaboratively, it's there's some way, you know, these amazing things will happen. And if you piss it off, it's like it takes its toys and goes home and then you're stuck. And I don't know what to do anymore. I mean, that's but that's that's literally my my thing. Which maybe I don't like I said, I can talk for like I went two and a half hours. I can so beat that Joe. I have. Oh my gosh. I love Joe: So Richard: The sound of my own voice. Joe: That Richard: I'm not going do that. I won't do that to you. Joe: No. Richard: But I know what it's like about the program. Joe: Well, no but, but because we talked about a couple of things here, I'm just going to put. Just add my own two cents based on, you know, the whole looping thing for me. I also love and I'm enamored when I watch it done. The problem that I have when it's in a live situation and I deal with it with the people that, you know, my other persona is being the owner of Onstage Entertainment, right? So booking a lot of entertainment in here in both Arizona and Colorado. I, I have to ask some of them that, OK, I don't mind you looping, but you have to get into the song within the first, like, minute to loop the layer, you know, the layers. And there's I don't know, I don't loop I mean, I don't do it. So I don't, I can't tell them what to do and I can't feel their pain. But if you're going to do it, you got to be quick at it and you got to figure out how to get into the song quickly because people whose interest it just. Richard: Well, you're not wrong. I mean, that's the other thing. I mean, you know, mostly, you know, you do the looping thing and it's like the first time, the first song. That's really a two and a half minute song that takes you 12 minutes to perform. And the audience is like, okay, that was cool. Three songs in and I can tell you this from experience. Some of this is because I don't have the gift that certain people do for looping, which is probably why I gave up on looping in some respects, and now but now I mean, like again a door closes. This is so much more creatively interesting for me. But, you know, three or four songs in the audience is always like we've seen this trick before. We know. We know they. They don't know what's gonna happen specifically, but they kind of know where it's headed. And I think some of that's the lack of interaction in all honesty, I think that's why you see some people like, you know, time. But the looping thing I've I. The one thing that fascinates me about Ed Sheeran is genius level songwriter, brilliant performer. Albums sound nothing like the live show albums are basically a band. Then he goes out by himself, which is very fascinating to me, you know, but on the other hand, I kind of respect it because that kind of I absolutely respect it because to me that's using looping in an effective way, using technology in an effective way. But I'm with you. I, I can imagine, you know, that battle. You're right, people don't, but especially, you know, bars and clubs and stuff. There's Joe: Yeah. Richard: Only so they that you can go and. And again, I think one of the things I know I deal with this a lot with my students is, you know, there is a line that you have you have to accept the fact that if you're going to go off on those musical tangents, that may be incredibly invigorating for you personally, you have to be willing to accept the fact that, you know, you may not get all the gigs you want. You know, or you may not get the type of gig that you think you deserve because people are going to you know, if that's you know, if that's not what the listener wants, that's not what the listener wants. And then, then and then that needs to, but that has to be OK, too. I mean, I think, you know, I firmly believe it's kind of like there's two music industries in a way. There's the industry that we see on TV that, you know, is, you know, is is the big influencers and stuff. And the award shows and everything else. And God love him for it. I like I said, I would love to have their problems, but then there's all this other stuff, but isn't going to make it beyond, you know, it's going to play the smaller clubs and it's going to be in in more intimate settings. Richard: But that's OK, you know what I mean? Like, that's OK. And at least now that's when you and I were growing up. You know, we were we were still of the generation where if it did come on the radio, you didn't hear it. You know, or you had to really I mean, I can remember you would spend hours at a record store. Because you couldn't return it. You know, I mean, you really chose carefully, you know, those, those you know that 10 bucks or 20 bucks or whatever it happened to be, you know, before we really got into the whole Napster opens up streaming for us. You know, world. You know, it's a totally different thing in it's interesting talking to my students about that, because some of them... It's that they are still very careful and they'll tell me they're like, my time is valuable to me. And they'll stay, but, but there's still even with them, there's still a sense of acceptable risk. You know, for, whatever, 10 bucks a month or whatever you spend for whatever streaming platform. I mean, that's like, ya know, that's insane to me. Joe: Yeah, Richard: I mean, Joe: Yeah. Richard: That you can get pretty much every recording that exists for 10 bucks a month. Which Joe: Yeah, Richard: Then also Joe: It's. Richard: Begs the begs the question, is it worth being worried about signing the big record deal anyway? Because you're not gonna make any money for it anyway. Maybe just go make what your heart wants you to make artistically. You know, 50 percent of not much. OK, now you are getting that much in the first place. But. Joe: Yeah, yeah, and it's, it's for them, you know, for all of us these days with the streaming part of it, it's like drinking water through a firehose when it comes to the amount of content you can actually take in. Where you? Yeah, and you and I are talking. It's like, yeah. Go to the right. You know, you you mowed for lawns. You have ten bucks to go buy the one album that you've been waiting to get Richard: Exactly. Joe: In. Richard: Exactly, exactly. But Joe: Yeah. Richard: It made it so much more, you know, I cannot remember buying an album and not sitting down and listening to it, track for track, multiple times all the way through. Joe: Reading all the liner notes, Richard: Exactly. Joe: Knowing Richard: Exact. Joe: Everybody who played on it every yeah, Richard: Yep, yep, Joe: Yeah. Richard: Or like I can remember. I can't remember what album it was, but I can remember buying an album, taking it home to listen to and then we like I remember my parents were like, we have we have something to go to in like 20 minutes or something. And I can remember sitting there thinking, ok do I put on listen, like the first two tracks or do I wait till I get homesick and listen to the whole thing? And I waited. You know, because there was something about that experience. And even now I find myself, you know, fast forward and, you know, I mean, it just did it. It's I find myself with some of those bad habits a little bit that I wish I didn't, necessarily...but it is what it is. Joe: Yes. Well, and two other things you touched upon that I know you. You brought it up and it's something that I deal with. But I took a position a long time ago and I started Onstage, that I actually don't hire anyone that runs tracks. And I did it purely for the fact that I didn't want any musicians being put out of work on basically my watch for lack of a better term. Richard: Oh, that's awesome. Joe: So that's just the position I took. And I don't have anything, you know, like there's a like I had a corporate gig. So when I say that, it's really like the local type stuff. So I'm not going to, I'm not going to put a single guy in a resort and put a bass player and drummer out of work because he walks in with bass and drums on tracks and back and backup vocals. And, you know, these other people are sitting home and not working. But the caveat with that is if I there's a corporate band that I hired out of Montreal, Canada, who had amazing tracks that they had built from scratch for themselves. Now, the difference between them is that every single track that they had, there was literally an instrument onstage playing it. So all it was for was for the thickness of the sound. Richard: Sure, sure. Right. Joe: There was literally not one sound on those tracks that did not exist as a human being on the stage. Richard: Right. See, and I think that you're hitting on something to me that's really important, which is intent. Like, I think that gets lost in all of this because we're so we're so caught up in the spectacle. Or the site. You know, I was just at a wedding not too long ago for for one of my nephews and it was interesting because the band, the band was they were good. This is back in Ohio where I grew up, but it was lots of tracks. And it was interesting the way, you know, I'm sitting there picking the thing apart because that's where my head goes. But the rest of my family's just enjoying the sound. You know, almost to the point where, like I've seen deejay's lately, do a thing, oh, sorry, my son's come in and Joe: Hmm Richard: Interrupt Joe: Hmm, hmm, Richard: Here Joe: Hmm, Richard: For a second. Joe: That's Richard: We have Joe: Totally Richard: To Joe: Fine. Richard: Apologize. My apologies, Joe. Joe: No, Richard: That's Joe: It's all Richard: My Joe: Good. Richard: Ex, Gray. He's gone and he's gone in for your drumming job. Joe: All right, perfect. Richard: His no, but I think I'm, you know, like deejay's lately, you see them like they'll travel with a drummer. And I actually think that's a really good thing. You know, it's, it's, it is a little bit in the other direction, because I actually I respect that decision you've made and I actually I did not realize that that's awesome. And I think, I think the world of professional musicians would be better off if more of the owners of these companies, such as yourself, took a stance like you do. But on the other hand, you come from this as a player. So you have a you know, I think some of this is, you know, that battle. You know what that's, you understand on a different level. And nothing against promoters, managers and anybody else out there but a lot of them don't. Is my as a you know, they're well-meaning, but they don't you know, they don't get it. You know. Joe: Yeah, we've talked about this a lot. You know that the success of what happened with my booking agency is the fact that I take the position and I also have the business acumen part of it. So I'm kind of a hybrid in a way where I can understand what I have to deliver to the end client and how professional all of that has to be and at the same time, I have to put my self in the position of the performers or performer, either one. And that, you know, when it's really hot outside, they need shade and if it's too hot, it's just impossible to perform outside in Arizona. And yet, because we live in Arizona and it's the desert, you know what? It gets freaking cold in the wintertime. So, and the fact that other than a singer who then has to worry about catching some sort of cold or bronchitis or something, that all the musicians use their fingers and as soon as your fingers freeze up, the performance goes downhill and everyone's upset and it just doesn't make for a good... So in our contracts, it's very in-depth about, you know, needing shade and needing heaters in the winter and then if it's too hot or too cold, that has to be moved inside. And we, had ad nauseum, I could talk about all Richard: No, Joe: This, Richard: Of course. Joe: You know, circumstances, but that's the approach that I took. Richard: But it's interesting, too, because like as you're as you're describing all of us, I keep coming to the word legacy like like like your own sort of personal legacy and all of this like, you know, and I've known you now for years. So I kind of I feel like I, I. I can say this maybe with a little bit of insight, if you like. I know you to be like you need to be able to sleep at night like you don't like it. But that's important. Like, look, I know that, you know, some of that's just because you couldn't send somebody on a gig that you yourself wouldn't feel comfortable taking, which I think is important, because, again, I think, you know, again, I deal with a lot of younger musicians, you know, a lot of teenagers, lot of 20 somethings with, you know, with the the college stuff folks that I work with, too. And, you know, you do have to kind of be aware, you know, the pay to play thing that goes on a lot. I see a lot of younger musicians that get really excited over gonna get this gig at blah blah, blah, blah plays. That's awesome! Can you buy a ticket? Because we have to sell 200 of them Joe: Yeah, Richard: To get Joe: Yeah. Richard: The opening spot. I'm thinking to myself, I know I get it. I mean, I you know, I understand there are costs and everybody needs to be able to make a living and provide for themselves and their families. And I really do understand that. But it's, there's something off putting about like, like to me, I feel like art's disposable enough, like it's treated almost like a fast food meal sometimes that, that going into that world, I don't know. I just, I just feel like, you know, one of the things I'm always telling kids is, you know. To me and this is this has always been my approach, and if I ever decide that I want to get myself out of this studio environment here where I noodle around, which I might, you know, in my midlife extended crisis of who knows what the heck's going on right now. I actually had plans and then the COVID thing kind of hit. But that's a separate conversation, I suppose. But no, but to think about, you know. We look at gigs, I think, especially younger musicians, they look at gigs in this context of, I have to get the gig for the exposure and the, quote, "fame." But I also equally need the money from the gig, and I think that that's in some ways, the problem. Everybody's got to eat, everybody needs to. I get, I understand that. But I do think that when you can eliminate either one or the other from the equation, you actually give yourself more opportunities. Joe: Yeah, it's. Richard: You know, like if you can, you know, and now I realize I'm in a very unique situation. I could take a gig or not just for the joy of the gig. And then one of the reasons why I started to think about I should really start playing out again just for my own sense of self and to noodle around with this not looping looper thing, to be perfectly honest with you in front of people, was because I realized I don't really care if I make any money doing a gig. Of course, I would love to get some cash, you know, some money in my pocket for for for performing. But at the same time, it's like you priority, you know what what matters? And I think that that's part of it, you know, especially now, you know, because there isn't you know, it's really tough. As you know, being a gigging musician is really brutal and obviously right now it's basically impossible, Joe: All right. Richard: You know, with with the situation we're in. But I do think. Like, it's funny, like I've had a lot of conversations with a lot of my, my students about the fact that I know and just a lot of people in general. There are some you know, this is horrible right now. I mean, it just it is devastating the live music industry, which is like, what, eight billion dollars annually or something at a minimum is just devastated right now. And all of the ripple effect of it is, is just it's gutting. But I do think there is also some good possibly to come out of this. The number of people I talk to, younger people that are so excited at the notion of when I can go see another show, like the appreciation for it. You know, like when you're younger and like you can go to any show you want, anytime you want, basically because you've got all your income is basically disposable and, you know, whatever else or even if it's not but you can you can seriously prioritize it. You know, you not to worry about house and car and bubble on food. And I know some kids do, I'm, I'm speaking generalities, but just in general. Joe: Yeah. Richard: When that's been removed now. It is so interesting, the number of conversations I've had with kids that are like, WOW!, I'm just so appreciative of when I'll be able to do that again. Or, or the realization that that because we would we talk about it all the time and might within my classes, like, OK, you go to that show. I don't care what show it is. That person onstage, even if it's a soloist, isn't the only person involved in you seeing that show. They just aren't. There's no circumstance where it's just them. And you start to really now understand how it all changes, you know? You know, or not changes but how, I mean, it's gone right now, you know, and they're talking about 2021 before major tours happen again, major festivals and things like that. I want to get all the pressing and down on stuff. But but Joe: Oh, Richard: I think. But I mean, it's like you don't already know this. I'm sure you. Joe: I have. I have tickets to see the Doobie Brothers and the Eagles. Yeah. And and that the Eagles, I think, was supposed to happen in April. That's been delayed, I think, until October or December and you know, there's a good chance they're all going to be moved until 2021 to just Richard: Yeah, Joe: Me. Richard: It. Joe: No one's gonna want to go to a concert and sit, you know, six feet apart from the person they went with and sit, you know, have every other row with someone, it's just it would be weird Richard: Well, and Joe: Because. Richard: Not to even some more paranoid, but like I've been reading about different things about like I guess they did a study recently about that choir that had that rehearsal before anybody realized it was a pandemic. But then like 40 out of the 60 people that were in the choir wound up getting tested. They're testing positive. Joe: Oh, wow. Richard: And they you know, I mean, it's a horrible tragedy, I think like two or three of them passed away from it and the whole circumstance was awful and they were going off of all the information they had, which at the time was nothing. And I mean, the whole thing is a terrible tragedy. But out of that, they recreated the circumstances. They obviously didn't infect people again, but they started to look at how singing and things of that nature, what it does to the transmission of a disease, you know, of a virus of this nature and then you think about people that like an event where they're shouting or screaming or singing along and all this other stuff. And you just think to yourself, you know, how is this going to look? Joe: Yeah. Richard: You know what we know? I don't know. It's it's, a it's an interesting. If it wasn't so devastating to the to people that I personally know and just to the industry that I'm aware of and the ripple effects of all of that, it would be just fascinating. But instead, it's just I mean, it's just. Joe: Yes. Richard: It is really. It just makes me really sad and I'm really grateful, like I feel weird sitting in a studio talking to you right now because I feel like almost like I'm, I'm unintentionally flexing and I don't mean to be. It's just, you know. I never thought my life musically would be in a place where I could feel musically secure more than most musicians out there in the world. That is such a bizarre moment of clarity for me. I almost feel obligated to be making more music right now. Not because anybody needs to hear it or that it'll be any good, but almost because I feel like if I don't, I'm being incredibly selfish, that I have the option to do it and I'm not Joe: Right. Richard: Taking advantage of it. Joe: A. Richard: I feel like, you know. You can believe this, but I feel like I would just do like such an ass, like if Joe: Now I get it. Richard: I feel like, I feel like I believe in karma. And I just, I just feel like I have I have an obligation, especially I'm about to head into summer, which changes up my teaching obligations and my, you know, Joe: Yes. Richard: Obligations of that nature. And running the studios are going to be very different for the foreseeable future, at least. Joe: Yes. Richard: Wrote Joe: And it's then Richard: permanent excuse Joe: It's like, no, yeah. No. And I get it. And it's in a lot of our talent is struggling. You know, that that I personally know and had, had helped to get a fair amount of work that they, you know, at times where they don't have work and they're struggling just to put food on the table and pay their car payment, keep a roof over their head. They now are sort of forced into possibly going into debt to buy a webcam and a microphone and and learn, you know, some sort of software if need be, or if they just end up going live on Zoom or Facebook or any of the streaming platforms. But, you know, they're putting in there they're Venmo and PayPal handles as a virtual tip jar just to try to make any sort of money. Richard: Yeah, anything is Joe: And Richard: Anything. Joe: Yeah, Richard: Mm Joe: And Richard: Hmm. Joe: It's it's really tough. So, yeah, I keep brainstorming on ways to try to figure out a way to help. And I haven't come up with it yet. I but I'm working on it. It's not like I'm sitting here, I'm not you know, I'm lucky enough that I had a business where because at one point I was the seven day week musician, you know, I was playing, you remember, and Richard: I do. Joe: That's all I Richard: I Joe: Did Richard: Do. Yeah. Joe: Before. Richard: Yeah. You were impossible to get a hold of because it would always be like a message back, like dude I'll call you later, I'm on, I'm like, you know, 17 gigs today. Joe: Yeah, right. Yeah. But so I get it. Again, we go back to. I've I've lived it and I understand where it's all coming from. Now I just have to figure a way to help and so that's a struggle for me. But that's that's a whole like you said, it's a whole different conversation. And the one last piece that you touched upon that I don't want to forget is that in the conversation I had with Nate Morton, the drummer from The Voice, there's a connector in L.A. that you may or may not have heard of that that I knew when I wanted to, you know, possibly get a tour. A guy named Barry Squire and Barry is basically the music matchmaker out there. So if Cher is looking for a band, Barry will put out the notice that Cher is about to go on tour and they need this, this and this. Same thing with Pink or any of those, Barry was the guy to basically piece these bands together in L.A. for these big tours. Richard: Interesting, Joe: And Richard: I did. Joe: And so now the listing and Barry puts these listings up now on, on Facebook and it's obviously become a lot easier as part of the discussion I had with Nate, where it used to be, hey, you go to this executive's office and you pick up a C.D. or tape, you learn these three songs on it, you come to this studio/soundstage on the Saturday at 1:00, you play the songs and we'll let you know kind of thing. Now, Barry posts these things on Facebook and its he post the requirements. And, you know, everyone has to be pretty much for the most part, 25 or younger, you know, there's there's no none of these things that are going to take all these old dudes like us out on tour. Richard: Right. Joe: Her Richard: Right Joe: Or me Richard: Now, of course. Joe: Anyhow. Richard: No, no, no, no, no, I'm right there with you. I'm Joe: But Richard: With you. Joe: But the instead of it being the old style that you and I are used to, which is, you know, bass, drums, maybe two guitars, keys and a couple of back, backup singers or maybe a horn section. Now it's guitar, drums and a multi instrumentalist that knows Ableton. So it's, it's that and Barry and Nate were talking, they went to lunch a few weeks ago. They'll always be a drummer because the visual part of it, of of that makes it look like it's a band. So that that one seat, you know, thankfully, has not been necessary, eliminated as much as the others. But it's just so weird and Nate and I were talking was like, I mean, I know I, I don't know Ableton anywhere near that I could say I could do it to go get a gig and neither does Nate. But that's the state of things right now. And then, and then Nate's talking and he's like, and if the band becomes, you know, popular and there's more money in the budget, they don't turn around and then start adding bass and guitar and keys that they add more production, they add dancers, they are they whatever. It's just it's so weird to me. Richard: Well, yes, the idea of a show, it's different, you know. That's why, that's why it still comes back to me of this idea of playing. And I think that, I don't know, Like like, do you still sit down to play just for the joy of playing? Joe: I, I do here and there, but nowhere near as much as I should. Richard: Well, nobody ever does that as much as they should. Joe: Yeah. And it's like we Richard: But. Joe: Played a gig last Wednesday and we played out in the parking lot at an assisted living complex for Richard: Oh, Joe: The Richard: Cool. Joe: For the residents because these elderly people had not been out of this place for the last two months or whatever. Richard: Oh, Joe: They're Richard: My Joe: Just Richard: Gosh. Joe: Going stir crazy. Richard: Sure, Joe: So Richard: Sure. Joe: There was four different jazz combos and we were setup out in the parking lot where the people could come out on their balconies and Richard: Oh, Joe: We played to Richard: How Joe: Them. Richard: Cool. Joe: Yeah, it was fun and it was cool. And at the end, like all the guys in the band are like, God, I so misplaying, like I just the hell with practicing, I just want to play because there's that interaction on stage and anticipating where that that other player is going to next and just being able to interact and lock in with somebody. And because I left the gig going I really got to practice. And everybody's like, no, we're just gotta play, we just it's more fun just playing. So, Richard: Yeah, yeah, Joe: Yeah. Richard: And that's I think that I think there's something about that visceral live element. You know, Joe: Yeah. Richard: We it's funny when, when when, when the COVID shut down happened, it sort of sent obviously a lot of chaos into the whole educational system, especially into arts education, which regardless of titles and everything else, I am basically running an arts program. You know, call it what you want, but it's an arts program. And it's been it was interesting what wound up happening very much and that's why I truly thought I'm going to get all these kids that are just going to send me you know, here's this recording I worked on at home, here's this work and I've got a lot of those. I mean, that's. And it's great. But the lot of them, first of all, a lot of them, you know, you started to really see the demographic of the students and who had what available to them. Joe: Yeah, Richard: Lots of posturing and Joe: Yeah. Richard: In high school certainly about that and that's fine. But I don't begrudge because any we've distributed gear as much as possible in that. But it was, you know, was interesting how a lot of them really enjoyed the live streams we did more than anything else. So we wound up doing our big annual end of year concert anyway. But we did it online on Zoom. It was clunky we were subjected to all kinds of elements related to streaming and what mics they had and Wi-Fi connectivity and everything else and yet in the moment, the fact that it wasn't taped, that we, you know, like Joe: Yeah. Richard: I had some kids that played some sessions, that we just kind of watch the sessions on the screen, which was still cool and it was really awesome. I had one group that actually did go in and they pre-recorded their parts and filmed themselves while they did it and then we spliced it together into kind of like a live video and and whatnot. But most of it was a kid with their guitar, at the piano or whatever it happened to be singing. You know, in some cases it was just through their phone and imperfect, absolutely! But, it it had that kind of because you knew it was right then. And there wasn't a well, we're going to go back and fix it in post kind of option. It was interesting that, that, you know, you still got a little bit of that same charge. I mean, it was different because obviously you don't get the you know, you don't hear the applause in the same Joe: Yeah, Richard: Way that you're hopefully Joe: Yeah. Richard: Getting you know, there wasn't really production in terms of lights and stuff that we normally would do. But, you know, because I asked a lot of them, you know, should we be prerecording this and some of them are like, yeah, that would be better for me. But that was because of nervousness that they always have had inherently. You know, these are kids that don't like to get up on stage, even though they're wonderfully talented. They just may be, you know, at that age, they're, they're they get freaked out by it or whatever. But the vast majority wanted it live and in the moment, warts and all. And I found that to be very fascinating. Joe: Yeah, Richard: And Joe: That's cool. Richard: We wound up, you know. We did a tie. I think we did. I think we did like seven or eight live broadcast. We're still doing them. We've done a bunch of podcasts, but it's been interesting watching the students. Their response, and maybe it's not an entirely, like I'd like, I don't think that I can, I always look at my own students and I go, I probably shouldn't be lumping you in with every other teenager is like a generality because they tend to be a little bit of a unique and and if we're being honest, I probably do have a bit of an influence on their approach Joe: Right. Richard: In that regard. Joe: Yeah. Richard: Hopefully a good way. But I do think it's interesting, like what you're saying, that there's something about a live response, even if it's remote, even if it's from streaming, it still beats the just watching video. Joe: Yeah, Richard: There's something. And organic and visceral about it. Joe: Yep. Richard: Which is Joe: All Richard: Important. Joe: Right, well, you know, since we are now, you know, sort of talking about the graduation piece, I wanted to...so I always refer to it as CMAS and I think that's probably what most of you do. But it's Creative Musical Arts and Science program, correct? OK,  So this is happening at Arcadia High School here in, are we, this is considered Phoenix. You're right down the street from me, right? So it's Phoenix. Richard: Yes, well, I'm yeah. Joe: The border is. I don't know. Richard: Yeah, it's Scottsdale Unified School District, but it's technically in greater Phoenix we're like I want to say, what's 48 Street and Indian School and what is it? 56th is the line into Scottsdale. Joe: Ok. Richard: I don't actually know. I mean, I've been at that school for, gosh, 20 plus years, if you can believe that...long time. Joe: Yeah. Richard: I don't know. I was long before my time how they managed to carve out that section of, you know why it's Scottsdale and not in Phoenix Union, I don't know. Joe: All right. OK. So you just mentioned 20 some years ago, so when did you get to this school? Richard: Ok, so let me see. How do I explain this? 1990 or something so I'm at the U Of A Joe: Ok. Richard: I have finished my second master's degree in orchestral conducting, which I still miss, I, you know, if only for not having enough time in the day. Basically, I start working in Tucson at one of the high schools and a middle school, I've got an orchestra program that I love. I am always still for years and years and when I did it, I grew up in the Midwest. So as an undergrad and as a grad student and at different times and in different places, I was always gigging as a very mediocre drummer. I like to say I was, I was sort of the, the, would you want to call it? I brought the game down for everybody else, But um..but, you know, and so I done some touring, nothing, nothing fancy. So but I had done a lot of it, I loved the studio experience and also their stuff. But there was no at the time at least available to me, you only were really able to do that kind of independently and on your own. And there was very much this sense of, you know, we were we were talking before about two different music industries well, there were sort of like two different musical experiences. You had the experience you could have as a student. I mean, you know, you know, it was one thing and there were in it, it was great. I mean, don't get me wrong, I have such fond memories of growing up. And I still every now and then I am lucky enough, I guess. I've talked to my old high school band director a few times, he's long since retired. He drives trains now, of all things Joe: Wow. Richard: Which he just loves. Old, old military, retired guy, sweetheart of a guy, brilliant musician, far more, I didn't realize his musical chops. This is another problem I have like I hadn't like it takes me a while to realize something in the moment. Oh my gosh. The level of lost opportunity on my count two, like not tap into more of his experience as he came out of a military band experience but he had this incredibly open view of what music was for, even if he had a particular love of a certain style and what not. But I'm I've Joe: Wait, Richard: Got this. Joe: Before before you leave, that point is just amazing that you just said that because I look at you and go, God, if I only had a band teacher in high school like you. My teacher, and God rest his soul, I think I'm sure he's gone by now but I was just there doing it, collecting the paycheck, Richard: Sure, Joe: Going through the Richard: Sure. Joe: Motions. Just it was just the worst. And. Richard: And it can't. Yeah, I mean, I. I don't know, I can't speak to that. I mean, the educator in me says, you know, at a certain point you can it's very easy to get disenchanted if you get wrapped up in it and you never know. I mean, you know, the further back you go. People that I get asked all the time, you know, did you have something like CMAS when you were in high school or whatever? And I can't tell if they're sometimes I wonder if they're being sarcastic, if they've completely misjudged my age, if, you know, I don't even know where it's coming from. But, but the truth of the matter is, is that it's not a matter of if I did or not, it wasn't even an option. It just literally wasn't a possibility. I can't, I can't fault Pete Metzker was his name, is his name or Jeff Bieler or Bob Wagner. I literally remember all of these people...West Frickey. They were brilliant! They didn't, if they, if you would come to them and said, we have this idea and you described what I built with the CMAS Program, what I designed, honestly, I think they would have been like, OK, that's really cool! We can't, like we, if we could figure out how to do that in the architecture or the in, the in, the the infrastructure, if you will, of music education at the time, I really think they probably would have been like, OK, sure! Let's do it! I don't think it was an option. I mean, I really think that, you know, there's a prospective element. I'm not that old but it does remind me a little bit of what I have conversations with students about classical music, for example. And I always tell them the same thing. Richard: You know, you can't, you can't fault Beethoven or Mozart and say you don't like their music because there's no electric guitar. Because there wasn't even electricity at the time. You can't you know, you're missing the whole point. You don't think, like that can't be your thing. In the same way when I have students who are very, very much of a more and this is fine too, but we'll say a more traditional mindset. I'm like, you can't look at a kid who wants to do like turntables and say that's not a legitimate musical instrument. You do it, for the same exact reason because you've got to deal with intent, you just you just have to. And that's the thing that like I said, I look back on those that band director and those teachers, all of them throughout all of my school years, as it were. And Dave Vroman, I mean, I could list all these professors throughout, you know, college that some of which I'm still friends with, which is really wonderful too, you know. Sorry, I, I have to I have to namedrop Molly Slaughter, I don't have anyone to know who she is but just for me, I got to say it karma again, and there's lots of others. Greg Sanders, Steve Heineman I'm gonna shut up now, okay...Ed Kaiser God, we would be here for a long time, but, but all of them would tell you...but, but the thing of his you is the best musicians are about intention. You know, Springsteen walks up onstage with the E Street Band and it's unbelievable and then the band takes a break for a minute and he sits down with just as acoustic guitar and it's unbelievable. Joe: Yeah. Richard: And it's I mean, look, the guy's a genius. And I mean, that's you know, you don't need me to say that. But I think the reason it works in both settings is because of his musical intentions. Joe: Yeah. Richard: It comes out different, of course, it comes out differently when you have more people and you can interact. And again, we go back to that visceral thing, but it's about intent. And I think that's what I've carried with me from all of those people. Joe: Right. Richard: I go on in any case, so I go, I go to Bradley University and become their first music educator, excuse music composition and theory graduate ever out of that university. I don't, I don't know if that's like I have two distinctions being a Bradley, one is I'm the first person ever to receive that degree from that institution, which I'm very proud of and two, I was probably the most arrogant pain in the butt student that's ever been through there in the history of that university's music school. And it was a brilliant place, it was wonderful. They had an old Moog synthesizer, that had been installed by Robert Moog himself. Joe: Oh. Richard: But it unfortunately didn't work. If I could go back now...know, you, you know, you always say if you know, if I knew then what I know now. But they allowed you know, they bought some equipment. We had, you know, an old Mac computer and we were able to do some sequencing and learn some bit. And I just kind of got bit by the bug of it. I just found it so compelling and so interesting. Didn't know what I was doing, had a couple of microphones, couldn't even tell you what they were. Probably a 58, like a beat up condenser, by whom...You know, I want to say there was a, I don't know, I want to say it was like an old Rode or an AKG or something, but it was I mean, we you know, we didn't know what we were doing. But freedom to explore the process. I mean, again, in hindsight, I see all of us greatest gift possible. Graduate, don't know what I'm going to do. So the Youngstown's, I don't know if I'm gone too far back Joe: No, Richard: Or Joe: No, Richard: Not in the story. Joe: No, no, no. Richard: So I'm going to I go to university, so Youngstown State University. Partially out of desperation, partially out of you know, I didn't, I was wandering in sort of like the the desert of my own immaturity and unawareness, you know? I just, I just I had this thought in my head that I was gonna be the next Leonard Bernstein. Not realizing that basically even the next Leonard Bernstein wasn't going to be the next Leonard Bernstein because that world doesn't exist. And it wasn't like people were telling me that but it doesn't, I mean, it just doesn't exist. And and I didn't, I wasn't that guy. I mean, that's, you know, kind of like what you were talking about before, which I disagree with your assessment of your skill set but we can have that conversation off of air sometime. But no, but, but in all seriousness, I mean, you know but I wasn't that guy. I mean, that's just that's a reality, I wasn't that guy. But while I'm in Youngstown, Stephen Gage, who's another one of these sort of like ah ha moment people. I'd done a lit..I'd done some conducting. I even put together for my senior recital at Bradley, I put together my own sort of like mini orchestra of friends just for the heck of it. And I seem to remember Vroman, Dave Vroman, who was head of the music department, and that can be one of the main conductors there, I seem to remember him saying, you know, we could have like. Richard: To help you out with this, like you didn't have to, like, do it covertly here. He's a guy I really did not appreciate nearly as much as I should have at the time, brilliant man, just brilliant, wonderful guy. But anyway, he, um, so but so Steve Gage basically goes, you know, I need a, I, I've got an opportunity for graduate student. And he was the band conductor is like, but you'll also work a little bit with the orchestras as well. And you'll get to do you know, you'll get to conduct and I'll teach you how to and he was my first real conducting teacher that I took seriously. I had taken cond

The Joe Costello Show
Part 2 - An Interview with Nate Morton, Drummer for "The Voice"

The Joe Costello Show

Play Episode Listen Later May 13, 2020 62:19


Nate Morton from "The Voice" In this episode, Part 2, we dig deeper into the audition he went on thanks to Barry Squire and his own networking becoming known as a "player" in town. Besides doing gigs around town and networking, he would go to some of the more well-known jam session so he could be seen, heard and start to build his network. As you'll hear as a constant thread throughout both parts of this conversation, networking and relationships have been key to Nate's growth and success. We talk about the sequence of auditions and gigs in a timeline so you can get a feel for the progression of what Nate went through to bring us current to today. In 2005, there's the lengthy audition for "Rock Star: INXS" and then in 2006, "Rock Start: Supernova". Then onto "The Bonnie Hunt Show" from September 2008 to May 2010. Finally in 2011, he lands one of the greatest gigs of all times, "The Voice" We talk more about his early days in Los Angeles and we walk through his timeline of auditions, touring gigs with well-known artists and end in the present day. Enjoy and thank you for listening!! ********** Nate Morton: Nate's Website: https://natemortondrums.com/ Fraudprophets Website: http://www.fraudprophets.com/ YouTube: Nate Morton Drum Cam Facebook: https://www.facebook.com/natemortondrums/ Instagram: https://www.instagram.com/n8drumz/ Twitter: https://twitter.com/n8drumz Nate's company affiliations include: Pearl drums & percussion Zildjian cymbals & sticks Roland Remo ePad Cympad GoPro Sennheiser Kelly SHU WingKey https://youtu.be/pjljYtm5DCQ Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links: http://andygalore.com/ https://www.facebook.com/andygalorebass Subscribe, Rate & Review: I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.com/#thejoecostelloshow Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to: https://joecostelloglobal.com/#thejoecostelloshow Follow Joe: Twitter: https://twitter.com/jcostelloglobal Instagram: https://www.instagram.com/jcostelloglobal/ Facebook: https://www.facebook.com/jcostelloglobal/ YouTube: https://www.youtube.com/channel/UCUZsrJsf8-1dS6ddAa9Sr1Q?view_as=subscriber Transcript Part 2 - Nate Morton Interview: Joe: And some of Nate: I Joe: The process, Nate: Will say. Joe: Like with the Billy Myers or gay. Right. With with that with that two day audition series that happened. Nate: Yep. Joe: Were you given music ahead of time or did you have to go in and just wing it? Nate: Oh, God. No, no, no, no. If you're gonna do an audition typically back in that era and they would say, you know, oh, go to her manager's office and pick up this C.D. and the he would have, you know, three songs on it and they would generally be listed in the order that they were gonna be released as singles. You know, here's the first single second, third. And in the case of Billy Myers, I feel like her single was already out or was a song called Kiss the Rain. Kenny Aronoff, I think, played drums on the original recording. Joe: Ok. Nate: And yeah, that dude. Yeah. You know that. Yeah. That that up and coming guy. Joe: Right. Nate: What Joe: Right. Nate: He's got, he's got a lot of potential. Joe: Yeah. Nate: I think if he sticks with it, he's really Joe: Right. Nate: Going to Joe: Yeah, Nate: Go far. Joe: Yeah. Nate: I hope, I hope people get my, my stupid sense of humor Joe: They Nate: Like Joe: Totally. Nate: They're just out there just not like oh my God. He said he thinks Kenny Arnow is up and coming. Joe: The Nate: Oh, my God. He's an idiot. That guy. Joe: No. Nate: So, yes, Kenny, if you're listening. I'm sorry. Just joking. So. So I pick up, you know, you pick up the C.D. and. This is twenty, twenty years before almost 20 years before I have to start. No, no, no, no, no. I think that that. I'm sorry. That would have been in the. That would've been let's call it let's call it ninety nine. Two thousand area. And then it wasn't until. Two thousand, five, six or so when Rockstar came along, which is which is this TV show that I did where we started having to learn these like kind of high volumes of songs, right. Where it's like, oh, there's fifteen songs this week to learn, which in retrospect doesn't seem like a lot because there are times on the voice when it's like, OK, here's the thirty six songs rolling this week. Joe: It's amazing. Nate: But at that time to have to come in and in a week learn 14 songs or 12 songs, it was like, I mean if you do a tour. If you do a tour, you might be rehearsing. Let's just say six days a week. Seven or eight hours a day. And you, depending on the tour you're doing and the level you're doing. I mean, you might be learning two songs a day. You're not Joe: Hey, Nate: Saying Joe: Yeah. Nate: Muddy Lane shoes on the day because the keyboard players are dialing sounds and this is that I didn't want to wear. It was it was actually literally that it was literally out of a 10 hour day. The keyboard players and guitar players were dialing sounds for seven and a half or eight hours of getting the sound right for you. The track was so the idea that you would come in and in the space of a week, from Monday to Saturday, Saturday, really Monday to Sunday, you know, it's like Monday and Tuesday, you've got to learn 14 songs because you're seeing the contestants on Wednesday and Thursday. I mean, at that, like I said now. I mean, I could I could, I could. You know, this sounds terrible, but, I mean, I could do that and read a book and crochet a sweater at the same time. Well, but then but then the idea of fourteens on the two days like war. So anyway, my Joe: And this Nate: Only. Joe: Was the rock star time frame that you're talking about. Nate: Correct. Joe: When? Nate: This was the beginning Joe: Ok. Nate: Of rock star. This is Joe: All Nate: The Joe: Right. Nate: Beginning of rock star. Joe: Ok. Nate: So. So. Joe: And how did you get that? Like. Morgan walks in the room and like every drummer runs its runs to the corner like a bunch. Nate: Are you out of your mind? Joe: So don't don't you know, don't belittle Nate: Okay, okay, okay, Joe: The Nate: Okay, Joe: Fact Nate: Ok. Joe: That you had to go do something to get these gigs. That's important. Nate: Ok, Joe. Joe: It's. Nate: Ok. Why did you ask me? Ask me? Joe: Ok, so you were with Nate: Ask Joe: Billy Nate: Me, Joe: Myers Nate: Ask me, Joe: And then. Nate: Ask me the big question, which is because this is this is this was this is the big question that I'll bring it on home. Ask me the big question, which is how did you get the gig on The Voice? Joe: No, because there's so many other things in Nate: No, Joe: Between. Nate: No, no, no, no. Just Joe: Oh, Nate: Try Joe: I thought there Nate: It. Joe: Was. Nate: No, no, no, just try Joe: Ok. Nate: It. Joe: Really? OK. So Nate, how did you get the audition on The Voice? Nate: No, no, no, no, no, no. The gate, the gate stretch. Joe: Oh, the Nate: Try, Joe: Gag Nate: Try again. Try again, Joe. Nate, how did you get the gig on The Voice? Joe: Me. How did you get the gag on The Voice? Nate: Funny you should ask. Joe: Oh, good. Nate: So back in, ho, ho, ho. Get comfortable people back. Somewhere around 2002. I always want to do like in the year 2000. Joe: Right. Nate: If anyone remembers that, I don't even remember that little Conan O'Brien bit. That has to do with Eddie Richter. So back somewhere around 2002, I was playing with the singer songwriter piano player named Billy Appealing. That was a little earlier named Vanessa Carlton. So 2002, 2002, 2003, somewhere in that neighborhood, maybe 2003. And for those of you who may not be familiar with Vanessa Carlton, she had a single called A Thousand Miles. It was a really big summertime single. So interrelates with Vanessa, and we're somewhere in the middle of somewhere and I get a call. Joe: See? But there you go again, you skipped over, how did you get that gig? Nate: Well, I actually didn't skip over Joe because I said because I said Nate's a jerk because because I said that many of my earlier auditions, of which Vanessa Carlton was one can't be very Swier, actually. Probably Joe: Ok. Nate: Did. I probably Joe: Ok. Nate: Admitted that. Yes, she. So OK, then I'll give you the quick I'll give you the quick. Overview of the various wire gate, so of the various of the gigs that I did or of the auditions that I did when I first moved the town, that I found myself in a room in some way, shape or form or fashion at the result of knowing or as a result of knowing various wire. The first one was Billy Myers. The next one, I think, was Tommy Hinrichsen, who is a guitar player, bass player, singer songwriter, rocker of all levels. He's currently playing guitar with Alice Cooper. Right. But it's time he had a deal on capital. Yes, capital is the only capital records. So Billy Myers, Tommy Henderson. Darren Hayes, who was a lead. I think he was the lead singer of Savage Garden. And so for a minute there, Darren Hayes had a solo project. Darren Hayes. And so I didn't audition that. I was fortunate to get through that. I was unable to do it because of a conflict with another very ask audition that I did, which was Vanessa Carlton. So Darren Hayes and Vanessa Carlton conflicted. So I found myself having to choose between the two or fortunate to have the, you know, good, good problem of choosing between the two. And and I elected to. Play with Vanessa Carlton and then also in there was there was a well, there is a he's a bad ass, a techno dance artist, ETM artist, if you will, called Brian Transito or Beatty is his name. So those those handful of auditions all came through the Barry Squire stream. So Joe: Perfect. Nate: Very smart, Joe: Now, I feel Nate: Very Joe: So Nate: Suave Joe: Much Nate: Stream. Joe: Better now. Nate: There you go. Barry Swier Stream led to Vanessa Carlton. So both now mentor Vanessa. Phone rings This might've been a Bery call as well, but it was Hey, Nate. There's a certain big artist who's auditioning and she is looking to put the band on retainer and the auditions are this day, she's heard a lot of players. They haven't said of the band yet. And we would like you to come to the audition and I won't say the artists. Name, but her initials are Alanis Morissette. So. Let's hope Joe: Oh, Nate: So. Joe: Good. Nate: So Joe: That Nate: I'm Joe: Was true, Nate Nate: So Joe: Martin Nate: I'm free. Joe: Form right Nate: Thank you. Joe: There Nate: Thank Joe: Was Nate: You. Thank Joe: Perfect. Nate: You. Thank you. Thank you. Joe: God, I'm so glad. Nate: So so I'm out with Vanessa and I get this call that Atlantis is auditioning. And I know that Vanessa's tour is winding down. And so I'm very excited. I'm like, oh, man, this could be a great transition. So in the middle of the Vanessa gate, I fly home. All of this, by the way, I'm still answering the question, how did you get to get on the voice? If you can't if you can believe it. So, so so it works out that the day she's auditioning it, it falls on like a day off that I've got with Vanessa. And so it's a day off with Vanessa. I don't remember where we are, but I raced to the airport in the morning. I fly home. I'm listening to Atlanta songs on the way home, the song songs if you're going to ask for a rhyme, charting out my little charts. And I think and I get there and I go to the audition and. And it was amazing. I played it. Yeah. Sounds great. You guys will rock it. And at the end of the audition they go, man, that was great. You didn't get to play. Oh, my heart broke. I was so sad. Right. So I did not get the gig. They said, thank you for joining us. You're you know, you did a good job. But we're going to you know, we have another guy. OK, I get back on a plane the next day, I fly back, I rejoin Venessa, which is a great gig. No disrespect to Buddhism. Joe: Anybody Nate: And so. Joe: Know where you went in that period of time? Nate: Sure, Joe: Was it Nate: Probably. Joe: That the van? Nate: Or you know what? Do you know what the truth is? I'll be honest with you. I don't even remember. I don't remember. I don't remember. I might have said maybe it would be not kosher to be like, hey, I'm going home to audition for a gig that's no bigger than this one. And so so maybe I wouldn't have said it. Maybe it would have added more a little bit more subtle approach. But nonetheless, I didn't get it anyway. So I arrived back and then I finish out of Inessa tour and I'm a little bit bummed that I missed out on that great opportunity because. Hashtag comments were sent. Joe: Yeah, Nate: All Joe: Yeah, Nate: Right. Joe: Yeah. Hell, yeah. Nate: Shoot. So if you called me today, I'd be like, I don't know, can I. Can I fit your voice schedule? Or is it here? I mean, she's amazing. Right, Joe: Yeah, absolutely. Nate: Though. So the Vanessa. Tour finishes and not too long after the Vanessa tour finishes, and I feel like this is I feel like this is the end of. Oh, for. I get a call from a friend and he says, hey, mate, Mark Burnett is putting together his TV show. It's called Rock Star. He needs a band. And so he is called upon however many in eight, ten, twelve days to put together bands to come in audition to potentially be the house band on this show. It's going to be like American Idol, but it's going to have like rock and rock songs. You know, it could be great. And so I go, okay. That man, of course, I would love to. And so the person who called me for that audition was a bass player named Derek Frank, who has a very, very long list of credits to his name. So Derek put together the band as the band leader, and we went and auditioned. So now we're in early 2005, because if memory serves the first round of auditions for Rock Star, we're in the first or second week of the year. That was like January 5th or something, right? Was the audition. We audition and again, multiple bands audition again. The whole process is going on and on and on. And eventually they wind up saying, OK, I get a call from Clive Lieberman, who is I'm still in my life at that time. I get a call from Clive Lieberman and he says, OK, we've narrowed it down. We have three drummers that we're looking at. And you're one of the three. And here's the next day, you know, can you be here on this day? At this time? OK, sure. Of course I can. So I go there. And now now we're in like late January because the process started like early January. Now we're moving into like mid late January. Joe: Wow. That's incredible. Nate: The man I was started. I'm just getting warmed up. So so I go there. And the other drummers are playing and the rotating Grumman's in and out in the way that. I mean, I've done several auditions and they all work a variety of ways. But generally, if none of the band is set, then some portion of the audition live audition is that drummer with that bass player, that bass player with that guitar player, that guitar player with that drummer that removes that bass player on that guitar player in there, especially in this sense, has a television show. They're analyzing it all. So so they're they're well above like, do these guys sound good? They're like, do I like that guy's dreadlocks? In my case, for example, I know that guy has a guitar that's like Dayglo pink. That's cool. Oh, I hate that guy's boots. Like, it's on that level because the TV show. Right. So at the end of the day, we're playing with vulnerably. Okay. I'm let's let's say I'm drummer number three. So we're playing, playing, playing, playing, playing. At some point they say, okay, drummer number one, you can go home. And then I look around and there's just like German number two and me bling, bling, bling, bling, bling. And at some point they say, OK, drummer number two. Thank you a lot. You can go home and then it's just me and I'm playing for like the rest of the day and well into the night. So finally they say, OK, we're finished for the night. Everybody can go home. Now, when they did that on Billy Myers, it was this is the band we're playing Vibe tomorrow. Let's get her done as opposed to on this, where they're like. All right. Joe: Go Nate: So Joe: Now, Nate: I Joe: Go home Nate: Could Joe: And worry. Now go home and Nate: Go Joe: Worry. Nate: Home. Now go home. Right. So I go up to Clyde. Clide Lieberman. Love them, love, love, love. I got to climb. I go say Hi, Clyde. As I look around, I don't see any other drummers. I said so. So can I. I said, so should I. Should I go home and, you know, have a celebratory drink? And Clyde's response was, well, you should definitely go home and have a drink, Joe: Yes. Oh, no. Nate: Right? It's so, Joe: Oh, no. Nate: So, so now we're at the end of January. The band that they arrived at. Sort of somewhere in February. They had this band. Right. And I was included among and within that band. And they had an M.D., a guitar player, a bass player and a multi instrumentalist. And so then that band did a gig for the. That was a CBS show. So we'd have done a gig for, like, those higher up CBS guys. Right. We would have had to have been approved by them. Then at some point, they kind of went like, well, what if we had this person on bass? So then that band did another gig for the CBS people. Then, well, what do we have this person on guitar? Then that band did another gig for the CBS people. Joe: Wow. Nate: Then I was like, wow, this isn't working out. Let's go back to the other band. OK, now then that band did. So. So there were there were there were hoops aplenty to jump through. But in the end of all the jumping through hoops and I remember this date, I don't know why it's burned in my head. I could have it wrong. But I remember this date. I feel like May. I feel like it was May 19th. We were all sat in a room with the executive producer of that show, Rock Star. His name is David Goffin and that band. Was myself on drums. Sasha could face off on base. Half Amaria on guitar, Jim O'Gorman on guitar and multi instrumentalist and musical director. Paul Markovich. So that was the first time Paul, Sasha and myself worked together as a rhythm section. Now, Sasha was my bass player on Vanessa Carlton. And Paul had also worked with Sasha in other situations. But this is the first time at that that this was the genesis of that rhythm section. So. From Rock Star, that rhythm section went on to do multiple sessions in town. Two seasons of Rock Star. That band went on to do a tour with Paul Stanley. Ultimately, that rhythm section wound up doing the Cher Caesars Palace run. So now I flashed all the way forward from 2000 and. Five. Right. By the way. So the first audition, the first part of that audition was in early January. And the band wasn't solidified until Joe: May 19th. Nate: The end of May. Well, May 19th was when they said, if you want to do it. Joe: Got it. Nate: And then ultimately, by the time contract or signed. Yeah, it was the end of May. It was the end of May. Beginning of June. Somewhere in there. Joe: So all of this time, you're not making any money. Nate: No, the auditions that we did and the rehearsals that we did were paid Joe: Ok. Nate: Because because at the end of the day, you are a professional musician. So even whether whether you have the gig or not, it is still your time, you know. And Joe: Ok. Nate: It is, you know, I mean, we were we weren't on some sort of, you know, incredible retainer or anything. But at the same time, the powers that be know that to expect you to dedicate the time to learning these songs and doing these rehearsals and showing up and, you know, wearing halfway presentable clothes and showing up with good gear and playing gigging town and good, that's not something that people would typically want to do for free. That's something that that you know, that that's what we do. And so Joe: Right. Nate: They wouldn't have expected us to do that for free. Joe: So any point during this interview process from early January to this may date where it finally gets solidified? Did any other tour opportunities come up that almost tore you away to go and say, OK, this great thing has just come in? And if I get this, I'm out here, I'm done with these auditions. I'm going. Nate: So, Joe, when you called me. And you were like, hey, man, can you come in my pocket hasn't got to me and I was like, Sure, sure. And then you were just like, Yeah, we'll talk about your life story. Joe: All. Nate: And I was like Joe: Right. Nate: I was kind of like, oh, there's gonna be like everything I've always been asked before and about we all the same stuff. I hope Joe comes with a new question. I hope so. That's the first time anyone has ever asked me that question. Joe: Seriously? Nate: And yes, that's the first time I've ever been asked that question. And that is an interesting question. And it is, is it is very insightful. Joe: So we'll think I'm Nate: So Joe: Looking. Nate: Absolutely. Joe: I'm looking through all of this because I live through you, you know that, right? So I am all of these questions are like, man, if I was in the middle of all this and all of a sudden, you know, share, I get the call from Barry saying Cher's auditioning. So anyhow, that that's why it was Nate: Well, Joe: Important. Nate: And like I said, it's a good question and it's a very astute question. And the answer is yes. I mean, because it was from early part of the year to like May, April, you know, in that in that neighborhood. Joe: And they're building Nate: So, Joe: Up Nate: Yeah, Joe: Their tour Nate: That's Joe: Vans. Nate: When things are Joe: Right. Nate: Happening. Joe: Right. Nate: Right. That's why things are happening. I can't remember specific things that I would have, you know, turned down or that I would have not been available for. But I will say that even in that context of it not being solidified. I felt like it was definitely worth keeping my. Carts hooked to that ox because it was a TV show. And all the time that I was touring, I was definitely like, you know, like touring is great. Touring is a blast. I love it. I may wind up doing it again at some point. That'll be amazing. We'll be fine. But there's also an extent to where it's like it might also be nice to be able to make a living, staying in town and seeing your family every day and sleeping in your own bed, driving your car and go into your favorite restaurants and not dealing with the fact that you showed up at, you know, 10 and the rooms won't be ready until two. So you're sleeping on a couch in the hotel lobby. You know, that's that's also an element of truth. So. So, yes. So things came in. Kate came and went, and I definitely decided to stay the course and, you know, follow that that that path towards what I thought would be a TV show which wound up being a TV show. And where was I? Sorry, Bella. Joe: So, no, it's OK. So Rockstar, you guys did Nate: Right. Joe: A bunch Nate: So Joe: Of Nate: That Joe: Shows. Nate: Was the first time I played Joe: Yes. Nate: It, right? Right, exactly. Exactly. Joe: You're the new Nate: So. Joe: Heart rhythm section in town, right? Nate: Where are the new rhythm section and how. Joe: Ok. Nate: Oh, we were that time. But but yeah, you know. And so so the whole the only the only point that I was really trying to make in this very, very, very, very long winded, you know, spool here is. The. The fact that I'm able to be on The Voice now is a direct result of the relationship that I started with Paul Markovich back in 2005 on Rock Star. So what is this, 2020? Joe: Yes. Nate: Right. So. This whole gig started coming about. A decade and a half ago. And so I. And so I say all that, I say that to even spend it further back to talk about what I was saying earlier about relationships, which is that you have no idea, you know, the the guy that you do a gig with one time for one hundred bucks at a club somewhere. Might be the guy who calls you for the audition that completely changes the course of your career. Joe: All right. Nate: So, you know, Joe: So Nate: I mean, and. Joe: So Rockstar was till when? Nate: Rockstar, unfortunately, only lasted two seasons, Rockstar was 2005, 2006 on CBS. The first season it was Rockstar in excess and the feature band was in excess. And we were going through the process to find a lead singer to replace Michael Hutchence. And then the subsequent season was called Rock Star Supernova. And they had chosen Tommy Lee. Oh, this is embarrassing. Tommy Lee. Jason is dead. And a guitar player. Joe: Tell us of. Nate: But they are putting together the supergroup. They're putting the supergroup. And and so they were basically auditioning for a singer to front this supergroup. And that was what that season was about. And so then, yeah, like I said, that's easy. It ended. And then Paul Stanley called like Vee Paul Stanley. Joe: Yeah. Nate: Like the walking, breathing, living. Iconic legend Joe: Yes. Nate: Paul Stanley calls and says, Hey, guys, I'm going to go out and support my solo record. You want to play with me and I will. Duh. Joe: Right. Nate: You know, I mean, Paul is amazing. Paul, Paul, Paul is Paul and Cher. Paul, Stanley and Cher share. Shares is a share on all adult donor list, but possibly in share. Both have this. They are at once incredibly. Sort of present and know exactly who they are. And the fact that they are literally. Iconic legends. But at the same time, able to make fun of themselves, able to laugh. Selves able to be down to earth, able to be. Just so what's the word I'm looking for, relatable. Joe: Authentic. Yeah, Nate: Authentic, relatable Joe: Yeah, Nate: In a crazy Joe: Yeah. Nate: Way. You know what I mean? Have figured. I didn't pause daily. I said to you, man, I was in this band, you know, however long ago or whatever you guys met and she was older than that. Oh, okay. Go. I love it. Was the early days as to whether I was the rock band. It's the story. Joe: Peter. Nate: Sorry. You know, because I was such a funny time. So it's the band from Rockstar Impulse Daily. And I hit the pause daily as it meant the band from Rockstar and Paulist Aliens is the best band ever played with us. Here it goes. Yeah. Yeah. I'm sure this is the best band you've ever played with. Joe: Nice. Oh, my guys, Nate: No, Joe: It's Nate: It was Joe: Hours Nate: It was Joe: Of. Nate: So great. He was so great. It's like the cool thing, too, is we did it. We did a show a while back. And one of the songs we played in season finale after the season finale is over and the show's over. I hopped my car to drive home and drink. And I have a text from Paul Stanley telling me, oh, my God, man, great job on, you know, such and such a song tonight. Joe: That's so cool, man. Nate: It's amazing. Joe: It's so Nate: You know, Joe: Cool. Nate: He is he is genuinely one of those guys who. I don't know. He's just he's he he's he's able to balance being an icon and still being sort of down to earth and, Joe: That's really Nate: You know, Joe: Cool. Nate: Relatable and. Yeah. Joe: So what year is this that you go out with him right after Rockstar ends? Nate: Well, Roxette would have been a five oh oh oh five was one season. 06 was another season. And so I feel like we did. I mean, it would have been 06. It would've been 06. Maybe in two oh seven. But maybe just because because Rock Star was a summer show, so we wider than rock star and been down at the end of the summer. And then we might respect, like the fall slash winter with Paul Stanley Joe: Ok. Nate: And then been done because because the the second leg of the Paul Stanley tour was Australia. And so Australia, if you don't know or if anyone doesn't know. Is backwards to us. So Australia winter is our summer. So it's 100 degrees in the winter. So I feel like it was that. I feel like it was like the fall here. I feel like it was 2006 rehearsals. Maybe in the fall tour here in the fall. And then I feel like that tour would have gone into like maybe. Like October, November in in Australia, Joe: Ok. Nate: Something of that nature. Joe: And at Nate: Yeah. Joe: This point, is this the biggest tour that you've done up to date to Nate: With Joe: That Nate: Paul. Joe: Yet? Nate: He is definitely the most iconic artist that I would have worked with up Joe: Up Nate: To that point, Joe: To that Nate: You know? Joe: Point. OK. Nate: Well, OK. Well. No, because I don't mean. I tried not to like. Joe: You've done so many great things, we can't leave anything out. Nate: No, no, I'm just. I'm OK. What exactly Joe: That's why Nate: Is Joe: I'm Nate: Going Joe: Prodding Nate: On right now? Joe: You for all of this stuff. This Nate: No, Joe: Is my job. Nate: I mean, man, I'm just fortunate. I'm fortunate that I've managed to eke out a living doing this thing. And I'm fortunate that, like, people calling me to do what I do, I feel like. Joe: And you're about the most humble person I've ever met in my life. That's the reason. Nate: That's nice. That's nice of you to say. Thank Joe: It's Nate: You. Joe: True. Nate: But it's Joe: It's. Nate: True. I know. But you know what? It is so so look. So when I was in high school. I wasn't walking around like, yeah. One day I'm gonna play a post alien, Chaka Khan, and, you know, remember me on TV? I didn't think that. I thought like Joe: That was like your Richard Pryor. Nate: I thought. Joe: Now it's like you're selling Richard Pryor. That Nate: I'm so not going to even try to do Richard Pryor. Joe: Was Nate: But Joe: Great. Nate: But Joe: Oh, Nate: But Joe: Good. Nate: I mean, I guess. But bye bye. But my point is that, like, my point is every day I am of two people. I am the person who gets up and goes like, OK, today it's time to get up and learn the Peter Frampton song that we're playing on the show today. Like what? Like the first. Right. Right, so so, so part of me goes. OK, let's learn. Peter Frampton on. That's the that's the current me. But the high school me is still in there, and one of the first records I ever owned was a Peter Frampton record, right? Not Frampton comes alive, but it's like one before that. The single was a song called I Can't Stand It No More. Which I'm not even going to try to sing. But it's a really cool tune. But like so the part of me gets up and goes, OK, let's go to Linda Peter Frampton song play today. But then inside that is still like the little kid going like, I can't believe I'm playing with this guy. That is one of the dudes that I learned to play drums by jamming along to my drum set Joe: Yeah, Nate: To the Joe: It's Nate: To Joe: Crazy. Nate: The LP. I'm a record player, so I say all that just to say, like in terms of being humble. It's not like I'm trying to be humble. It's just that I still the meet the young me still steps back and looks at what I'm fortunate to do and goes, Oh my God. Dude, you're you're a lucky friggin fortunate mofo to get to do what you're doing. So and then again, circling back to where we were, which was you said up to that point, Paul Stanley. And the reason why I paused. I had not played with Cher at that point, but I feel like I had played with Natalie Cole at that point. Joe: Ah, Nate: Yeah, so. Joe: So that's Nate: Right. Joe: Here. Nate: So so genre differences, obviously, and volume of people who know, obviously, you know, potentially different. Joe: Yes. Nate: But I mean, in terms of iconic, Joe: Yes. Nate: I mean, they're both they're both right there. I remember going out to dinners. Natalie would have these dinners. We were on tour in Japan at one point and she said, we know want everybody come down to dinner at the restaurant, at the hotel or whatever, and we're there. And she would say things like, you know what? When Daddy said that? And I'm like. Joe: Oh, my gosh. Your mind explodes. Nate: My mind explodes. Joe: That is so Nate: One Joe: Cool. Nate: Time Daddy said, and it was like, Wow. Joe: Yeah. Nate: So yeah, man. So I mean so so I can't remember the exact timeline. But up to that point. Yes, it would have been Natalie, Paul Stanley. I had a short I had a short run with Chaka Khan Joe: Ok. Nate: Up to that point. So she's you know, she's you know, I mean, Chaka Joe: Yeah. Nate: Khan. Right. Joe: Hey. Nate: I mean it again, like I said, even as I say this, that I have a hard time saying these things because I don't come across like I played with her. It's like to me, I literally look back and I like I play with a person like they hired Joe: So Nate: Me. They're bad. Joe: Call Soquel. Nate: So now I it's. Yeah, it's man. I'm so fortunate. I'm so fortunate. Joe: So where are we in the timeline now, because. Nate: Well, at this point, we're up to about where we're up to Paul Stanley. So impossibly ends, Joe: Yeah. And this again, Nate: Stanley Joe: What Nate: Ends. Joe: Year is this? Remind me. 2009, Nate: Well, Joe: You Nate: We're Joe: Said. Nate: All well, we're we're pretty much almost current at this point because when Paul Stanley ends. That's got to be like, let's see, oh, five or six or seven. That's got to be like in the O2 eight ish 07, Joe: Ok. Nate: Seven or eight ish ballpark. Joe: Yes. OK. Nate: And then I did a TV show. I was fortunate to do a couple of TV shows, and one of them was called the Bonnie Hunt Show, which was a daytime talk show on NBC. And circling way back to your way earlier question about in terms of who was at early with me, who that I know still. So Churchill era was the piano player and the band on the body honcho. And and it is and it is through Chechu Elora that I got the call to audition for the band or the Bonnie Joe: Wow. Nate: Hunt show right Joe: How many years later Nate: Later than Berkeley. Joe: Here? It's like. Nate: I mean, it's a little Berkeley, I graduated ninety four, the call for Bonnie Joe: It's crazy. Nate: Hunt to audition comes 94, 2004 to about a decade and a half. Joe: It's crazy, right? This is exactly Nate: It's crazy, Joe: What you were talking about. Nate: But it's relationships, Joe: Yeah, Nate: It's relationships, Joe: Yeah. Nate: You know. So, yeah. So then. So Bonnie Hunt. And then that ran for a while and then Bonnie Hunt for a stretch, ran concurrent with Cher. So I was playing with Bonnie. And share at the same time, and I can't actually remember which one came online first, but what I was basically doing was I was playing in Vegas with Cher and then on my days off from Cher, I was coming home to Bonnie here in L.A. and I was basically driving back and forth and doing sort Joe: Wow. Nate: Of double duty. Yeah, it was it was a little bit. It was a little taxing because Joe: Oh, my God. Nate: I. Joe: So was Cher a Barry Squire gig? Nate: Cher actually came through my relationship with Paul Markovitch dating back to 2005, Joe: Ok. Nate: So meeting him in 05, doing the show with all five of six rock star Paul Stanley tour sessions in town. Other things in town. And then Cher would have come about. I mean, it feels like. Oh, nine ish. But don't quote me on that. Oh nine oh nine. Give or take six months to a year. Joe: Ok. And the share gig was at a walk on for you because of Paul. Or you still had to audition. Nate: Share. That's what he called a walk on. Joe: Guy, Nate: It makes Joe: I Nate: It sound so Joe: Don't Nate: So Joe: Know Nate: It Joe: What Nate: Makes us so casual, like, Joe: Would Nate: Hey, Joe: Have Nate: Man, Joe: Come Nate: Come on over Joe: Up. Nate: And play with us and share. Joe: I don't even Nate: Hey. Joe: Know where that term comes from. Walk on. Was Nate: Oh, Joe: It? Nate: Well, we'll Joe: Isn't Nate: Walk Joe: That like Nate: On Joe: A Nate: Is Joe: Football Nate: Like. Joe: Thing? Like if you don't have to. You don't have to go through the audition. Nate: No, Joe: Are Nate: I Joe: The. Nate: Think it's. No, I think it's kind of the opposite. I think it's a college. I think it's a college athletics term. But it's not a good thing. I know you're using it as a good term, but I think that in college athletics, you have your your your top tier guys who are on scholarship. So like, for example, on a college basketball team, like a Division One team, I think there's like twelve kids, I think. And I think that, like, 10 of them are on scholarship, but there's like auditions, auditions, music nerd tryouts Joe: Tryout. Nate: To fill like those last spots. Joe: Hey, Nate: And Joe: I Nate: I think Joe: Said auditions, Nate: Those last Joe: Too. Nate: Spots. Joe: I couldn't think of the word. Nate: Right. I think those last spots are walk ons like, OK. We've got art, we've got our eight or whatever it is, our 10, we've got our we've got our blue chippers over here. We've got to fill out the team, open tryouts, and then there's like 100 kids. And of that one hundred kids, you pick like four or five, whatever it is to fill out your team. That's a walk on. So like a walk on. Oftentimes never even gets on the floor like in in that context. But Joe: So Nate: I understand Joe: I Nate: What you're Joe: Totally Nate: Saying. Joe: Use Nate: No, Joe: That. Nate: You did. But no, but I understand. I totally understand what you meant. I told you so. But and to answer your question, yes. I did not audition. Mark was playing with Cher. And I believe that Pink had dates that conflicted. And so I believe that he made the decision to go and fulfill his obligation with Pink, which vacated the Cher position, which gave Paul the leeway to basically call me. And then I came in and I finished out the whole run with Cher at Caesar's Palace in Vegas. Joe: Got it. And she Nate: So Joe: Was Nate: Then. Joe: Amazing. Amazing person, everything you actually got to hang with her a little bit. Nate: She's Joe: A lot. Nate: Awesome. She's awesome. She she is one of the people like and again, I never take any of this for granted. I never think any of this is assumed. None of it. But like those kind of stories that you hear about artists who are like, you know what, I'm just gonna buy out the whole theater for Tuesday night. So my whole band and crew and dancers and everyone can go and watch Boogie Nights. You know, I mean, like or hey, I'm just gonna, like, buy out all of the pole position, indoor, you know, go kart race track for a night. So my whole band and crew could just go and do that. So, you know, she really she did a thing once where Cher is the coolest. Like, shares the coolest. And the first person to make fun of Cher is Cher. Like, she's so, you know, like self-effacing. But at the same time knows that she's an icon. And that's an amazing thing. It's an amazing balance. But we did a thing one night where we played. Bingo. Right. Hey, guys, I want everybody to come down to the theater where we're going to play bingo. OK, so here we sit playing bingo. And the prizes, if you get bingo, is like an Apple iPad. OK. So this person wins, OK? He got B eleven I 17 in bingo. Here's my pad. Thank Joe: Nice. Nate: You. Good bye. OK. Here's your iPad. OK. It's like. It's like. It's like Oprah. You got a car. Joe: Right. Nate: You've got a car. You've got a car. Right. So. So. So the night is that we played. I don't know. There's there's 200 people on the crew. And we played 30 rounds of bingo. So 30 people have walked out with iPods. OK, well, it's late. It's you know, it's Vegas. So. So, so Vegas late. So it's, you know, hetero. 3:00 in the morning. OK, everybody. It's all good. Great job. Last round works on me. OK. Goodnight. Right. Bye. OK. Show up the next day. Do you know whatever it is, soundcheck? Oh, date. He's right that way. What you mean? I didn't win. No, no. Sure. Have for everybody. Joe: Nice. Nate: You know, I mean, like that kind Joe: Yeah, Nate: Of thing. Joe: Yeah, yeah, Nate: He get out Joe: That's cool. Nate: So. So. So, yeah, I know she was she was one of the. Coolest, most relaxed, she Ampol. I mean, I don't. I got to say, it's it's ironic or not that two of the most well-known, iconic, well respected artists that I've ever worked with are also two of the most down to earth. Relaxed. Nothing to prove. Cher has nothing to prove. Paul Stanley has nothing to prove. There's no attitude. There's no weirdness. Like. Joe: It's really cool. Nate: It's really cool. Joe: Yeah. Nate: It's really cool. And I've just been fortunate that. I. I have historically never shows in. Gigs, opportunities, situations. Politically, and here's what I mean. I've never chosen a gig because the artist was the biggest artist or because the guys in the band I thought were the coolest guys who would call me for gigs one day. I've always been the guy who. If you call me for a gig, you call me for a game. OK, Joe. Hey, Nate. Put together a band for this game of going on. I'm never gonna be like, let me call the four guys who I think are most likely to call me for a big gig. Let me call the four guys who are my boys, who I think could really a user gig or B are going to play this the best. I'm never. So that might wind up being four guys you've never heard of. Joe: Right. Nate: But they'll kill it. Joe: Sure. Nate: And they're my buddies and. And it'll be a great game. So I guess my point is I've always done that and I've never chosen gigs. By the way. Based on. Political or financial gain? So numerous times. I've had a. That might be more beneficial politically or financially, frankly. But maybe I hate the music or I've got gig B. Where I love the music and I love the dudes, but it pays half what gig pays on gig based. And the reason I've always done that is because I've always hoped that in the end, wherever I land, I'm gonna be playing great music with great musicians in a cool situation with guys that I really love being around. And I am so fortunate that that's the case. The guys in the band on the boys are my brothers. Those are my guys. Joe: Right. It could Nate: You Joe: Prove Nate: Know. Joe: To be a really long tour if you're on a gig where it pays a lot of money. But the music sucks and Nate: Or you Joe: You don't Nate: Don't Joe: Like Nate: Like Joe: The Nate: The Joe: People. Nate: People. Yeah, or you don't like the people you're playing with. And and yeah. And. Yeah, I like I said, I've just I've just been very I've been very fortunate, you know? And again, it's like the guys on the voice are my family and not even just the guys on the voice. The guys are the boys in the band. The girls on the voice in the band. The whole voice, music, family. People sometimes say, how do you guys get along so well? And I'll quote one of our keyboard techs slash. Brainiac Patrick, who knows the answers to all the questions. He just does he's like DOE technology. But someone once asked, how do you guys get along so well? And Patrick said, or no, they said, why do you guys go along so well? No. Was it. Hold on. Let me go straight. Yeah, I was how do you guys get along so well? And Patrick said it's because we have to. But we have to in other words, what we do and the product that we create and the amount of time that we spend around each other and working with each other. It could only exist if we had the kind of family relationship that we did. We have to if it if it's not that it can't get done, it can't Joe: Right. Nate: Happen. Joe: Right. Nate: You know, Joe: Yes. Nate: So I'm rambling, but that's kind Joe: No, no, Nate: Of where Joe: No. Nate: That's kind of that's that's the whole story. So, so, so an answer. Joe: So, again, in the timeline, year two thousand nine. Nate: Yeah. That's when the voice starts 2010, somewhere in that ballpark. Yeah. Joe: When the voice was, I guess I might be getting it mixed up with the rock star. The Voice wasn't a lengthy audition, right? It was you already because of Paul and everything. I don't remember. Nate: Well, I mean, the voice, so the voice came about. The voice was not an audition. The process that led to me being on The Voice. Started. A decade prior. Over a decade prior, you know, so. So, no, it wasn't an audition, but it was a relationship that built over the over the preceding however many years that was from. Well, I said it decades. So I guess I guess not a decade. But. The voice would have been 2009 10 and I would have met Paul is more than five. So about a half a decade. So, yeah, so would have been a five year, six year relationship prior that led to the voice ultimately Joe: That's Nate: For Joe: Amazing. Nate: Me anyway. Joe: Right. Nate: Yeah. Joe: And it's and it's going strong and you guys sound better than ever. And it's just amazing. And just to be on the set. It was so cool. I think the funny and I tell people the story all the time. The fact that I was able to have, you know, some ears to listen to Nate: Yes. Joe: The band, Nate: Oh, God. Joe: The banter Nate: Oh. Joe: On the bandstand. Nate: Woo! Oh, don't you ever put that out anywhere Joe: Oh, okay. Nate: Where the worst are the worst. Joe: Okay. Nate: All we do is back on each other all day. Joe: Oh, my gosh. It is amazing. So what else? I want to make sure we didn't miss anything. And I want to also give you a moment to plug anything that you're doing. I don't know if you still you still have your band outside of The Voice. Nate: Well, I'm involved in a side project with my buddy Sean Halley, Sean Halley and I, and sadly now do you always do these v a zoom? Joe: So far, because I just started it when all of this happened. Nate: Right. Joe: So. Nate: And all of this for your listeners who may see this down the road, years, three years, four years is that we are in the midst of a zombie apocalypse. Joe: Correct. Nate: There are cars being turned over. Joe: Better known as Cauvin Nate: Yes, Joe: 19. Nate: Yes. Yes. That's Joe: Yes. Nate: It's it's it's crazy. So, yeah, I mean, all of this is happening amidst this time when, you know, gigs are getting canceled and all of this. And actually, I had a gig with my side project, which is a band called Fraud Profits, which is myself and my dear, dear friend Sean Halley, also a genius, by the way. And we had this band for our profits, which was filled out by bass player Ben White. And Ed Roth was gonna be playing keys with us. And we had a gig booked on April 10th that we were all excited to do it. And so it's not happening. But in terms of things that I'm doing outside the voice, that is one of the primary things. So you can if you're interested, you can look up Frauke profits F are eight. You d p r o p h e t s dot com. And you can also find us on Instagram. You can also find us on Facebook. And so we will continue to keep you updated on what we're up to in the albums available where all albums are available. It's called Pop Ptosis and it's really rad. Yeah, Joe: Awesome. Nate: Yeah, Joe: All Nate: Man, Joe: Right, cool. Nate: It's. Joe: And then what about lessons? What are you doing Nate: I don't know, I guess trying to study with you at some point when you have some have Joe: Ok. Nate: Some availability Joe: Well, Nate: And you can you Joe: Yeah, Nate: Can fit me Joe: I'm Nate: In. Joe: Pretty tied Nate: Ok. Joe: Up Nate: We'll Joe: Right Nate: Get back Joe: Now. Nate: To me. Get back to me. You can when you can fit me in your schedule. Now, Joe: Oh, Nate: So. Joe: Good. No, sir. So how can people how can drummers that want to go to the next level take lessons from you? How I know that. Nate: Right. Joe: I guess if they're in L.A. and when things get back to whatever air quotes normal, if that happens, they could come there to your studio and Nate: Right. Joe: Do it. Nate: Right. But in Joe: You Nate: The meantime, Joe: Doing? Nate: I Joe: Yeah. Nate: Will. I am making myself available for online lessons. And it's a thing that thanks to this. I think I mentioned to you earlier, I got my whole rig up and running. So I'm talking into like an actual microphone as opposed to my my earbuds and I have on headphones as opposed to my earbuds, because the headphones, the microphone are all running through my studio gear, which I'm making like gestures at, but no one can see. But I am getting the rig here setup so that I can do online lessons. I have done some of the past and I'm thinking that with my new audio going on. Thanks to the motivation of getting with you and chatting tonight. I have it a little bit more under control. So sure, if you want to man if you want get together online for like a lesson or an exchange of knowledge or any of that stuff, I'm so easy to find. I'm on Instagram or Insta, as I call it, when I want to make my wife really Joe: It's Nate: Angry. She's like Joe: Nice. Nate: No one calls it. It's the I call it ads that no one calls it. It's. Oh. Joe: Oh, good. Nate: No, Joe: So Nate: It's very. Joe: What's your what's your handle on Instagram? Nate: Oh, no. Joe: Oh, man, I'll I'll find Nate: Shut up, Joe: It and put it Nate: Shut Joe: In the show Nate: Up. Joe: Notes. Nate: Wait, wait, wait. No, I think it's just. I think it's in in as inmate eight, the number eight D. Are you Amzi in eight D. Are you M z. I think that's me on Instagram. It's also my license plate. Oh, hey, buddy, sorry. So so the band was having a rehearsal at center staging. And my license plate on my SUV says in eight D-R, UMC meat drums. And there were some other band there and I can't remember who the artist was. But like the drummer and the guitar player of that band came over to our rehearsal. I was hanging out. And you know how it is. Musicians know, what is this? The voice. Oh, what are you doing? I'm doing this gig. And so the drummer talks to me and says, Oh, you know, you're the drummer on The Voice. What's your name? Nate anymore. Oh, Nate. Nate. Oh, is that your car in the parking lot? This is Nate drums on the license plate. I was like, yeah. And like, literally, I swear to God, that's because. I could be an atriums like like I felt like I needed to have a gig Joe: Right. Nate: Of a stature that would allow me to Joe: The Nate: Have the mic. Joe: Name Nate: And Joe: On Nate: They Joe: Your Nate: Trust. Joe: License plate. Perfect. Nate: Oh, yes. I was like, oh, you're so young, like young, you Joe: Oh, Nate: Know? Joe: Good. Nate: But he was funny. He was funny. All right. You could be aid drops was like, thanks. Joe: That's so Nate: Next year, Joe: Funny. It's awesome. Nate: Let me just give like a.. Joe: Yeah. Nate: Ok. Joe: Oh, God. Nate: David, he was girl. Of course. And of course, I looked him up and he's like, you know, what are these killing young drummers? There's so many bands. There's so many of those incredible guys Joe: Yeah, Nate: Just playing all that stuff. Joe: Well, cool. Nate: And I go, boom, boom, boom bap. Joe: Yeah, well, no, you don't, but you can say that if you want. You do a lot more Nate: It's Joe: Than that. Nate: True. Joe: So how about Nate: Well. Joe: Facebook? Do you know where they find you on Facebook? Nate: Yeah, sure, Facebook dot com slash Nate Morton drums. Joe: Perfect. So we did Instagram, Facebook. You have a website. Nate: I don't have an actual Web site. The closest thing I have is probably the for profit scam Joe: Ok, cool. Nate: Site. Joe: Ok. Nate: And what else we got? Joe: I assume Nate: Facebook. Joe: You don't hang out on Twitter or do you? Nate: You know what? So here's the thing. And I'm just being honest right now, it is being real. Somewhere along the line, I intentionally or unintentionally linked my Instagram to my Twitter. So it seems like whatever I put on Instagram winds up on Twitter. Or maybe it's my Facebook. But no, I'm not really active on Twitter. So if you actually want to catch up with me, find me on Facebook and I'm easy and like I'm not always the fastest to get back, but I get back to people. So if you find me on Facebook, dot com slash Nate Morton drums and you follow me there, you send me a message, whatever, whatever. I'm going to find it eventually. I'm gonna get back to you because it bugs me. My OCD would be bother. I can't look at a message and like, just delete it. Like, I look at it and I go back to that. So even so, if it's a it's over a day or a week or a month. I do my very best to get back. Joe: I'm sure. Nate: And and and you can always go, like super old school and just email me at an eight D argue Amzi at EarthLink thought that. Joe: Cool. And then really important is your YouTube page. Nate: Oh, I asked ask you to recite Joe: No. Nate: It. Joe: I'll put it in the show notes. But do you have more? Do you have your name? One and then. Is it the nake? Nate: No, no, it's just one. Joe: So it's the one Nate: It's Joe: With Nate: Just Joe: The Nate: One. Joe: Nait can. Like all the stuff. The Nate: Yeah, Joe: Voice videos. Nate: Yeah, it's all Joe: Right. Nate: On the same. That's all Joe: Ok, Nate: The same. Joe: Cool. Nate: Yes, that's all the same channel and it's YouTube dot com slash. See, like the letter C slash. Nate Morton drums, Joe: Perfect. Nate: Youtube dotcom Joe: See, Nate: Slash Joe: Nate Martin jumps. Nate: C slash O C anymore and drums. Oh, wow. Joe: There you go. Nate: I kind of just got that. Again, I swear. Joe: Oh. I think I should actually put some, like, cool Jeffs Nate: Yes, Joe: On the Nate: Yes, Joe: Video like that, lower Nate: Yes. Joe: Your head, just explode like the top flies off. Nate: I think Joe: All right. Endorsement's. Nate: If. You're awesome, Joe. Joe: Say always thinking. Nate: That's my endorsement. That's my words. Joe: No, no, Nate: That's my judgment. Joe: No. Nate: You said endorsements, Joe, your incredible. Joe: Yeah, well, you're amazing. But that's not Nate: What Joe: What you know. Nate: Does that mean? OK. So I am very, very fortunate to be affiliated with some really awesome companies. I'm afraid to say them all because like. I'm afraid to forget one and then Joe: Oh, I know. OK, Nate: So, so, so, so it's OK to put it in the Joe: I put in Nate: In Joe: The show. Nate: The text. Joe: Yeah. Is there anything else that I missed that you wanted to talk about? You know, I don't want to leave anything out. Nate: You know what? That's that's that's interesting, you should ask. And I will just I will just say this. I have it's going to be really weird. I'm going to go a little a little go a little left, Joe. Joe: That's Nate: And I Joe: Right. Nate: Know if you're expecting this Joe: That's Nate: Or not. Joe: Ok. Nate: I have six kids. I have a wife. Her name is Nicole, and outside of all of this, the show stuff and the gigs and this audition and that audition and this tour and that artist in that venue and that TV show and all of those things are amazing. I have to say that. I find my motivation and I find myself. Looking back on what is most important and all of those things are great. In the sense that. They allow me to do the things that I want to do with my family. Does that make sense? Joe: Absolutely. Nate: Know, I don't mean to be fruity or anything. It's just it's like I spend I spend a little bit of time getting to do things like this, like chatting to you. And I talk about drumhead to talk about music on the show. And I just never want to lose sight of the fact that within that world. I take a lot of pride and I put a lot of import on being able to spend time with my kids and my family as well. And one of the biggest words in our industry or in my life. I'll speak very small scale. One of the biggest words in my life is balance. And so while it may look from the outside, like the balance is completely shifted to all of that, there's also the other side, which is that you've also got allow yourself time to like spend time with your gnarly four year old to drive you crazy because she's insane or you're a two year old who might fall off the trampoline if you don't zip the thing closed. Or my 13 year old who has a tennis lesson or who can't play tennis right now. So I take him to Home Depot so he can hit on the on the wall or my 17 year old who I drag into the lounge room to play a game of chess with me or my 19 year old who is away at college while he's home. Now, who I communicate with and go, how's things going in your pursuits? You know. Or my. I left on my eight year old. Who? Who is it? Eight year old teenager. She's eight, but she's already a teenager. Isabelle, could that have a hug? Okay. Joe: Fine. Nate: You know, so. So it's like I don't mean to get too cheesy, but, you know, a long time ago, a great and dear friend of mine, Tony de Augustine, said the hardest thing about creating a career as a professional musician is finding a balance. And I said, a balance between what? And he said a balance between everything. And at the time, I was in my early 20s and I was like, what? What does that mean? And the older I get and every day, every week, month, year that goes by, I really do get it. It's a balance between. Gigs that you love. Gigs that pay the bills. Being gone on tour, making money and supporting your family. Seeing your family. Working hard and, you know, doing whatsoever versus having to work, but making yourself spend time doing things that are important otherwise. So again, I don't mean to get too cosmic with all of this, but yeah, I just want to make mention of that. I just wanted to make mention the fact that. Again. Certainly. Certainly way back again to Sharon, what's her name? Who said you don't sound very well rounded? I said I'm focused. Well, now I've adapted that focus. And that focus is, you know, to fill the time, music and and creativity and doing that side of things. But it's also in focus on Family and spending time with the wife and the kids. All those people who put up with me, Joe: Yeah. Nate: You know, all those little people who call me dad, I'm like, what? Joe: Yeah. Yeah. You have such a great Nate: And Joe: Family. Nate: My wife and my wife and the wife who puts up with me, the wife. Joe: Yes. Nate: I couldn't. I couldn't I couldn't be in my studio working 10 hours a day without her. Joe: No. Nate: I couldn't jump in my car and drive in the universal and work, you know, 80 hours a week without her. Joe: Go Nate: Right. Joe: Get. Nate: So. So those people are important and those people create the balance that that that makes my life really fucking cool. Joe: You deserve, brother. It's. I am honored to call you a friend. I am so glad we met. I don't even know how it happened. I, I know that we were both at one of those drum get togethers. It was a remote village in something. Nate: Yes, sure, probably, yeah. Joe: And I saw you as I was leaving and I handed you a card. And I had this funny slogan on the back of the card. And I was like a block and a half away already. And you're like, Hey dude, I love your card. Nate: It's Joe: It was really funny Nate: Like Joe: Like Nate: Me Joe: That. Nate: That Joe: Yeah. Nate: Sounds Joe: And Nate: Like me. Joe: Then it just it went from there and all the other stuff. So I appreciate you so much and I can't wait to Nate: I Joe: See Nate: Appreciate Joe: You in Nate: You. Joe: Person Nate: I appreciate Joe: Again. Nate: It. Joe: Please give. Nate: Hopefully soon. Joe: Yeah, I know. Please give my love to your family. Nate: We'll Joe: And Nate: Do, buddy, and you Joe: Yeah I will. Nate: And you. Joe: I will. And I really appreciate your time. And this is awesome. And thanks so much. Nate: Joe, absolutely my pleasure. And thank you for having me on. Joe: All right, brother, I appreciate it. You take care.

The Joe Costello Show
An Interview with Radio Personality, Commentator, Drummer, Rick Lewis

The Joe Costello Show

Play Episode Listen Later Apr 30, 2020 80:18


Rick and I became friends some years back through a mutual acquaintance and our friendship has grown more and more over the years. We have a deep respect for each other, our drive and our accomplishments. We share a kinship in that we're both drummers and love to watch each other perform and share our experiences on and off the stage. Rick takes us all the way back to his early childhood where we learn how his path and his outlook on life, was created at a young age both musically and personally. You will hear him say throughout this interview, the words “No Fear!” and you'll see why he has accomplished so much in his life up to date and why he continues to push himself and grow even more. ********** Rick Lewis: Radio Personality Color Commentator for the Denver Broncos Drummer for The Rick Lewis Project *iHeartRadio Shows* https://thefox.iheart.com/featured/the-rick-lewis-show/ https://koanewsradio.iheart.com/featured/logan-lewis/ Rick's Links: Instagram: https://www.instagram.com/1ricklewis Facebook: https://www.facebook.com/ricklewisproject/ Twitter: https://twitter.com/1RickLewis https://youtu.be/oDbwc0ss72A ********** Podcast Music By: Andy Galore, Album: "Out and About", Song: "Chicken & Scotch" 2014 Andy's Links:   http://andygalore.com/ https://www.facebook.com/andygalorebass ********** Subscribe, Rate & Review: I would love if you could subscribe to the podcast and leave an honest rating & review. This will encourage other people to listen and allow us to grow as a community. The bigger we get as a community, the bigger the impact we can have on the world. For show notes and past guests, please visit If you enjoy the podcast, would you please consider leaving a short review on Apple Podcasts/iTunes? It takes less than 60 seconds, and it really makes a difference in helping to convince hard-to-get guests. For show notes and past guests, please visit: https://joecostelloglobal.com/#thejoecostelloshow Sign up for Joe's email newsletter at: https://joecostelloglobal.com/#signup For transcripts of episodes, go to https://joecostelloglobal.com/#thejoecostelloshow Follow Joe: Twitter: https://twitter.com/jcostelloglobal Instagram: https://www.instagram.com/jcostelloglobal/ Facebook: https://www.facebook.com/jcostelloglobal/ YouTube: https://www.youtube.com/channel/UCUZsrJsf8-1dS6ddAa9Sr1Q?view_as=subscriber Transcript Rick Lewis Interview: Rick Lewis Interview Joe: Hey, Rick Lewis, man. How you doing? Glad you Rick: Well, Joe: Could join me. Rick: Good to see you, too, Joe. As you can tell, as we were setting this up, I'm a borderline moron when it comes to this type of technology, so I'm trying my best. Joe: Hey, that's what happens when you're a big shot and they have everybody around you taking care of the technology. You just sit back and put the Rick: Yeah I need an I.T. guy at my house Joe: Headphones on and start talking Joe: [laughter] All right, cool. So I just wanted to start from the beginning. We're gonna just do a quick overview of where you started out and so let's just dig into it, man. Everyone's going to know by the time we start talking, at least your bio and everything else. But, you know, I want to start from the very beginning and get a quick synopsis of where you grew up, where you were born, where you grew up. Start from there. Rick: Yeah. So I was. I was born outside of Detroit, Michigan, in a steel town, blue collar steel town. Great place to grow up. Just, you know, really, really good childhood. A lot of great memories. My dad worked for a chemical company there and we lived there from the time I was born till 6th grade. And then my dad started moving around the country because he was kind of moving up, up the ladder in his company. My dad was the first guy in our family to ever get a college degree. And so he kind of broke the mold of, you know, generations of the family. And I really admire him for doing that because he had five kids. He was going to night school to get a degree. I don't know how he did that, but he did it. And once he got his degree, he started kind of moving up in the corporate world a bit. So middle of 6th grade, I moved from Detroit to Columbus, Ohio, middle of 9th grade, I moved from Columbus, Ohio, to Naperville, Illinois, which is right outside Chicago. And then just before my senior year, we moved to Cincinnati, Ohio. So we moved around quite a bit. I went to I think it was four different high schools, in two different states. And I think that...you know, what the time was was a little bit traumatizing because you're always the new kid. But looking back on it now, I realize that it it there were some good things about it that kind of molded me into who I am today. Joe: Right and from what I know, you and I are friends and I know you a fair amount, but I have a feeling that you are really good athlete, right? Rick: I was a really good athlete. Yeah. You know, growing up, I always thought I wanted to be a pro athlete. And that was my dream and that was my dream until I got into college, and then once you get into college with with better competition, you know that that dream was quickly shattered and I realized that that wasn't going to come to fruition. But so that was about until I was about 19 years old, until I realized that, yeah, I'm a good athlete, but there's a lot better athletes than me out there and it just wasn't in the cards for me. But yeah, growing up, we played every sport in Detroit. You know, every sport throughout the season, hockey, baseball, basketball, football and very, very competitive. We played we played a lot of sandlot games back there that were very competitive with some really good players and it was it was really cool to be in that type of competition where you have a real sense of pride for your street or your neighborhood and you're playing against all these other neighborhoods. And it got, it got to the point where there'd be fights. You know, there'd be a lot of, a lot of people that held grudges, you know, and that type of thing and ah like I said, it was kind of a tough part of of the country with all like blue collar, you know, people's kids that were really grinder's and just really gave everything they did...100% percent effort. Joe: Right! Rick: And I was one of those guys. Joe: I know, I know from your mentality that you weren't going to take any shit from anybody, so, so so how did you get to NAU in Flagstaff? Rick: Ok. Joe: How'd you pick that school out of out of Rick: Yeah, Joe: Everything? You know Rick: Well, like I said, we moved around a lot, so I was a good football player. And the fact that we moved right before my senior year was not good for somebody that was hoping to move on and play college football and get recruited and get it to a good football program because, you know, it's hard to follow somebody, especially back then, not today with social media. You know, it's a lot easier to get your profile out there to, you know, college recruiters and coaches. But back then, it wasn't. So the fact that I moved right before my senior year was a bit of a handicap for me. But I had a good senior year and I was getting recruited throughout the state of Ohio and Indiana and Kentucky and places like that. That I wasn't really that interested in going to, you know, a lot of smaller schools, a few mid-level schools. I did get letters from some other schools around the country, too, that were bigger. But I didn't have the confidence at that point to one up, you know, leave, leave or leave home and go halfway across the country to try to play at a at a bigger school. But anyway, NAU one of the schools that that did recruit me back then, I never even heard it in a year in Ohio. I mean, I had never heard of that. I heard the name before. So I ended up going to actually went to Miami University, Miami of Ohio, which was about an hour, maybe an hour and a half from my house. And the reason I did that is because at a high school girlfriend that I thought for me it was more important that I stay close to home so I could be around this high school girlfriend and Miami of Ohio had a really good football team at the time. Rick: They didn't recruit me. So I just went there so I could be closer to my girlfriend. Three weeks since you broke up with me and, you know, the typical freshman story. And so I couldn't wait to get out of that school. I mean, I just kind of I waited one quarter and I quit and I came back home and try to figure out what I was going to do next. And it was at that point that I really I think is when I would say I became a man at that point, because I had a I had a bit of, I guess you'd call it an awakening or epiphany back then as I was going through all of this pain, you know, this is high school heartbreak. And I realized that ah, that I had, I was I was blessed with a lot of things. I was I was born at the right time, you know, born in the United States. You know, I was athletic. I had had some intelligence. I had some musical ability. And I realized that I had all of these skills that were already given to me and that it was my job at that point to take all of these gifts and then try to make them better, you know, try to enhance myself in every way and become a better person all around. And so once I had that epiphany, I decided that it was time to launch. And I remember that NAU had recruited me and I like I said, I'd never even heard of you before but Arizona seemed like a really exotic place to be, especially for a kid from Ohio. And so I decided that's where I was going to go. Joe: And what did you. Yeah. So what did you go there to do? Cause it it wasn't getting go there for football, right. Rick: Yeah, Joe: What was your major. Rick: I did. Joe: Oh you did. Rick: Oh, definitely. Yeah. Joe: Oh, cool. Rick: And I had no major in mind at that point. I was I was on a different kind of mission. I wasn't going there to learn or be educated out of a book. I was going there to experience life. And so the school part of it wasn't all that important to me. I had something else in mind and that was just, you know, finding out who I was, what I was fully capable of doing, challenging myself and at that point, I would say I had no fear. I had no fear of failure. I had, I didn't even have a second thought that whatever I did wasn't going to work, that I would find a way to make it work. And I would find a way to be successful and I just...I could have I could have done anything at that point. I literally could have done anything. But I didn't know what it was yet. But I had a feeling whatever I did, it was going to be great! It which change this belief, just this faith that I had. So I went out there, you know, the football was a part of the package, but it was really just to find myself in the football part of it ended up becoming becoming a very minor part of the experience out there, because I learned so much about myself and what I was capable of doing. And I had several majors when I was there. I just you know, I could never find anything that really interested me enough in school until one day at the gym, a guy told me that he had a show on the campus radio station and he said, you should come down tonight to them on my radio show. I'd never even thought of it. And I said, "OK, that sounds cool, I'll do that". So I went in there that night and I really liked it. He put me on the air. I ended up getting my own show. I'd found my thing, basically. So when I went out there for with complete confidence that I would find but not knowing what it was at the time, I did find it. It's... Joe: How far was that into into that college year or like was it the first year, second year? Rick: I want to say it was year two. And I was only there for two and a half years, so I would say probably right after my first year I discovered that. And then I switched my major to radio TV. Like I said, I got my own show on the campus station. I, I knew I was...I knew I was good at it right away. You know, I just found my thing just like you when you found that you could play drumms, right? You knew Joe: Yeah. Rick: What your thing is. So I knew what my thing was. And so I also got I was doing ah...I was like a club deejay. They had nightclubs and stuff like that, you know like disco kind of thing. I became a disco deejay and that was really fun, I really enjoyed that. And just once again, just developing my craft, basically learning how to talk in front of people, learning how to put on a show, learning how to present. And that just was just giving me more and more experience for my radio TV career that follow. So after, after a year or so of doing that, you know, a lot of people were telling me, you know, a lot of people in Flagstaff were telling me right now my, my group of people [laughter] Joe: Right. Rick: Would be, you know, they were saying, you know, "Rick, you're really good at this man. You should go to Hollywood. You should you should try to get into movies in Hollywood". And I was thinking, yeah, you know what? I should probably try that. And so once again, going back to the no fear thing, that's what I did, I ended up quitting NAU after two and a half years. This was this because after like right after the fall semester. So going in to the spring, some guy that was driving to California for a job and I didn't have a car, I didn't have any money, I literally five bucks, that's all I had. So I had no car, I had five dollars to my name, everything I owned a pillowcase. I did, I didn't have any, anywhere to go up there, I had no place to stay...nothing. Well, there's this guy that I was driving out with, had a van, so I thought, well, you know, if I get desperate, I could maybe sleep in this guy's van. So I went out there and I quickly got hired at a club about there in Orange County as a deejay. And not only did I get a job, they gave me room and board at a at this nice hotel because the club was at a hotel. So I got a job, room and board at the hotel, I got a company car, all my, all my meals paid for and all my laundry and dry cleaned. Joe: Geez. Rick: So it was like I hit the lotto, you know? And I remember I called my dad up when I got out there because he was really mad at quit school. And I called my dad up when I got out there and he ah...he goes, "So what are you really doing out there, son?" He goes "Are you in the Mafia or something?" He goes, "He said, no...nobody gives a 21 year old kid a company car". I said, yeah, I know, Dad, but they did and so I had that, you know, so that gave me some stability and some income. And I went out and got an agent and this agent sent me out on my first, like very first audition was a movie called "Fast Break", which was a basketball movie, Gabe Kaplan was the star of it. And um,  I tried out for it was a very minor role in the movie. Basically just had to play basketball. So once again, going back to the athletic ability that I had. Right. So that was my tryout and they went, OK, good, you got the part. So I ended up I work six weeks on this film every day for six weeks, and it didn't pay that much. Rick: I still remember when paid it paid seventy five bucks a day. And at that point, I'd had a motorcycle. Um, I rode the motorcycle to the set every day in L.A. for six weeks...it never rained one time. Lucky because at that point I didn't have the car anymore because when I got this job, I had to quit the the deejay job. And so that I had to get a motorcycle, somebody loaned me money to get the motorcycle. Some guy just said, you know, "Let me buy that for you". So once again, it's just like it's like everything was just meant to be for me. And so that kind of got me started down the path of trying to be an actor. The movie was a was a big hit for those of you watching this now, you could still find that movie. It pops up like on, on TBS, like once a year they play it. At the time, it was one of the biggest movies of the year that came out because Gabe Kaplan was a big star back. He was coming from Welcome Back Kotter to that. And so. Joe: I'll have to rent it now so that I can and I have to figure out if I can find you somewhere in the film before we get past this point, though, I want to ask you, what gave you the foresight to to actually go and get an agent? How did that come to your brain to go, wow. I need to go get an agent. Rick: Why just knew I just knew if you're going to be if you want to try to get some TV or movies, you needed an agent. And so this guy this guy got me in quite a few things, mostly, mostly extra roles but I did pick up ah, I got a couple of national TV commercials, I got a Budweiser commercial, I got a Marantz stereo commercial. I was an ABC sitcom called "Makin' It" with David Naughton. You know, just a minor role...I beat him up in the show. I was like a tough guy and, and they and they you up, they didn't think I looked tough enough and I had, I had blond hair, kind of surfer guy look and so they sprayed my hair black with, with a Joe: Oh Gosh... Rick: spray paint out of the can. They sprayed my hair black to make, it look like me. So I was kind of disappointed in that because if you watched it and knew me, you wouldn't even know it was me. Joe: Oh Wow! Rick: But a lot, a lot, a lot of cool experiences along the way. Joe: That's really cool, and it's funny because you started out doing the radio thing, which is not in front of a camera to being fully in front of a camera and then come where we are today, now you're well, actually you do both now. So it's kind of cool. You got the experience, so you're comfortable in both situations. Rick: Yeah. And the way I got decided to go back into get into radio is, this is, this is really was a turning point in my life. I was working at a liquor store, like all actors do. You're either a wait, you know, a waiter or you work at a liquor store or something like that. Something that gave you the freedom to be able to go out in an audition and do whatever you needed to do. So as working at a liquor store in Anaheim, right down the street from Disneyland. And it was a Friday night and that night a show that I was on was on TV. So I brought a TV in to the liquor store because I wanted to...you know, I obviously wanted to watch myself on TV. And in effect, it was that show "Makin' It" that I just mentioned, the ABC sitcom. And so I brought to TV in and I had it on the counter and it was a Friday night on Harbor Boulevard in Anaheim, right down the street from Disney. And a couple of guys came in and, you know, put a 12 pack on on the counter and and I'm busy looking at the TV over here and I turned around I said, "You want anything else?" They went "Yeah, I think we'll go get another 12 pack. I said, "Yeah, that's great!" And so I go back, I'm looking at the TV, one guy comes around behind me and the guy in front of me puts a gun to my head. So they're obviously holding me up. Yeah, Joe: Yeah, man... Rick: It's so. Rick: You know, it's you don't know how you're going to react in a situation like that, until that happens and everything for me just slowed way down almost like slow motion. And I didn't panic, I was, I was really calm. I gave him the money out of the um, the cash register, but I knew that they had some marked bills in there. If you pulled these marked bills, that triggers a silent alarm and the Anaheim PD comes because if you're getting robbed, that's what you did. I didn't, I didn't, I didn't want to give him those bills because I knew that the alarm would would trigger the police to come and I thought if the police came, these guys would either hold me hostage or kill me. So you could see how how clear I was thinking. So I didn't give the bills and they said, you know, "Give us all the bills you M'efer". And so I pull them out, I threw them in the bag. Now, I knew that the cops had been alerted. So they're trying to get me to open the safe. I couldn't open that, I said, "Hey, man, I just work here, I don't have the combination". And they said, "Open the safe!!". and I said, "I can't man, I just work here". So they said, "Get in the back room, hands over your heads!!" I'm walking back like this. And that's when I thought, well, I might be in trouble now and then it's the same time, I'm still thinking, man, I hope nobody comes in that front door because they'll probably kill me. Rick: Even the cops were there, if the cops come they'll hold me hostage, if somebody else walks in, they'll probably kill me. This is a Friday night and then nobody comes in. So then they told me to lay on the floor, hands over my head, you know, like execution style...I'm doing that. And they're still trying, they find a crowbar. They're trying to open the safe, and so they, they couldn't get it open and they finally realized they're going to get out of there. And they told me to count to 100 before I got up. They had to step right over me to get out. And I'm thinking they're either going to kick me in the head, shoot me in the back of the head, you know, who knows what they're doing? Well, they didn't you know, they stepped over me and ran out the door. I counted to three and I ran up the door because I wanted to see if I could catch a license plate. But they were on foot. So they got away. It is up standing in the parking lot, five cop cars pulled up and at first they thought that I robbed a liquor store. And I quickly explained to them what had happened. And so, anyway, long story short, they never caught the guys but the next day I got called into the corporate office. It was a U-Tote'Em, I know if you remember you U-Tote'Em Joe: Ok... Rick: Became they became Circle K's Joe: Ok. Rick: Yeah, so a corporate liquor store. Joe: Mm...hmmmm Rick: And I got called in to the corporate office and the guy sat me down and he goes, "Well, you got robbed last night!", I said, "Yeah, yeah!". He goes, "Well, you know what? They got a lot of money!!" I was like? "Yeah!?", he goes "No, they got like $227 dollars. I said "Ah ha!" and he goes, he goes, "That's a lot of money!" And and I said it, and I was, I was probably twenty three years old, twenty two, you know, still just a kid and this guy's got his suit on and everything. And I said, I said, "Have you ever had a gun pointed at your head!?" And he said, "No, I haven't". And I said, "Listen, man"...I said, "I would've carried the safe to my fuckin' car!!". If I...that's a quote, you know, quote unquote. I told them that, he goes, "Oh, no, no, I understand,you know, I totally get that", but he goes, "We're going to have to let you go!". I, Joe: Oh, Rick: I got fired... Joe: Gosh... Rick: for being held up, and so I said, I said, "Why would I give up my life for a minimum wage job?" I said "I would get I wouldn't give them anything they wanted". He goes, "No and I get that we can have you work here anymore". I don't know, I still don't know what that was about. But I ended up realizing that I should probably get into radio. You know, that's really what I was born to do. Now, the acting thing wasn't my thing and so I ended up going back to school at Long Beach State because they had a really good radio program there. And I had a year and a half to go to get my degree and I got a degree at Long Beach State. They had two broadcast stations on campus, broadcasting into Long Beach. It was great experience...I did everything from a deejay shift to a sports talk show, to a news, I was a news anchor and I did play by play for the Long Beach State football, baseball, basketball team. And so I got a ton a great experience. Yeah, it turned out to be really, really good. Joe: That's amazing because I got on the radio at my college and I got the shitty 4 a.m. to 7 a.m. slot or something like that, because like it was only drunks calling in and telling me to play this and that and I'd get in trouble with it. I wouldn't stick to the playlist that the program director gave me, so. Yeah. So yeah, that's Rick: Oh, Joe: Good. Rick: I didn't know you do that. Joe: Oh yeah. It was it was a disaster. Rick: Yeah, I got to do everything, but keep in mind now I'm a little older, so I'm probably twenty three, where everybody else there is 18 and 19. So I was more experienced, I've been around. And so I really don't want to say I was the best guy there, but I probably was, you know. And so they want it, so they utilize me any way they could. And it just turned out to be great in fact I'm not bragging, but I got nominated as outstanding graduate the program. And this is Joe: Oh cool! Rick: it and me, a guy who never cared about school. I mean, I could care less about what I could learn at school or at least a classroom part of it but once I got into radio, it was just my thing. I got straight A's, I got a 4.0. my last year and a half with, without really even trying. And when that happens, you know, you found, your thing, you found. Joe: Yeah. Rick: You're supposed to be doing, you know, just Joe: Yeah. Rick: Like I mentioned earlier with you playing drums. Same thing. Joe: So now, now you're, you found it! You found what you love, you got your degree, you excelled in it. How you know, if we can just cover quickly the, the the brief stop offs at the different stations around the country that you, you got work at and then finally landing in Colorado. Rick: So, yeah, I graduated in June. I sent out tapes for, I sent out tapes for, you know, to be a deejay and I also sent out sports tapes to do sports talk or be a sports reporter because I like both. And and I didn't, you know, I thought I'd end up in sports, honestly, like to be a sportscaster but I didn't want to limit myself, so I set up both and I got hired in August. Two months later, I got hired at a radio station in San Clemente. So in the market still right on the beach, it was it was pretty cool. The money wasn't very good. I still remember what I was making back then, it was twelve hundred a month to do mornings at this station in San Clemente, but I wasn't in it for the money. I had, I knew, I knew what the goal was, I knew that the money would come at some point. This was just all about getting getting you getting reps, as they say in football, you know, building up my chops. I knew I had to build up my chops. I didn't come out of college, you know, a good broadcaster. I came out of college a you know, a green professional broadcaster with a lot of potential. So I totally saw the big picture and I knew I just had to get reps in and every day, you get better and better and better. Just like playing an instrument, you just got play. And, you know, anybody can crack open a mike and talk on the radio but it's the years of experience that really, you know, fine tunes, what you can do, just like playing drums or playing any other instrument. So, so San Clemente, I was there for a year and a half and I started getting noticed by some of the bigger markets like San Diego, they had me working weekends and say Diego at a radio station down there. In fact, they offered me the morning show down there and that's a whole another story, I kind of blew that one. Well, I don't know how much time we have. But Joe: It's Rick: Yeah. Joe: Up to you. Listen, I. I will stay here as long as, I have a lot I want to cover. Rick: Yeah. Yeah. Joe: But if Rick: Well, Joe: If this is Rick: Ok. Joe: A great but if this is a great story, because the story with the five dollars and the pillow Rick: Yeah. Joe: Case, Rick: Yeah well anyway... Joe: I had never I had never heard. So that was a great story. Rick: Yeah. Well, anyway, it was a, I learned a lesson talking to fans that would call the show, you know, a lot of times when records are playing, you'll kill time talking to people on the phone. And I happened to mention it to somebody, who happened to call down the morning show guy at the station in San Diego and tell them, "Oh, by the way, I heard this guy in San Clemente, Rick Lewis, is taking your job!" This guy's "What!!?" He went to the boss, told the boss, the boss called me. "Who? Who did you tell, you had the morning show here at the radio station!!?" And said, He said, "I can't hire you!" He said, "I had to deny it, I'm not going to be able to hire you". Anyway, that's the short version of the story, but still from there, from San Clemente, I ended up getting hired at a radio station in Anaheim. After about a year and a half in it, it was quite a big step up. It was a union station. The money was really good. I had probably more than tripled or quadrupled what I was making, you know, so I was there for just a week and they changed the format. I got fired a week into the week into this job and it was, you know, like I said, it was. Rick: It was a pretty good step up. And like I was thinking, how did they not know that they were gonna change the format a week ago when they hired me? It was pretty devastated. And so once again, I'm starting over I ended up sending tapes out. This time I'm certainly tapes out of the L.A. Three months later, I got hired at the biggest rock station in L.A. and probably the biggest rock station in the country. Some of you may remember KMET The Mighty Met, those of you from from L.A. certainly remember KMET. So, so one door closes, another one opens. I ended up like just jump, jumpin' over the mid-market, you know, radio station, right up to the very top. So in a year and a half out of college, I'm working at the top radio, top rock radio station in the country. It was named Billboard Magazine's Major Market AOR Radio Station. And so this was like a dream. It's unbelievable! I was the youngest guy there, they had legendary radio personalities there and just just a blessing for me. You know, I'm not the most patient guy anyway. Yeah, I don't think I was ready for it, to be honest, I still had a lot of a lot of growing to do as a radio personality, but that's certainly accelerated it. Rick: And then once again, the pay was two or three times more than what it was gonna be an Anaheim so in a year and a half, I just like I shot right to the top of my field. And, you know, you're probably thinking, well, you didn't pay your dues, you know. I guess maybe you could look at it that way, like I didn't have to go to a lot of shitty markets and you know, grind it out for 10 years before I got the opportunity but that's just how it happened for me. But I never took it for granted. I never took it for granted because going back to my blue collar roots, I would call myself a grinder with talent. The talent a blessing, the grind part, that's on me. I had nothing to do with the talent. But the grind part's on me, and I always thought that a grinder with talent, is the, the person you would want to hire because that person is going to take what they got and they're going to outwork everybody and they're just going to get better and better and better. And so that's kind of how it happened with me. So there I was LA, now you want to know how I got to Denver. OK. So. Joe: Yeah. Now, I wanted to how cause, like cause, that's where we're going to get into more of this other stuff. So... Rick: Yeah, so I worked in LA for...see, I started in 81' at San Clemente and I worked in LA till 1990 so nine years. I also worked at Power 106 in LA, which is still a big powerhouse radio station in L.A. because I ended up getting fired from KMET twice, um yeah, two times. Yeah, one time I just signed a three year deal and this fired me three months later. They pulled the plug on the whole radio station, this was in 1987. They, they became the first smooth jazz radio station in the country. They just pulled the plug on one of the greatest, if not the greatest rock radio station ever! Turn it into smooth jazz, fired us all. So that's the third time I've been fired now since 1981. So I went to...I realized then that I, to make the really big money and the biggest impact in the business, you got to do morning drive radio. So I stepped back down to that radio station Anaheim, that I was that early on in my career and started doing mornings there and I did mornings there for three three years and I got fired...again. So for no reason, you get fired in radio, not for doing anything wrong, it's usually a turnover of, you know, upper management, middle management, format changes, that kind of thing. So, so now I've been fired four times, since I started in 1981 and it's really hard to get a job in radio. Every time you get fired, you think I'm probably never going to get hired again. Rick: You know, because it's it's it's really hard to do. And I had, I had so many chances along the way there in LA where I almost hit like the big time. Like I got asked to guest host PM Magazine and I crushed it! And I killed it!. They call me later, they said "Hey, we want to, we're thinking about making you the national PM Magazine host" and I was probably, I was probably about twenty six years old, twenty seven, and they were like "I was like, cool!" So they said, we got to, get we got to get a reel, gotta to get something more than this to show people nationally, come on down, we'll do some test and test rule. And that day I got stuck in traffic driving from Orange County to Hollywood, took me two and a half hours. I didn't know then, that I'm hypoglycemic, so my blood sugar just tanked on the way down there. So I got there, I did the audition and I was flat, totally flat. And I knew it was not a good audition. And the guy pulled me aside, he goes, "Rick, what happened man, you crushed it when you guest hosted the show, the just wasn't very good!" "Yeah man,I know", I said "I'm just not feel "in it today. He goes, "I can't show anybody this!". "Well, can we try it again?" He goes, "No". So anyway, I blew that one. Dick Clark called the radio station in LA that I was working at, some, somehow he had seen me somewhere and he said, "Hey, I want to meet this guy, Rick Lewis, one of your radio people". Rick: They gave me the message, I call back, they set up a meeting with me. I go to Dick Clark's Studios in Burbank and I never met Dick, but I met his right hand man. We had about a 90 minute meeting. And he told me that they were going to develop a bunch of shows around me. And so of course, at this point I realized not to get your hopes up in Hollywood or in show business because a lot of times it just never happens. So I was feeling good about it, but I didn't get my hopes up at that point and I'm maybe twenty seven years old, twenty eight, I already knew better than to get my hopes up. So we had some conversations on the phone after that about different shows and different show ideas for about three, four months and then they went dark on me. Nothing, nothing ever happened again, I never heard from him again. So anyway, I had all these near misses or near hits along the way. And so at 1990, a radio guy in L.A. named Frazer Smith, and once again, anybody from LA would know that name, he was, he's one of the legendary guys out there. He was from Detroit and he told me, he said "Hey man!", he goes "I just got offered a half a million dollars to do mornings in Detroit" and this was in the 80s, so translate that into today's money. That's a lot of money! Joe: Right. Rick: He said big money Joe: That's a lot of money. Rick: You can make big money in some of these Midwest towns doing mornings. I went "Really!!? OK, it's good to know". So I contacted a guy that I knew in our company that I still work for and they offered me an afternoon show back in Cincinnati, which is where I used to live. I thought that was too big of a step down in market size, I turned it down. A show, a station in Detroit, told me that they were very interested in hiring me to do a show there and so I went back and interviewed. I took my life back, we were looking at houses and neighborhoods, never happened! And anybody that's in show business,  you know, Joe, you've been you've been in the entertainment business a long time, you know that this is just how it goes. All of these big things get dangled in that most of time they don't happen. But, I knew at that point that I'm ready to leave the market if the right opportunity came along. So the guy who offered me the job at Cincinnati got back to me and he named off about three or four other markets that they were willing to hire in and Denver was one them. And I'd never really been to Denver before. And he said, hey, we got this comedian named Floorwax, he's really funny, but he doesn't get the radio business, he doesn't understand it. He needs a really good partner to make it work. He'd already, he'd already had a show here in Denver. He was on the air with another guy and he said the station is losing money. Rick: They're they're not right even in the top 20, but he said, if you can go there, turn it around, he said you can write your own ticket. And I kept thinking back to what Frazer Smith told me about how this could all work out financially. So my wife and I flew out and we liked the city. I thought it was worth taking a chance for a year. Once again, back to no fear. I left the L.A. market and I by the way, I did get after getting fired there, I did have another radio show, another radio station I was working for back there, so it wasn't like I was unemployed, but I, I told my wife, I said, even if this only last year with Floorwax, we'll go somewhere else, meaning me and Floorwax will keep going somewhere till it hits. Because I knew I knew that what we had, was really special. And it ended up here we are 30 years later, I'm still doing the same radio show..it's unbelievable. And it's been just an incredible run and I'd never take it for granted because of how I started my career, getting fired four times in the first nine years. I wake up every day just counting my blessings. And I also realize it didn't matter how good you are, how big you are, how much money you make, they could fire you in a second and I've never taken that for granted. Joe: I know that about you, I know that you're grateful every day for what you have and what you've accomplished and that's why this is a special interview for me, because we we think along the same lines and in, you know, that's what they say, right? You said you are, what is it? The quote is something like, "You are the sum of the five people that you associate yourself with" or hang around whether or whatever. So, Rick: Yeah, Joe: Yeah, I get Rick: We all Joe: Yeah Rick: Attract, Joe: Yeah. Rick: You know, the energy we put out. We named Energy. And so Joe: Yeah. Rick: That's how you and I became friends. You know, you Joe: Yeah. Rick: Kind of attract who you are or what you what you put out there. Yeah. Joe: Yup. So you get to Denver and they get rid of this other guy that Floorwax is with and you step in and you guys create this this Lewis and Floorwax show that was on the air for how many years? Rick: Well, Floorwax and I did twenty three years together. And then Joe: Ok. Rick: Unfortunately for floor wax, he ended up quitting the show and he's been gone ever since. So he's been gone for seven years now. And the show continues to go on. The show is still very successful. You know, big revenue maker, big ratings. It's amazing. I can't believe it's lasted this long. I really can't. Joe: Yup, yeah, and there must have been a lot of pressure, right, when that whole thing happened where Floorwax was going away, you were still handed the show to say, let's keep it going and make the best of it. And I'm sure at that point everybody's eyes were on you going, ok, can he pull this off without having the secondary person with him on the air to exchange that banter with and all that other stuff? And I know listening to it after that, that it just it just kept shooting upward. It just was amazing! Rick: Yeah, I kind of thought Joe: And still is so... Rick: Maybe it was over here in Denver when he had left. In fact, I hired an agent outside. You know, the more I had a New York agent, you know, a national agent thinking that I would probably be looking for another job. And I looked at it once again as an opportunity. You know, like, all right, this is the universe telling me, hey, it's time to move on. Floorwax left in January and by that summer, the radio show was number one in the morning. And so then they the company was coming back to me talking about a new contract. And so it ended up working out where they signed me to a new contract. I don't think they thought it was going to work. I thought, I think they thought the show was over, you know, and this will be it. I think everybody was surprised, including myself. I ended up retooling the show, kind of reinventing it, reinventing myself. I looked at it as an opportunity to just get better. You know, I had a band with Floorwax as well, that was real successful. I looked at that as an opportunity to, as kind of a rebirth. And, and the approach that I took and it took a lot of work, it was a lot of work with the radio show and the band, to get it actually to the level we were before and in some cases even better. Joe: Right. So the timeline is you start with Floorwax. What year? Rick: 1990. Joe: And then it ends January of what year? Rick: Well, twenty three years later. So that would be 2013. Is what you Joe: Got Rick: Walked Joe: It. Rick: Off? Yeah. Joe: Ok. OK. And you picked up and you just just it was it's amazing. So I know that the list could be huge, but let's just for the sake of keeping it condensed. I know just a few times you invited me into the studio and I've been in town or I've listened to it from being in Arizona. What's the top five most famous people you either interviewed live in the studio or remotely on like call-ins over the phone? I know it's ridiculous because the list is probably hundreds. Rick: You know what it is, it's a really hard question to answer. Joe: Did any of them make you nervous? How's that? Maybe that would pinpoint them somebody like being really over the top. Well known. Rick: I literally interviewed almost everybody you can think of joke. You know, if even when I was in L.A., I worked for Westwood One and my job was to go get, to do probably seven to 10 interviews a week of either movie stars or rock ah, you know, rock stars, singer songwriters. So I was interviewing seven to 10 people a week for a couple of years out there. I interviewed everybody. When somebody is new album would come out, I got to meet them at a hotel in their hotel room, you know, and interview them. So it's all kind of a blur, to be honest Joe: Yeah, I'm Rick: With Joe: Sure. Rick: You. You started naming names. I could I could tell you. Oh, yeah. Joe: Yeah. Rick: I could tell you a story about Joe: Yep. Rick: That Westwood One gig did make me a really good interviewer or me, you know, it made me really know how to interview people and how to how to listen to people instead of, instead of having a list of questions in your ask, that you ask, you know, question number seven off your list, while they're talking, you're already looking at question number eight. You're just like, you've just got to let it flow, you know, and it just go with the conversation because a lot of these people, they, they, they're not that comfortable being interviewed. It's not their thing, though, some of them are great, like David Lee Roth. That's a guy I've interviewed many times. All you gotta do is turn the mic on and let em' go and just try to guide it, you know and try to, hopefully you get from point A to point B to point C without losing your license. You know, guys like that, Ted Nugent, Joe: Right. Rick: Ted Nugent, you just let him go. But you try to guide them, you know, along the way to try to get what you want out of them. Guys like that are real easy, but a lot of them, they really have very little to say. A lot of a lot of these rock stars are somewhat introverted, movie stars, really a introverted.  Movie stars, you take away a script, they don't have a whole lot to say. You know, they're always you know, they're going off, everything they do is off a script. You've seen some of these guys on the talk shows. You know, it takes a really good interviewer, Jimmy Fallon and David Letterman guys like that, to bring them out. And so you learn how to do that. I like I have so many. I really. Joe: I know, I know it's it's it's Rick: We Joe: A bad Rick: Wear Joe: Question. Rick: This watch. We can do this for hours Joe: I know, Rick: A day Joe: I Rick: For. Joe: Know. All right. So now you are currently on the Fox, 1.3, 103.5 Rick: Yeah. Joe: On weekdays. And you've been doing that alone since the spring of 2013. Correct. January 2013, that's Rick: Since Joe: When four Rick: January Joe: Weeks Rick: Of Joe: Left. Rick: 2013. Joe: Ok. So on top of that, you recently. I don't, I say recently only because in this industry, you know, a couple of years is still recent. But you, is it true that you're the color commentator for the Denver Broncos? I just didn't want Rick: This Joe: To get Rick: Is true, Joe: It wrong. I don't Rick: Joe. Joe: Want to say. Rick: Yes, it Joe: And Rick: Is. Joe: Just for Rick: Yes, Joe: The audience Rick: It is a. Joe: Sake, because I didn't even though I watch a shit ton of football, I didn't really understand what color color commentator was. So if you can quickly, you know, explain what that means, because I don't want to I don't want to give it the wrong description. Rick: Ok, I, I've been doing play by play, which is a different role for a long time, going back to when I was in college, I'd been doing play by play of high school and college games for, I got back into it at least 10, maybe 12 years ago, and I was working for Comcast here in Denver doing games play by play. So it wasn't like this whole thing of being at the booth was foreign to me. So four years ago. Ed McCaffrey was the color commentator on the radio on the Broncos flagship station. Ed McCaffrey, great football player, Denver Bronco legend. And he for some reason had to miss a game and so my boss called me like on a Tuesday and he said, "Hey, Ed can't do the game Sunday in Jacksonville, what do you think? You think you can do it?" I was like, yeah, yeah, I can do it. No fear, right?. I'd never been a color commentator before, but I understood the role because I've done play-by-play so much, so I prepped for it really hard and did the game and it went really, really well. And so much so that I thought, you know, you know if Ed ever decides he doesn't want to do this anymore, I'm going to throw my hat in the ring and see if I can get that job. And it happened the following spring. Ed McCaffrey decided that he wanted to spend more time with his kids. He's got at the time, I think he had two kids in the NFL and one in college. Christian McCaffrey, his son, is one of the best running backs in the NFL. So he, he decided he wanted to watch him play more and didn't have time to do this. Rick: So, I did get the job and so the color commentator is a is a different role than play by play. The color commentator has a very short window to try to color up the broadcast, keep in mind, this is radio, not TV. It's different on TV, on TV, you don't have to explain what happened because everybody can see it. On the radio, you have to paint the picture. And so the play by play guy will tell what happened on the play and in some cases even break it down. And then I have about maybe 10 seconds in between plays to say something that he didn't already say that actually add something to the broadcast and moves it forward and kind of resets the next play and so, it's a real challenge. It's a real challenge. I always thought play by play was easier, I still do, I think for me, play by play is easier to do than the color roll. So it was a bit of a learning curve on it. But I really, really enjoy it because it's challenged me for the first time in a long time, not only with the prep that's involved, that it's a lot of prep, but the speed of the broadcast is, is such that, you really got to be on your game because it's moving really fast and you got one shot. So it's like you're a Nik Wallenda, you know, when you're on a tight rope walking across the canyon, there's no safety net. You've got to be on your game. You've got to be super focused. Joe: Yeah, and it has to be Rick: And Joe: This Rick: That's Joe: Super Rick: What I like about Joe: Delicate Rick: It. Joe: Balance between knowing when he's actually done saying what he's going to say in the play by play and where you guys aren't constantly stepping on on top of each other and then there's room for the next play to come in or whatever. I hear it, I just I, I'm baffled at how it gets done so cleanly. Rick: Yeah. And my partner, Dave Logan is one of the best in the business. He is up in the upper elite 1 percent of play by play guys in the world and so the fact that he's so good, of course he could cover up any mistake that I might make or if I if I, you know, stub my toe a little bit, he can completely cover it up in a very smooth way, which I'm sure he's done for me many times, you know, to make the broadcast on good. You know, the fact that I've been in broadcasting so long, well over 30 years, what, 39 years, you know that I'm able to make a broadcast sound good. Joe: No. Rick: Let's figure out a way Joe: Go Rick: To make Joe: Ahead. Rick: It something. Joe: Yeah. So Rick: And Joe: I Rick: So Joe: Just it just as we're talking Rick: That's Joe: About Rick: What I Joe: This Rick: Do. Joe: See how I stepped Rick: Yeah. Joe: Right on top. Yeah, that's right. So is it true? I don't know if if where I heard this, but is it true that you are the only broadcast person doing these NFL games that is not and an ex NFL player. Rick: Yeah, on TV, I don't think there's anybody certainly on ah,  I don't anybody doing NFL games on TV that wasn't a player. There may be one on the radio, but I don't know who that would be. There's only 32 teams. So you got 32 broadcast teams doing it on radio. I don't think there is a guy doing color that didn't play in the NFL. Most of the play by play guys or guys like me that are broadcast, you know, guys, you know, experience broadcast guys. We kind of flipped the formula in our broadcast because Dave Logan played 10 years in the NFL. So you've got to play by play guy that played 10 years in the NFL. And then me being a broadcaster that I know the game, I understand the game, I played a little bit of football myself, so I totally get it. But it is pretty unique. Joe: And you're having to do what is an eight away and eight home? Rick: Yeah, eight home/away and then four preseason games, so 20 games a year. Last year we did twenty one because we had the Hall of Fame game. Joe: Right. And what's the most grueling conflict with the rad... that, you know, the morning drive time show now with you having to do the football games, what what days are the hardest for you? Is it Mondays because of the Sunday game or? Rick: Well, if we play a game like on a Sunday night or Monday night or Thursday night on the road, I don't work the next morning on the radio because we will get into 4:00 o'clock in the morning, sometimes 05:00 in the morning. So I take the morning show off. I do two radio shows a day, I don't know, I don't think you're even aware of it. But I'm do two live radio shows a day. So I do the morning show on the Fox actually from 6 to 9 a.m. from 9 to noon, I do a talk show on K.O.A., which is the Broncos flagship station with Dave Logan and Kathie Lee, who's on with me on the Fox show. So I'm doing six hours of my radio in a day. Joe: I had no idea. Rick: That also also pretty, pretty unheard up in a major market. Joe: Yeah, I had no idea that you were doing that extra stuff, I had only known about the Rick: Yeah. Joe: The Morning show so well. Rick: Well, this is why you don't hear from me much anymore. [laughter] Joe: I don't that's why I'm excited that I have you right now and I can't let you go until I get through Rick: Yes. Joe: A lot of this stuff. So let's let's bounce over to, you know, you and I have this mutual kinship and in playing drums. So when did you start playing? And then we skipped over it a little bit, when you're talking about you and Floorwax and having your band, which was the Groove Hawgs and now you have The Rick Lewis Project and you run the band and, and you and I had this same sort of leadership role in our bands. But when did you start playing drums? Rick: Yeah, I started playing drums at 17, I believe. I played piano when I was a little kid. Ah like classically trained, you know, lessons, piano recitals, all of that. I probably played piano for about three and a half years, I never liked it, but my mom was kind of forcing it on me. I would have much rather been outside playing football or baseball or whatever. So that was always the dilemma for me and I was pretty good. I picked it up pretty quick, I could read music and all of that. And then she finally, she, she gave up and said, "Ok, you can quit piano and do whatever you want." You know, I'd always wanted to play drums, I was always interested in drums but my mom and dad would never get me even a snare drum up. You know, we had five kids in the family, we didn't know we didn't have enough money for, to go out and buy me a drum kit. So I just kind of put that on the back burner, but at 17, somehow my younger brother got a drum kit. I don't know, I don't remember how it happened. Maybe my mom or dad gave it to him for a Christmas gift or whatever, and I started playing drums at 17 and I realized right away, like, you know, I can I can kind of play these. And, so I really took a great interest in it, and I played a lot of self-taught, as you know, played along to records, you know, put headphones on and just play the songs. And so I learned how to play, I think I learned how to play musically, you know, I never took any lessons and so for me, I play like the record because that's how I learned how to play. And like I say, I was so people I don't have chops, I have a chop, I got one. You know, I can play a song, I can play a groove, right? That's all I got, I can play a groove, but Joe: You have more than that, trust me, I've seen you play. Rick: Well, I don't. But I, I played until I was twenty one, when I went to NAU we'd go to the music room, me and a bunch of guys, you know, and we would jam in the music room. Remember I played once in a country bar in Flagstaff. You know, it took a lot of beer to Joe: Yes. Rick: Get up there to do that. And I did it and I just I just loved it. But then when I moved to LA to be an actor, I quit playing drums and I didn't pick up a pair of drumsticks again until I was probably 40 years old, so almost a 20 year span of not Joe: Well. Rick: Playing drums. And then when I was 40, I got it, I got interested again and I bought myself a drum kit and started to try to get up to speed and we formed a band pretty soon after that. That was the Groove Hawgs Band and with the connections I have here in town, I was able to hire the best musicians around here and it was it was a pretty good band. It because of who we were on the radio and Floorwax was in the band too. Because of who we were on the radio and the high profile that we had, we were getting really good gigs. The first gig we ever played was at Red Rocks...sorry, Joe. Joe: I know, it's like man! Rick: Yeah, we opened for the Doobie Brothers and CCR at Red Rocks and it was just amazing! And I was working as hard as I could to get back up to speed. You know, just practicing every day and having had no formal training, you know, was strictly just instinctive, you know, trying to get better and once again, just play the music, just trying to play songs. You know, for some reason, I got a really good natural feel for song structure. So that that, that's a gift. And being able to play drums is probably, it might be my favorite thing I do right now is maybe playing music, which is saying a lot because I do a lot of really cool things. The Groove Hawgs got to play big shows and we played, we opened up for ZZ Top and James Brown and Leonard Skinner and Ted Nugent to Def Leppard. We got to open probably seven shows at Red Rocks. Joe: That's amazing! Rick: We opened for The Who at the Pepsi Center...that was amazing! Back in 2007 or 8, there was The Who and The Pretenders at The Pepsi Center. So we played some really Joe: And you do it right, too, because you have a drum tech and I don't Rick: Good gigs Joe: So you just rollup, with your stick bag on your shoulder and you're like, oh, here. Rick: Yeah, yeah. The whole breaking down Joe: Oh, Rick: The drum kit, Joe: God. Rick: They...love...about it...that's one that's the big downside of playing drums. But luckily for us, you know, we the band gets paid pretty good for doing these gigs and so I can afford to pay my band Joe: Yeah. Rick: Members really well. You Joe: Yeah. Rick: Know, I told you they get paid really well and so I can also afford to have a Joe: Yep. Rick: Drum tech who can do all of that Joe: Yeah. Rick: For me as well. So I'm not in it for the money. Joe: No, Rick: Believe me, Joe: I Rick: This has nothing to do with money for me, just playing music. Joe: Know, I know. And it's too bad. I know right now it's like a kind of a tough question, but you guys are still doing local gigs around town. Like when things get on the other side of what's happening now with COVID-19, you guys will be out doing your normal festivals that, you normally just play like festivals and things, right? You're not. Rick: Yeah, we have a new band, The Rick Lewis Project started in 2013. So seven years in already and once again hired the best musicians around here. We played some big gigs too, which we've opened for Leonard Skinner and you know, many other people like that. We did a show with Ziggy Marley, I mean, we were the only non reggae band on the lineup and pulled it off. We ended up switching like four or five of our songs into reggae songs. I never played reggae before and we pulled it off. So it's it's really, really cool. But yeah, we have a residency at a casino here so that we can play anytime we want, pretty much so we play there about every six weeks. In the summer, we play a lot of festivals and we do still support some big acts. We've got a show in August with Government Mule on the books. Hopefully we'll be able to play it. You know, that type of thing. And others were I mean, we were just in the process of really rounding out our schedule for 2020 when all of this Coronavirus Joe: Yeah. Rick: Hit. Hopefully we can come out of it. You Joe: Yeah. Rick: Know, who knows? I think I think we will. I think by at least July, I would think, we'll be able to start playing live shows again and people will be able to start going to concerts again...I'm optimistic Joe: Yeah. Rick: About that. But Joe: Yeah. Rick: Who knows? Joe: Yeah, it's crazy. So this is something I don't know if I've ever asked you or we talked about and I'll have a few more things, so I'm not going to keep you much longer. But if you had the opportunity with all you know about music and all the musicians you've made and all of the conversations that you've heard, if you had ever had the chance to become a professional touring drummer over being the, you know, the radio personality that you are and all of that, would you ever have chosen that, that lifestyle? Rick: Well, that's a good question! Joe: I know you love performing in front of people. When I watch you play, I'm like, you know, you are so in your element doing it and and you're a great frontman when, when you know, anytime that I've jumped in behind the drums and you've run up to the front of the stage and like, you know, you're a great front man as well. So I just was like, man I wonder if he ever goes God, if I had only started that earlier and, and my path taking me in that direction. Rick: That's a great question! I have no regrets but I do think that looking back on it now, I wish I would have focused more on music than sports because, sports was my whole world back then and now I realize that for most people, your athletic career is over and after high school and if you're lucky, after college. Very, very few get to play professionally or make a living out of playing sports. Looking back on it now, I wish I would have stuck to the piano. You know, I told my mom that recently. I said, I wish you would have forced me to continue to play, just to establish, you know, that side of me. I wish, you know what I did? I did discover drums young enough at 17 that I could have been probably a pretty darn good drummer by now, good enough to tour with a big band. I don't know if I put enough work into it to be that good. I think, I have, I have whats inside of me to be that good but I haven't put in the work you know, because of everything else I do. You know, I wasn't a guy that could sit down and play drums for 10 hours a day, which a lot of guys do it, you might have been one of them. I was a guy who could sit down and play drums for an hour a day. And so that's what I did, you know, for 20 plus years, I would play for an hour a day. That's all I had time for,you know, with a family and an established radio show and everything else that I was doing. But boy, you know what? If I could, I sometimes say, man, if if like Earth, Wind & Fire would hire me to go on a tour, because I love playing funk music, that's my thing. If I could be the drummer and Earth, Wind & Fire on one tour, Joe: Yeah. Rick: that would be hard to turn that down, the really hard to turn that down. But, but, you know, a lot of musicians, a lot of these successful musicians that we all know and love, they've had a lot of hardships along the way and a lot of it's drugs and alcohol. Almost every one of these successful bands goes through that. You know what? I don't know, man, I don't think I'd change anything. You know look look, you know, my friend Danny Seraphine, who is the drummer from Chicago...longtime drummer from Chicago. I just watched a documentary on the band and I think it was on Netflix and drugs and alcohol once again, you know, Terry Kath's ends up killing himself. Maybe accidentally, maybe not. But you watch every documentary on Netflix about a successful rock bands, it's drugs and alcohol that takes them, almost all of them down. I don't know if it would be worth it to have to go through that type of thing but I did take one lesson on drums and that was Danny Seraphine. I told you that, right? Joe: Yeah. Rick: Yeah. Danny, Danny Seraphine came this my basement Joe: Yeah. Rick: Right here that we're sitting in. Joe: He's a sweetheart. Rick: Danny Seraphine came over and spent a weekend, I think, or two or three nights at my house and I got to drum kits set up in my house and he goes, "Hey man, let's get out a jam a little bit." He goes, "I want to see if I can help you." And I was pretty intimidated, but once again, no fear. So we sat down and we played together for like 90 minutes together, side by side. You know, he'd play a lick and I'd try to copy it. You know, that he'd play a groove and I jump in on it. And then he showed me a couple of things and after about 90 minutes, we stopped. He said, said, "You're a good player" and this is a long time ago, this is probably almost 15 years ago, he said, he said, "You're a good player," he goes, "but I can tell you don't have you." He said, "I can tell you you don't think you're a good player." He goes, "You should know you're a good player" and he goes, You have good time", he said "You have a great sense of time, great feel, a great groove." And he said, "Take that with you every time you play and realize that every musician wants a drummer that has those three things, time, feel groove..You said you got it." He says believe me. "That's what all these guitar players want is a drummer like that," he said "they don't want drummers that are playing all over the song and doing drum fills, you know, every break," And he said, "Take that and be confident that you have that." And that really helped me a lot. So that one lesson from Danny Seraphine really meant a lot to me and it gave me the confidence to, you know, be myself in play and play like I do, which is my one chop, I've got the one, I got the one Joe: Yeah. Rick: Here. Joe: Doesn't matter a grooves, it feels great. That's all right, man. All right, so what's next for Rick Lewis? What's...anything that is a super exciting that you can talk about or you know, I know you got a shit ton on your plate, I don't even know how you sleep. But just wondered if there's anything new you wanted to talk about before I let you go. Rick: I've gotten really good at living in the moment and living in the now. Joe

The Frontside Podcast
Pull Requests with Joe LeBlanc

The Frontside Podcast

Play Episode Listen Later Apr 11, 2019 30:09


Joe joins the panelists to talk about pull request etiquette. Joe Leblanc: Joe first learned to code on a Zenith computer his dad brought home from work. It had this built in blue LCD monitor and ran on 5 1/4" floppy disks. He used spreadsheets for work and Joe was interested. They spent about an hour going over macros together and he took off from there. Long after the Zenith died, the open-source content management system Joomla! landed in the center of his attention. Joe found himself writing a book about Joomla programming, authoring video tutorials about Joomla for lynda.com, giving Joomla talks, and helping organize Joomla conferences. Since his time in the Joomla community, he's picked up Node, Rails, React, and other frameworks. He's currently coding at True Link Financial and working on a few hobby-projects as well. Please join us in these conversations! If you or someone you know would be a perfect guest, please get in touch with us at contact@frontside.io. Our goal is to get people thinking on the platform level which includes tooling, internalization, state management, routing, upgrade, and the data layer. This show was produced by Mandy Moore, aka @therubyrep of DevReps, LLC. Transcript: CHARLES: Hello and welcome to The Frontside Podcast, the place where we talk about user interfaces and everything that you need to know to build them right. My name is Charles Lowell, a developer here at The Frontside. And with me also is Taras. Hello, Taras. TARAS: Hello, hello. CHARLES: Today, we're going to be continuing our conversation about platforms, as always, but in particular the pillar of your platform that has to do with how you collaborate on code. It's an important one. And so, we're spending some time on it. And with us to talk about this today is Joe LeBlanc who is a senior software engineer at True Link Financial in our very own beloved Austin, Texas. Hey, Joe. JOE: Hi. CHARLES: Thanks for coming on the show. We're going to be talking about collaboration and I was thinking we could kick off the discussion talking about pull requests because that's typically one of the ways that we collaborate on code. That's really where the rubber tends to hit the road. You have particular interest in the dynamics of a pull request. What experience kind of led you to that interest? JOE: My background has been doing a lot of work as a freelancer. And when you work as a freelancer or do agency work, a lot of times you are really the only software developer that is around or you're working with maybe one or two other people. And I didn't get a lot of opportunity for pull request reviews. Mine was in that space. And then when I moved to a full time job at a place where I was one among maybe half a dozen or a dozen engineers, that's when I really began to get interested in how I could be better at giving pull request reviews and also submitting pull requests that people want to review. CHARLES: What made you notice the need for this? JOE: What would happen is someone would submit a pull request and there would suddenly be just dozens and dozens of comments coming in that were just kind of difficult to keep track of and often were maybe talking about things that didn't necessarily need to be reviewed as a part of that pull request or addressed, maybe things that could be caught by a linter. CHARLES: Right. JOE: And other tools that are a little bit easier to receive feedback from. Like it's easier to have a tool tell you your spacing is off than have me tell that to you. CHARLES: Right. And really that seems like the spacing is off, that's kind of like if you need to deliver that feedback, that's kind of like not what you want to lead with. If you don't have linting in place like after all other issues are sorted out. JOE: Yeah. CHARLES: But it sounds like what you're describing is people who have kind of swarmed over a pull request each with their own kind of pet peeve issue. JOE: Yeah. And then you're just left with this long list of comments to go back and address and you're pushing up more and more commits. And by the end of it, you could have more than 100 comments on this PR. And you thought that you were going to get this done in a day or two, and then suddenly it's the end of the sprint and it's like, "Oh fine, then I get to merge this." CHARLES: And typically, it's actually, in my opinion, an anti-pattern when you have like 10 mergers that happen on the second last day of the sprint or the last day of the sprint. There's always issues with that, right? Ideally, you are merging code throughout the course of the sprint. It kind of like defeats the purpose almost. I guess you're doing your integration in shorter periods but even so, tons of stuff is bound to break when everybody's pushing and everyone's rushing. JOE: Yup. TARAS: So, what would happen in that situation, in your experience, when you have this pull request that a lot of people are commenting on and some of the comments could be addressed by linters. Would you guys go back and actually implement linting? Did that happen? Would you put linting in place so that you'd have consistent formatting on the projects to reduce that kind of feedback? What would be the resolution or a way to improve on a process so you could actually get better feedback? JOE: Yes, we did install a linter and that's something that you can either run locally or you can also run in your continuous integration environment. And it's really good to run it locally first because then you can just catch it before you even submit the PR. And that was something that definitely helped cut down on these sorts of comments and even debates over style. You just have this one thing that is maintaining that style or rather telling you when you're wrong for you, and then you don't have to have all these comments coming in as you submit your PR. And another thing that we would do is we would use, even beyond just things like whitespace and trailing newlines and those sorts of issues, sometimes you would have some of these issues that would come in that wouldn't necessarily be a trailing newline or whitespace issue or something like that but it would be purely someone's sense of style. And in those situations, we came up with a bit of a standard where if you wanted to make a comment that was strictly style that wasn't something that you necessarily wanted to block the pull request over, we would use emojis that had specific [inaudible] thing. So in our case, we would use either a beer emoji or the cocktail emoji to kind of say, "Here, take this with a drink." CHARLES: [Laughs] JOE: This is not something that's super serious. It's a suggestion, "Here, let's discuss this over beers." [Laughter] TARAS: It's a really nice approach to friendlify the actual pull request because people can get really -- I think another way people would say this is like when you say that it's not 'I believe it whole strongly'. How does that go, Charles? CHARLES: It's strong opinions, weakly held. JOE: Yes. CHARLES: Right. You're kind of making an assertion about the way things ought to be or often missing from that is how important it is to you. You've made this thing like it should be like this. That's a very black and white statement, very firmly cut between right and wrong. But how important it is to you if it goes the other way is often missing from the conversation. TARAS: So Joe, what would happen once you made this change? Did you see a shift in the kind of feedback you were getting? What did it look like after this? JOE: After we started implementing the ideas of putting on emojis to signify things that were not super serious, it became a lot easier to just picture all those comments and define the things that really needed to address. And it was a lot faster. I was just able to address these very specific problems and do that first. And then if I had time later, come back and address those style issues. CHARLES: Right. Was the kind of the good feedback there the whole time but it was just obscured by the noise of these kind of exterior issues or side issues? Or did you find that because people's thoughts were more given over to the heart of the matter, that you actually got more comments directly relating to kind of the meat of the implementation? JOE: I think it was really more that the good comments really were buried in there. A lot of times when you see critical comments that seem to be petty, that can really trigger your emotions. And so, I feel like a lot of the times the emotional state that we would get into would prevent us from seeing the good comments that people were leaving, and we would get a little too angry about things that really weren't that big of a deal. CHARLES: Would the tension kind of noticeably rise? JOE: Yeah. I actually remember several instances at my job where -- this is when I was working in office and in the same room as all my co-workers. And one of my co-workers would know that I was reading his review by the number of sighs that were coming out of me. [Laughter] JOE: Yes, I definitely had this reaction that people could tell. Implementing things like these emojis definitely helped. They didn't always fix everything, though. One thing that would happen too is even after filtering out kind of the noise comments and getting into the meat of the matter, we would still wind up in situations where I would want to use one design pattern and another engineer would come along and say, "No, you should do something different," and we would have these arguments. CHARLES: Right. And those are harder to resolve too because those are strong opinions strongly held. JOE: Yes. CHARLES: But it's still a step forward, right? You've eliminated the passionate arguments about the strong opinions weakly held. And so you're able to now grapple with 'how do you resolve these arguments' of these stronger opinions that are more strongly held. JOE: Yeah. Part of the way that we handled this was we came up with a way of being able to have a debate about something on a pull request, yet also keep in mind that we're working under deadlines and that ultimately, it might not be that big of a deal. TARAS: I don't know if you experienced this but there's this kind of a feeling where you know you have a deadline that you want to reach and this feedback is kind of not really helpful to that end goal. But at the same time, there feels like a trade off for you, like trading off quality by accepting something that people don't agree being fully ready. JOE: Yeah. TARAS: But then there is, I guess the tests seem to be like you have some tests and the tests are passing. So, thumbs up. [Laughs] CHARLES: Yeah. Well, here's the thing. This thought just occurred to me when I heard that is when we are reviewing code, probably the most important code to review is actually not the implementation but it's the tests. Because why do people get so care mad about the code being right? It's because they know how expensive it is to get it wrong. And we all have our different opinions of what's right and wrong and what's going to cost us more. But at the end of the day, we're all trying to save us, save ourselves and our team, pain in the future. The tool that we have to do that is the code review. We're trying to make sure the code is "good". But usually what ends up happening, and I know I'm certainly guilty of this, is I'm focusing on the implementation and I look in and say, "Oh yes, there are tests." I don't really look at the test and say, "Is this a good test?" Because a good test is going to lower that cost that we're so afraid of in the future, and that drives us to want to make sure the code is as close to what we conceive of as perfect as it's likely to get and still hit our deadline. It sounds to me like maybe what we really ought to be doing is reviewing the quality of the test because if you have an excellent test, then the shape of the code almost is unimportant or changing the shape of the code, more importantly, is very cheap. So if you do find that the implementation is suboptimal, the cost of rejiggering it into a better configuration is going to be very low. JOE: I've discovered so many times where you are running a test that was written previously either by somebody else or by yourself, and you realize that the test is testing the wrong thing entirely. CHARLES: Yeah, coverage is spotty. It covers 10% of your cases. JOE: It can also might have a stub or a mock in there somewhere that is hiding something that you weren't counting on. Or it could just be you pull up this screen and test then it saves but you're not really testing what it's saving. CHARLES: Right. Can I actually proffer a suggestion? At least I'm going to try and hold myself to going forward, is that when I review a pull request or some proposed change to a code base, I'm going to review the test first. JOE: Ooh, that's a great idea. CHARLES: I'm going to try and start with the test and avert my eyes from the implementation, no matter how curious I am how this person accomplished the solution. I'm going to hide from the solution and focus on the verification. And if I have faith, first and foremost, in the verification, then my faith in the implementation is secondary. TARAS: You know, Charles, I really like this. I think it'd be really interesting to try this out and see what kind of impact it creates. It makes me think that there is actually something really useful in here in terms of providing feedback because the challenge is that when you're giving feedback to someone on a pull request, ideally that feedback is going to be useful and it's going to give the person something to think about in regards to the work that they did. And I think a good way of pushing to work back onto the person in a way that allows them space to internalize what they need to do is identifying cases that might be missing because a lot of times, we test happy paths. We don't test the things that we didn't think about. And that's where the devil is in details. It's in the things that we don't test. Those are the kind of problems that we're trying to prevent with having good code. But really the best way to kind of flush those things out is to make sure we have the right test coverage for it. So yeah, I think if you add to that just when you're looking at a pull request is to go, is a test coverage missing the following cases and actually surfacing not. I'm actually thinking like a danger task. A danger is a tool for adding information to pull requests so that it's kind of like an automated mechanism to comment on pull requests. And so I'm thinking like having something that does what [JAS] does. [JAS] has this thing where they will check based on the last git commit. It will figure out what are the tests that have been added since the last commit and then it will actually show you. So when you run tests, it only runs the tests that you kind of impacted which is something that could be used to surface tests that were written in this commit. I mean, we also have that information in the actual commit itself but being able to see 'these are the tests that were written or added' and then you could use that and figure out what else is missing from this. This could be like a way to kind of add onto this process, something a little bit more automated so you could actually highlight this information very easily in the commit itself. CHARLES: It's funny, my mind was wandering off towards GitHub. When do you use danger and when do you use GitHub actions? GitHub actions have been kind of like brewing and fermenting in my mind. TARAS: One nice thing is that I mean, danger is a little awkward in that it creates one single commit at a topic. It creates a comment first time you commit and then it keeps pushing information into a comment which shows up at the top of your comment thread. CHARLES: Right. TARAS: But that's not how you read comments. You read like top to bottom. You don't read top to bottom to top. And so, I think the nice thing about the actions is that because it's using checks like GitHub checks that actually is part of a different area, it's part of the validation area as opposed to part of the actual comment conversation. This seems like a more appropriate place to put their information rather than the first comment. CHARLES: Yeah. So, do we decide on kind of what the ultimate resolution is for when you have these high order conflicts? JOE: Yeah. So that's one thing that we came up with that I'm really proud of. And so what we do and at least at that job that I was at, what we did in those situations was we said, "OK, if you've gone back and forth on this two or three times and there's still not an agreement as to what should be done or there is no compromise, what you should do is let the author of the pull request go ahead and merge that code," because you want to merge that code, get it out to production, make sure it's serving our users and our clients. And then what you want to do is take that conflict and record it somewhere to specify this interpersonal conflict not a code conflict or a merge conflict or anything like that. So you take this interpersonal conflict, the topic that was being discussed and you put that -- we were just putting it in a Google doc and leaving it there. And then every couple of weeks or maybe every couple of sprints, we would go through that Google doc and just talk about topics that had come up. And then really more often than not, what we would find is that we didn't care about the topic anymore. CHARLES: [Laughs] It's amazing how time has a way of cooling passion over things that really don't matter. JOE: Yeah. And for the things that did matter, we usually have like a really good discussion. Sometimes, we even came up with something different entirely based on just having more people in the conversation and thinking about this problem. TARAS: I like this because there's a bit of process around it. It's kind of like a retrospective on pull request passions. JOE: Yes. TARAS: It sounds like a healthy thing to do for a team, especially. And I think just allocating some breathing room to go through these kind of things could be really important cumulatively over time, especially. CHARLES: Yeah, definitely. It sounds almost like the pull request is then ongoing. You have this collaboration that happens kind of at the front of the change but then is rippling outwards and onwards and hopefully then has an impact on future changes, like if you're disagreeing. So, would you qualify that the types of issues that end up living in this Google document as architectural issues or just, 'hey this is the way we need to talk to each other and this was off and we need to fix this' or is it both? JOE: It was mainly more architectural decisions that was coming up in this, sometimes like code style issues as well. Not so much the interpersonal issues, like the interpersonal issues would come during retros. CHARLES: OK, because it sounds to me like it's not. Then you have the added benefit that your architecture does get to improve because clearly if there's some disagreement about this, then there's some sort of tension there. There's someone perceiving that some problem is not being resolved by a particular implementation. And so it's good to just at least surface this issue again and again. What was your experience with kind of revisiting the architectural issues? Was it mostly 'well, this wasn't really an issue' or is it 'wow, I'm really glad we took note of this because now we have these three ways of thinking about things' and it turns out that given three or four months more experience, this is something that we should be doing. JOE: Yeah, it is definitely a mix of both but I'm kind of leaning more towards the latter. Like we're just glad that we bring things up. Occasionally, there will be one or two topics that will come up that we still would resolve and we would have to agree to disagree on something. Or in some cases, I think we would allow one of the lead engineers to just make the final decision on something. But that was pretty rare. CHARLES: So, apart from appealing to either time, the passage of time or just kind of taking a brain dump of all the different architectural options or deferring to a more senior engineer and just kind of asking them to step in and make the call, are there any processes that you can put in place say to kind of mechanically come up with a decision? Like any set of values that you can use as a ruler to kind of line up a set of things to kind of attach weight to one particular solution? For example, one of the things that I always think of is when I have internal conflict about a decision, there's kind of a part of me that feels like this might be the right way and maybe another way is the right way. And so, a tool that I will use is what's internally consistent with the rest of the system. So, even if I've had an insight that something really ought to be framed,one solution should be framed in a certain way. If there's another solution that's more internally consistent with the way things are existing, then I'll use that as a discriminator to say, "OK, that's one thing that I can use to measure a solution against, that I'm not emotionally tied to." It feels more objective. And if you have those tools, you can kind of pile them up and see which pile ends up being higher for each solution. Do you see what I mean? JOE: I definitely lean more towards keeping things consistent with what's already there. Personally, I probably do that to a fault. Sometimes I need to branch out a little more and get comfortable with possibly breaking something. But you always need to weigh whether it's something that is acceptable to break. Like a lot of the systems I've worked with involve money and it's really important that people either have money when they need it or are charged the correct amount when you charge them with things. CHARLES: They get really mad when you charge them too much. [Laughs] JOE: Isn't it amazing? [Laughs] CHARLES: Yeah. JOE: It could be that you are OK with breaking this other end of it where you might charge them the correct amount but the fulfillment of that product or the service or whatever you're selling, you might have a little more wiggle room in that part of the code base. Where if you break something, somebody calls in and says it's broken, and then you're just able to fix it. CHARLES: Is there anything else? If folks are struggling with the way their pull requests work or their code reviews work and they're experiencing friction and tension with their teammates, is there anything else they can do? JOE: What I would suggest is definitely look at the pull request template feature that is in GitHub and make use of that. Because what you can do with that is come up with several sections of the pull request template and say, "These are the questions that we want to ask before we submit a PR." And if you have those questions and those sections right when you go on that template and people read through that as they're making their pull request, they can often catch problems before they get to another reviewer. I can't tell you how many times I have submitted a pull request, started to write the description and [inaudible] these questions and realized, "Oh, this is wrong," or it's broken or it's totally the wrong thing. CHARLES: Right. It's funny and I feel like you want to be asking those questions not when you're submitting the pull request but before you're even writing the code. JOE: Yes. CHARLES: But a lot of times, we don't do that until afterwards and you're like, "Oh man!" Just this process of forcing myself to think about the problem in this way or think about it holistically totally recasts my implementation. JOE: Yeah, things like, "How can this break after we merge it?" [Laughter] CHARLES: Yeah, that's actually a great question, that of one you're talking on pull request. JOE: Oh yes, definitely. CHARLES: Like imagining the [inaudible] scenarios. JOE: Yep. CHARLES: Man, it's almost like you want to read the -- what are the other questions that you have? JOE: So the ones that we have are, first of all, what is this pull request? How does it fulfill the requirements for the ticket? And then how can this break after we merge it? Are there any post-merge tasks that need to be run? If you need to get on a server and run a task or do something after it has gone to production, that's a place to document that there. And then the final question is, how is this tested? CHARLES: Right. That's a good one. And like I said, I think that's the one where I'm going to be starting when I'm both thinking about how my changes will be reviewed and how I review changes. JOE: Maybe I should consider moving that to the top position. CHARLES: [Laughs] I mean, it is like. I'm just thinking about it and it does seem like we go straight to the implementation because that's what's fascinating to us. And so we might have way too much bias for the importance of the implementation over the importance of the test because I have to say I am so guilty of when I'm reviewing. Just looking for the fact that it has a test and not looking for what the test does. JOE: Yeah. CHARLES: And only referring back to the test and trying to understand how the test accomplishes its task. If I don't understand the implementation, I'm like, "Oh, let me look at the test and see how this code is used to the test." That might be problematic but I know that's definitely a little personal goal that's coming out of this podcast for me. TARAS: Excellent. CHARLES: All right. Joe, do you have anything else that's coming up? Any talks? Any meet-ups that you're going to? Any announcements? Anything that you want to plug? JOE: I have a website at JLLeBlanc.com and that's where I am. CHARLES: All right. Well, fantastic. Thank you so much for coming on. JOE: All right. Thank you. CHARLES: Thank you for listening. If you or someone you know has something to say about building user interfaces that simply must be heard, please get in touch with us. We can be found on Twitter at @TheFrontside or over just plain old email at Contact@Frontside.io. Thanks and see you next time.

The Frontside Podcast
098: Experience First Development

The Frontside Podcast

Play Episode Listen Later Mar 29, 2018 31:03


This Frontsider panel episode explores what virtues go into making quality software, such as having tests, making sure software is performant and accessible, and why you should try to avoid technical debt. Transcript: CHARLES: Hello everybody and welcome to The Frontside Podcast Episode 98. My name is Charles Lowell, developer here at The Frontside and your podcast host-in-training. With me today, we're going to have a round table, a Frontside round table. With me today is Elrick. ELRICK: Hey. CHARLES: Joe. JOE: How you doing? CHARLES: And of course, Will. WIL: Hello, hello. CHARLES: Welcome, y'all. We're going to be talking today about some of the things that we do around here, aside from trimming the shrubs and making coffee and snacking on Altoids. Like, way too many of them. Yeah. I was thinking we could talk a little bit about software qualities of relative things, like this software has these qualities. And I think that that kind of lofty goal of software quality is comprised of having a bunch of little qualities. The quality of having fewer bugs or the quality of having these things. And so, talking about all these things that we do and kind of what we do to make sure that we continue to do them. Or the ways that we can ensure that our software has these things. So yeah, we can just start really anywhere. WIL: Yeah. So, one core thing is obviously tests. CHARLES: That kind of falls under we want to have – really, there's two qualities there that we want, right? Is we want to have… WIL: Maintainable software. CHARLES: We want it to be maintainable. We want it to be resilient to change. And we want it to work properly, right? Yeah, so we put tests in place to make sure that that happens. JOE: Tests also inform design in a really positive way. A lot of the time, anyway. WIL: Another thing that we like to include in our apps is responsiveness. CHARLES: Yeah. And just making sure that you have – that it works on a multiplicity of devices, right? WIL: Yeah. And not just the devices, but browsers as well. CHARLES: Yeah. And it turns out it's actually really hard to do that after the fact. WIL: Right. JOE: Yeah. CHARLES: Making sure that lots of browsers, lots of devices. Because yeah, sometimes you have some weird screen width that is on some weird device, and making sure that that works. I guess there's some overlap with testing there, too, isn't it, right? Like you want to be running your tests on those devices at those resolutions to make sure that they're going to work. This is something that we aspire to but I don't think we're quite there yet. It was making sure that our applications are accessible. WIL: Yeah. JOE: I'm very excited to learn more about this as we get into this, yeah. CHARLES: Right, right. And asking the question, how is it that we actually can ensure our applications are accessible? We have very paved roads for making sure that our applications are resilient to change and that they have low bug rates and that they're well-designed via testing. But what is the analog of testing for accessibility? What's the way that you can put those guardrails in for accessibility? I have no idea. And that's an ongoing conversation here at Frontside. JOE: So, I guess I'm curious as to what technologies are actually involved in accessing a web application in – would it be reasonable to say a non-traditional way? I know there's such things as screen readers, but is that all we're talking about? Or what is the ecosystem that we have to consider supporting? CHARLES: I'm certainly not an expert on this. We'd have to get Rob in here to chew our ears off this. JOE: Yes. CHARLES: But from what I've picked up from him and from our conventions with Marcy Sutton and some other folks that we've had on the podcast, it's a big umbrella. So, it's anyone using an application in a non-traditional way. So, whether that can have to do with limited vision, hearing, movement, range of movement, cognitive ability, it's a gigantic whale of a domain. WIL: Yeah. The topic of accessibility can definitely be several podcasts on its own. CHARLES: Yeah. One thing that we've talked about is it would be great if you could drive your test suite through a screen reader or something like that. What would that even look like? There are a couple of open source ones out there, but they're Windows-only. I think it was NVDA was the big one. And then you have a screen reader that then drives the applications in your operating system, so it's going to vary per operating system. So, making sure that it's accessible on Windows, at least as I understand it, is very different from making sure that it's accessible on a Mac. JOE: Yeah, it's like a whole other layer. And it's like BrowserStack outside of the browser. CHARLES: Right. WIL: There are things that you can do from the beginning that will make it easier when you get to that point. It's just like using semantic HTML, knowing when and how to use proper aria labels. All these things, if you do it from the beginning, it's not as big of a task as bolting it on afterwards. CHARLES: Right. And I think we do have a leg up when it comes to web applications. It's within our power to change. There are cross-platform of those technologies. But as you said, it's important to put them in from the beginning. Because as we've seen, for each one of those categories, you're accumulating debt if you don't address it. So, there's technical debt. But I think that technical debt can [inaudible] into a bunch of different areas. So, there's technical debt in terms of the internal quality of your architecture, the way your software components talk to each other. And I think that that's what people mostly think of when they talk about technical debt. But I think in terms of responsiveness debt, there's a slice of the technical debt pie that has to do with making your application responsive. And so, if you don't address making your application responsive, you're accumulating debt and you might not know it. And if you're not making your application accessible, then from the beginning you're accumulating debt. So that if you have to go and try and figure out your accessibility story six months, a year, two years, you might actually uncover and say, “Whoops. I've been swiping the accessibility credit card. And holy crap, with all this. All my fines and penalties and compounded interest. Now I'm accessibility bankrupt.” And that can be scary, right? WIL: Yeah. And a lot of people don't realize with all this debt after the fact is they think they're going in and adding things like responsiveness and accessibility and tests. But really, you're also taking away previous work that's already there, things that need to be refactored. If you put these things off, you're not just adding a few hours of time. You're inflating your time exponentially. CHARLES: Right. Right, exactly. It can be intimidating but I think it's also empowering, because technical debt is like a scary subject. But if you're like, “Oh, we can actually slice our technical debt into a bunch of different categories and address them individually,” just knowing that this is an area where debt can accumulate, that's half the battle. Because the worst thing is debt you don't even see. ELRICK: Yeah. WIL: I mean, [inaudible] is big. That's a big part of accessibility, that, is most people don't think of accessibility. So, that is a huge debt that a lot of companies don't see. JOE: What about something like internationalization where I feel like I've never been in an application where that wasn't punted on to some degree. That's kind of a well-known problem, but it still takes a back burner. Do you think that if accessibility had more exposure as a concern, would it actually get the attention it deserves or is it kind of destined to, “Oh, we'll get to those yaml files later. We'll send those off for translation later,” that type of thing. ELRICK: I don't know. Sometimes I feel as though people feel as though they're trading speed away when they're building applications when they go to implement these things. Like, “Okay, well we're not really going to touch on these right now because that's going to slow us down from pushing out features.” Which is not really true. Because if you don't settle on these things early, you're not really building a solid foundation for your application in the long haul. So, I think people are like, “Oh, we'll just do it later.” CHARLES: Right. ELRICK: And, “We'll just ship features now.” CHARLES: Right. I think that's exactly right. It has this kind of secondary effect where not only do you develop the debt but you develop a culture of accumulating debt, right? Like when it comes to people getting a hold of their finances, the first thing that they have to change is they have to change their spending habits. And that can be the hardest thing. It's not just balancing the equation. It's like saying, “I need to readjust my thinking about this.” ELRICK: Yup. CHARLES: So that I'm not consistently put in this situation again. JOE: So, there's an operative word there, right, in personal finance in that usually if a company is addressing technical debt especially down the road, something that they've punted on for a while, it's far from personal. There's a board of directors or there's a special interest group involved. There's people who want features that are putting money into it. There's a lot of pressure as the company grows and more people are involved. Priorities are more likely to be lost, I guess. CHARLES: Are you saying it can be hard when your culture is spread over that many people, it can be hard to shift? JOE: Absolutely, yeah. And I guess to keep with the dash-first thing, ideally were we starting a company, we would want to start a culture for this company. A culture that recognizes the vulnerability that we all have to technical debt as applications grow. We want that upfront. But the reality is, you know, startups are eager to get things out. Companies that have been around for a long time have high-paying clients that they depend on that want certain things. And yeah, I guess I'm just saying that it has to come in from the beginning. CHARLES: Yeah. And I think that – I don't want to completely disparage technical debt entirely, because technical debt like actual debt, like financial debt, is a powerful tool that you can wield. But it's also, it's like a table saw. You can also easily slice your finger off. It doesn't mean that it's not a useful tool, right? If anyone's bought a house, it's really great that you can borrow money to buy a house. It's great that businesses can borrow money and get small business loans to get bootstrapped. And that benefits us all to have that community. I don't think that – yeah, startups definitely, they need to have technical debt as a tool that's available to them. But they just need to understand the consequences of it and be able to get a hold on it. JOE: That's a super interesting take. I never considered it that way before. CHARLES: Yeah. It's definitely not my take. I actually think the person who coined the term ‘technical debt', that was the original idea. But then people realized that technical debt can also get way out of hand. WIL: It's just like real debt. If you're not paying down a certain amount every so often, it's going to keep growing. CHARLES: Yup. You're going to have to declare bankruptcy at some point and throw out the piece of software if you don't pay a down. And that's going to be more expensive. ELRICK: Yup. That's definitely true. So, I have a question. And we see this all the time repeating itself at various companies, whether it's a startup, a large company, where they put off testing and mobile-first, user-first, accessibility-first. Like all the firsts, they just toss it to the side. Why do you all think that that happens so frequently? CHARLES: I think it comes into people not understanding that if you don't address it from the start, it won't happen naturally. There is a prime motivator that has to happen. If you don't imbue something with those qualities when it's tiny, when it's a tiny seed, a tiny crystal, you're going to have to drill through layers and layers and layers of core to put it at the crystal to begin with. I like to think of software as kind of like a tree. And we eat the fruit of the tree, and that's the features that users use. And we can tell that a fruit is delicious merely by placing it in our mouths. And we can tell what fruit is bad. But we can't really look at the fruit itself to say what caused this fruit to be good, what caused this fruit to be bad. We have to look at the tree. And I think that that's what people miss when they're developing software, is that what you really want to do is you want to build a tree that builds good fruit. You can't just take the fruit off the vine and say like, “Hey, I've got this peach but it doesn't have enough sweetness. So, I'm going to take a syringe and I'm going to inject glucose around it and make it less tart.” You say, “I want a sweet fruit,” right? ELRICK: Yeah. JOE: You could probably actually do that. CHARLES: You could. And that might be a strategy. And we see a lot of software that has those qualities of, “Oh, we're going to make this accessible,” or, “We're going to try and make this beautiful.” I happen to think that pigs are adorable animals and look great in lipstick. But that [laughs]… you could put lipstick on a pig but people can tell. And you can say, “Oh, this peach needs to have softer fruit,” and you can whack it with a mallet to actually make the meat more tender. But people are going to be able to tell. So, what you really need to do is you need to care for the peach tree rather than worry so much about the fruit. Because if you have a healthy tree, then you will have healthy fruit, right? ELRICK: Yeah. So, you want to plant good seeds. JOE: Yeah. WIL: Back to you question, Elrick, about what motivates startups and other companies to put off these things. I think the biggest thing is just time and money. They have this misconception where they're saving a little time and saving a little money now just to add it back later. But in reality, it's going to cost them tenfold time and money for adding it later, versus just spending that little bit of time and money and all that to begin with. CHARLES: That's true. JOE: It could also boil down, as far as just personal intimidation. Not so much like a business side of a thing but maybe just, think of all of the things that you listed, Elrick. It was almost a dozen dash-firsts in there. If you're sitting down at a startup that you started with three friends and just approaching these things for the first time, that's a lot to tack on right upfront. It's intimidating. CHARLES: It is intimidating. I think my message to those people is I've felt intimidated by that. I think my message to those people is like, the nice thing about it is if you attack those, if you tack all of those things from the get go, the features will take care of themselves and feel more effortless as you go on. You say like, “Oh, well actually, I don't worry about a high rate of bugs.” I want to say recidivism, but that's not the right word. A high rate of return, not on money but on – or high rate of bouncing your users. You don't want that. And if you bake that in from the beginning, parts of the software development cycle that were stressful before just aren't stressful anymore. So, if we say, “We want to have a system that is easily maintainable, well let's put that in from the very beginning.” We say that a lot. We deploy to production on day one. But what that means is, we say we have this value that we want the system to be easily maintainable. And so, we're going to do it from day one. That means that we actually – it's not something that we worry about so much on down the road. Whereas that used to be very stressful. I don't know. I remember when I started my career, there were these long release cycles where every six months, you'd release software. And the last month was just absolutely terrible as you try to stand this thing up and get it into production and then realize it's not monitored. There's no one checking the health of this thing. So, it's pissing off users at one in the morning. And… WIL: Beepers. CHARLES: What's that? WIL: Beepers. CHARLES: That's actually a great – there's a story there. The one time I got a beeper, I went canoeing in the canals of London and I tipped over my canoe and I dropped both my cellphone and the beeper that they've given me. ELRICK: What? CHARLES: I never got put on pager duty again. [Laughter] JOE: I'm going to use that next time [inaudible] with an on-call position. That's a good move. CHARLES: I remember, I definitely remember how sour my manager's face was when I turned [inaudible] the cellphone that was like, dripping with water. JOE: He was eating bad fruit, probably. CHARLES: Yeah. [Laughs] So, the other thing is we like to build beautiful applications, right? So, you have to – that match the user experience. You have to spend that time on design and beauty upfront. You will not have a beautiful application after the fact. You just need to bake it in. ELRICK: And accessible design. CHARLES: Exactly. ELRICK: Don't forget that one. CHARLES: Don't forget that, right? A responsive design. WIL: Yeah, accessibility-first in design. Yeah, responsive and all that starts in design phase, yeah. CHARLES: Yeah, all that, right? So, you want a great experience. You want an accessible experience. You want a responsive experience. You want a quality experience. You want a performant experience. That's another quality that you say. Like, “We're going to make sure that this is performant.” If you want that – and that's something that we're not always great about, right? We don't actually put in benchmarks for our software from the get go. But maybe we should. But there's perhaps a hidden cost there that we might be actually accumulating performance debt that we don't even know about. JOE: That's true. ELRICK: Interesting. JOE: So, things that pop up that are new. Like, accessibility wasn't probably always a thing in computing. Internationalization probably wasn't always a concern. Beautiful certainly wasn't a concern if you look on Wayback machine. You will see that to be true, right? [Laughter] JOE: So, all code is tech debt, I would argue. Or at least has the potential to be. And yeah, as the ecosystem as a whole evolves, being responsive to that, having plasticity in that respect, sort of like meta-first. CHARLES: Right. JOE: That could be the real challenge. WIL: Yeah, Charles is mentioning all these experience things. And so, I was thinking X-first is simply experience-first. You want you users to experience a certain quality of your app. That experience needs to start in the conception phase. CHARLES: Yeah. ELRICK: That's true. And even your developers coming in, developer experience. JOE: Yeah. CHARLES: Right. And I think the core of that X-first, that experience-first, is you need to pick which experiences. Because you can't have everything. JOE: Right, yeah. CHARLES: One, there is going to be too much. You have to say, “I'm going to sacrifice on knowing that this is a performance thing. I'm not going to include that in the core DNA of my application.” And there's just going to be things that you don't know about yet that are just unsolvable problems or that don't necessarily work. And you can say, “You know what? Hypothetically, I'm not going to make this an accessible – I'm not going to focus on accessibility.” But then you need to own that. And you need to know that you're accumulating a huge amount of debt around that. And then I think that is a particularly bad trade-off because someone's always going to come along and you're going to have to know that your application is accessible. I think once we clamp down on that, that's going to be something that we have a strategy for and we include at the beginning on every single application, right? ELRICK: Yeah. CHARLES: But I think you need to have, almost like holding the cards in your hand, say, “These are the cards. These are the X's that I'm going to have in my hand. And they are going to be core to my app.” And they're going to be part of the DNA of that tree. So that I know that the fruit is then going to have those qualities. JOE: And then you as an engineer, that goes through an iterative process as well. Just starting out, you have no idea what that DNA should look like. And short of learning from people who are wiser than you who are around you, and reading blog posts and whatnot, really the only way to know the pain of strong-arming internationalization for instance into a 15-year-old Perl application, is to go through it. And then, you know, future trees will not have this DNA. CHARLES: Right. Right. And that's the other thing. Is if you are going to include, if you are going to try and splice something into the DNA, there's a lot of work. And you just need to go for it. You acknowledge that it's going to be a lot of work. And you need to, you just need to own it and go for it. And pay that expense of actually getting it deep, deep, deep into your application's core values. So that then, you don't have to worry about it anymore. Otherwise, you're going to be paying – you're just basically signing up for a lifetime of debt. Right? WIL: Yeah. And then to make the debt analogy even more, it's like people don't understand the total debt. The end debt. People get a $30,000 loan with a 4% interest and they think they're paying back that $30,000 loan. But really, they're paying back $36,400 after all the amortization of their interest. The debt is higher than you can see, always. CHARLES: Right. WIL: And it's true in tech debt, too. React is the new hot thing now, but in 10 years we're going to be on React debt that we're migrating away from. JOE: I hope so. [Laughter] CHARLES: Maybe less, I think less than 10. WIL: Yeah. The debt is always there. And people don't realize how much they have to pay on top of what's visible. JOE: Yeah. It's an invisible vig. CHARLES: What's a vig? JOE: It's interest, in the mafia. CHARLES: Oh. JOE: Sorry. Yeah. CHARLES: I forgot you're Italian. JOE: Yeah. ELRICK: So, for people that are listening, they might be in a situation where they need to advocate to the powers that may be these X-first values. What do you all think that some of the approaches that they should take to say to whomever it is that, “We need to do this first”? Because there's times where you might say, “Hey, we need to do this first,” and people just look and say, “Oh, maybe not.” Then you need to push back on that. CHARLES: In my experience, I find that the tech debt argument is a good one. Because I think it can be, it's both limiting and empowering. Because sometimes it really is the right call to pull out your credit card and put something on it. If you need to buy water and you need to buy food and you don't have any other means, man, put it on the credit card. Right? Seriously. Even if you have no idea how you're going to pay it back. Like, whip that sucker out and stick the chip in. And it doesn't matter how much it costs. And so, sometimes that is the right call. But I think draining it of a moral or a value as a human person thing, and approaching it from a business decision and saying, really trying to attach a cost to it. Because then I think if you can drain out the emotion of it, because people really want something. They're striving to go get it and trying, give them tools to think about it rationally. That I think is a good strategy, to just say, let them know that there is a debt that's being paid here or that's being accumulated here. And it's really large. And maybe even say, “Look, if we were to put this off by six months, this might cost not twice as much. It might cost ten or even a hundred times as much.” So, by saving $5,000 now, you might actually be accumulating $50,000 worth of debt. It's [bigger] than you think. But I do like – so, I think that's one important tool. But I think then also the other important tool is to say, “If we are going to attack this, let's drive it home. Let's put it at the core. Let's make this a value that we hold so that the tree can take care of the fruit itself.” So, if we say that we're going to put in accessibility – because not all projects are greenfields. JOE: Absolutely not. CHARLES: So, what's the message to them? Sorry. You're just SOL. I think if you're a year into a project, two years into a project, and you realize, “Oh no. We need to do internationalization,” recognize that that might be something that's – that's a pillar of your architecture. Or, “We're going to make this application accessible,” don't half-ass it. WIL: Weave it in. CHARLES: Say, “We're going to transform this. We're not going to add accessibility. We're going to transform what we have into an accessible application.” Or, “We're going to transform what we have into a beautiful application.” Otherwise… WIL: Yeah [inaudible]. CHARLES: I would say leave it ugly and focus your efforts elsewhere on things where you do have your values straight. Because you're never going to have everything in line. JOE: No. WIL: Treat software like immutably. You don't add something to it. When you want to add accessibility, you're creating a whole new accessible app. ELRICK: Ooh. That's deep. CHARLES: Yeah. JOE: So, having seen – I don't know. I think it was very apt, looking at it as a business decision. I've seen it go the other way. Because at least among engineers and people on the technical side of it, this can become a very strong moral issue that people feel very strongly about. CHARLES: Because we have to live with the consequences quite honestly, right? JOE: Exactly. And that's a hard thing to translate to say an executive board that may be three levels abstracted away from you and is making those decisions. I've seen people attack or approach this I guess with that emotion built in, with the, “This is the right way to do it. Everybody else is doing it wrong.” It gets nowhere, basically. What needs to happen I think, so you talk about having this beautiful tree. But that also requires beautiful gardeners. And so, where the moral thing or the interpersonal thing comes in is there needs to be kind of an inclusive and encouraging environment that is fostered among the people tending to the tree. And that's a totally separate thing than selling the business value of it. Those things should be completely divorced. CHARLES: Yeah. It's funny. It's always hard to reconcile those two things, right? Because on one you have, “You have to take care of the raw consumption of material and the output of product.” But then also trying to – so, there's some baseline math that has to happen but making sure that that goal, it doesn't slice people. And can enable them to be happy and feel like they're doing good work. And that the things that they're doing is having meaning. It's probably an insoluble problem that we're going to be dancing around for as long as people are around. If there's one thing that we've come to recognize around here, and we've stated it many different ways from a bunch of different angles through the course of this conversation, and I would say through the course of this podcast, but that is if you want to see something in your software, make sure that you attack it from the get go. ELRICK: Intertwine it in your DNA. CHARLES: Exactly. And then you can actually experience the fruit, rather than trying to always, always trying to jam it and change it and get it into the taste you want after the fact. So, I guess that's it. Thank you so much y'all, for this conversation. I really, really enjoyed it. For those of y'all listening, if you want to continue the conversation, you can get in touch with us we are @TheFrontside on Twitter. Or you can drop us an email. We're contact@frontside.io. So, thanks Elrick. Thanks, Joe. Thanks, Will. JOE: Thank you. WIL: Thank you. ELRICK: Yup. It was great. JOE: It was fruitful. [Chuckles] ELRICK: Frontside-first. CHARLES: And well, we'll see y'all around.