Podcast appearances and mentions of joe good

  • 24PODCASTS
  • 45EPISODES
  • 46mAVG DURATION
  • ?INFREQUENT EPISODES
  • Nov 26, 2024LATEST

POPULARITY

20172018201920202021202220232024


Best podcasts about joe good

Latest podcast episodes about joe good

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.

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.

Wake The Farm Up! - Maintaining Ground
WTFU • Drea Star Doula Convos • The Weather Guy, George Schewe reporting at the Dillsboro Arts Guild, w/ artists Bob Mattingly and Virginia Kramer • Mother Midi & Labeling Joe • Good Ole Elf-olk songs

Wake The Farm Up! - Maintaining Ground

Play Episode Listen Later Mar 9, 2024 102:24


In this artfully woven potion mix, your attention will be captured, however, good thing is you can listen and do other things with your face free from the screen.Drea Star Doula Convos woven with George Schewe the Weather Guy, Reporting at the Dillsboro Arts Guild, w/ artists Bob Mattingly and Virginia Kramer • Mother Midi & Labeling Joe • Good Ole Elf-olk songsExploring technology, meterology, art, humor, science, music and more, and incredible episode to listen to from begining to end.  Connect with the guests- Send us notes to add!Andrea Eaton -  Drea Star InstagramDillsboro Arts Guild websiteDillsboro Arts Guild instagramChoose your own adventure if you wish and skip around in the foot notes!Here is the potion mixx:Intro, Teasers(3:06) Drea Star Doula Convo begins(12:52) We land at the Dillsboro Art Guild Center - Introducing George Schewe the Weather Guy, Bob Mattingly, and Virginia Kramer(14:09) Elf-olk Catch Up Time(20:40) Weather Guy predicts the Podcast(23:44) Back to Drea Star - Animism(36:24) Weather Guy gets deep in Meteorology and Art(39:22) Symbiosis with Drea Star(44:21) Weather Guy - Climate is a History Book(46:30) Mother Midi and Joe Labeling Everything(48:02) Back to the Troposphere with Weather Guy(59:25) Bob Mattingly steps us up to the Ohio River under cumulus clouds of color and giant mushrooms.(1:00:25) Drea's break from social media(1:03:41) Rainbows Weather Guy and Bob(1:04:48) Mother Midi, the Elves, and Joe labeling and cookies(1:07:01) Elf-olk - Money on a Pedestal (1:13:14) Weather Guy back on Weather and Art(1:16:07) Mother Midi and Joe still Labeling(1:18:00) Drea and Elf get into propaganda and wise phone options.(1:22:35) Weather Guy spittin Data(1:26:18) Virginia Kramer - underpass to colorful skies(1:28:24) Drea and Elf - People want video(1:33:20) Virginia's story swirls in...(1:34:57) Tom of the Dillsboro Arts Guild closes the show Weather and Art show(1:37:08) Mother Midi gets into the Chinjo(1:38:48) Elf-olk - Soggy Bottom Day(1:40:01) The edit elves try to sing but just tell  Joe to label things, Great Mother Midi leaves us wondering...Support the MIDIBoss JoeCheck him outSupport the showLinks to Stefin101 and Doctor Bionic Check us out on instagram @wakethefarmup @maintaining_ground_podcast@kastle_369Ask how you could be involved in the show, Subscribe and Support the Show

Joe DeCamara & Jon Ritchie
How do fans feel about playing in Brazil?

Joe DeCamara & Jon Ritchie

Play Episode Listen Later Feb 6, 2024 42:05


Hour 2:  DeCamara: I just want to sit on my ass on a Sunday afternoon and watch the Eagles!! Rhea - you're not going to sit on your ass on a Friday night and watch the Eagles?  Joe - Good point.

Giant Robots Smashing Into Other Giant Robots
497: Axiom with Seif Lotfy

Giant Robots Smashing Into Other Giant Robots

Play Episode Listen Later Oct 19, 2023 39:13


Victoria is joined by guest co-host Joe Ferris, CTO at thoughtbot, and Seif Lotfy, the CTO and Co-Founder of Axiom. Seif discusses the journey, challenges, and strategies behind his data analytics and observability platform. Seif, who has a background in robotics and was a 2008 Sony AIBO robotic soccer world champion, shares that Axiom pivoted from being a Datadog competitor to focusing on logs and event data. The company even built its own logs database to provide a cost-effective solution for large-scale analytics. Seif is driven by his passion for his team and the invaluable feedback from the community, emphasizing that sales validate the effectiveness of a product. The conversation also delves into Axiom's shift in focus towards developers to address their need for better and more affordable observability tools. On the business front, Seif reveals the company's challenges in scaling across multiple domains without compromising its core offerings. He discusses the importance of internal values like moving with urgency and high velocity to guide the company's future. Furthermore, he touches on the challenges and strategies of open-sourcing projects and advises avoiding platforms like Reddit and Hacker News to maintain focus. Axiom (https://axiom.co/) Follow Axiom on LinkedIn (https://www.linkedin.com/company/axiomhq/), X (https://twitter.com/AxiomFM), GitHub (https://github.com/axiomhq), or Discord (https://discord.com/invite/axiom-co). Follow Seif Lotfy on LinkedIn (https://www.linkedin.com/in/seiflotfy/) or X (https://twitter.com/seiflotfy). Visit his website at seif.codes (https://seif.codes/). Follow thoughtbot on X (https://twitter.com/thoughtbot) or LinkedIn (https://www.linkedin.com/company/150727/). Become a Sponsor (https://thoughtbot.com/sponsorship) of Giant Robots! Transcript: VICTORIA: This is the Giant Robots Smashing Into Other Giant Robots Podcast, where we explore the design, development, and business of great products. I'm your host, Victoria Guido, and with me today is Seif Lotfy, CTO and Co-Founder of Axiom, the best home for your event data. Seif, thank you for joining me. SEIF: Hey, everybody. Thanks for having me. This is awesome. I love the name of the podcast, given that I used to compete in robotics. VICTORIA: What? All right, we're going to have to talk about that. And I also want to introduce a guest co-host today. Since we're talking about cloud, and observability, and data, I invited Joe Ferris, thoughtbot CTO and Director of Development of our platform engineering team, Mission Control. Welcome, Joe. How are you? JOE: Good, thanks. Good to be back again. VICTORIA: Okay. I am excited to talk to you all about observability. But I need to go back to Seif's comment on competing with robots. Can you tell me a little bit more about what robots you've built in the past? SEIF: I didn't build robots; I used to program them. Remember the Sony AIBOs, where Sony made these dog robots? And we would make them compete. There was an international competition where we made them play soccer, and they had to be completely autonomous. They only communicate via Bluetooth or via wireless protocols. And you only have the camera as your sensor as well as...a chest sensor throws the ball near you, and then yeah, you make them play football against each other, four versus four with a goalkeeper and everything. Just look it up: RoboCup AIBO. Look it up on YouTube. And I...2008 world champion with the German team. VICTORIA: That sounds incredible. What kind of crowds are you drawing out for a robot soccer match? Is that a lot of people involved with that? SEIF: You would be surprised how big the RoboCup competition is. It's ridiculous. VICTORIA: I want to go. I'm ready. I want to, like, I'll look it up and find out when the next one is. SEIF: No more Sony robots but other robots. Now, there's two-legged robots. So, they make them play as two-legged robots, much slower than four-legged robots, but works. VICTORIA: Wait. So, the robots you were playing soccer with had four legs they were running around on? SEIF: Yeah, they were dogs [laughter]. VICTORIA: That's awesome. SEIF: We all get the same robot. It's just a competition on software, right? On a software level. And some other competitions within the RoboCup actually use...you build your own robot and stuff like that. But this one was...it's called the Standard League, where we all have a robot, and we have to program it. JOE: And the standard robot was a dog. SEIF: Yeah, I think back then...we're talking...it's been a long time. I think it started in 2001 or something. I think the competition started in 2001 or 2002. And I compete from 2006 to 2008. Robots back then were just, you know, simple. VICTORIA: Robots today are way too complicated [laughs]. SEIF: Even AI is more complicated. VICTORIA: That's right. Yeah, everything has gotten a lot more complicated [laughs]. I'm so curious how you went from being a world-champion robot dog soccer player [laughs] programmer [laughs] to where you are today with Axiom. Can you tell me a little bit more about your journey? SEIF: The journey is interesting because it came from open source. I used to do open source on the side a lot–part of the GNOME Project. That's where I met Neil and the rest of my team, Mikkel Kamstrup, the whole crowd, basically. We worked on GNOME. We worked on Ubuntu. Like, most of them were working professionally on it. I was working for another company, but we worked on the same project. We ended up at Xamarin, which was bought by Microsoft. And then we ended up doing Axiom. But we've been around each other professionally since 2009, most of us. It's like a little family. But how we ended up exactly in observability, I think it's just trying to fix pain points in my life. VICTORIA: Yeah, I was reading through the docs on Axiom. And there's an interesting point you make about organizations having to choose between how much data they have and how much they want to spend on it. So, maybe you can tell me a little bit more about that pain point and what you really found in the early stages that you wanted to solve. SEIF: So, the early stages of what we wanted to solve we were mainly dealing with...so, the early, early stage, we were actually trying to be a Datadog competitor, where we were going to be self-hosted. Eventually, we focused on logs because we found out that's what was a big problem for most people, just event data, not just metric but generally event data, so logs, traces, et cetera. We built out our own logs database completely from scratch. And one of the things we stumbled upon was; basically, you have three things when it comes to logging, which is low cost, low latency, and large scale. That's what everybody wants. But you can't get all three of them; you can only get two of them. And we opted...like, we chose large scale and low cost. And when it comes to latency, we say it should be just fast enough, right? And that's where we focused on, and this is how we started building it. And with that, this is how we managed to stand out by just having way lower cost than anybody else in the industry and dealing with large scale. VICTORIA: That's really interesting. And how did you approach making the ingestion pipeline for masses amount of data more efficient? SEIF: Just make it coordination-free as possible, right? And get rid of Kafka because Kafka just, you know, drains your...it's where you throw in money. Like maintaining Kafka...it's like back then Elasticsearch, right? Elasticsearch was the biggest part of your infrastructure that would cost money. Now, it's also Kafka. So, we found a way to have our own internal way of queueing things without having to rely on Kafka. As I said, we wrote everything from scratch to make it work. Like, every now and then, I think that we can spin this out of the company and make it a new product. But now, eyes on the prize, right? JOE: It's interesting to hear that somebody who spent so much time in the open-source community ended up rolling their own solution to so many problems. Do you feel like you had some lessons learned from open source that led you to reject solutions like Kafka, or how did that journey go? SEIF: I don't think I'm rejecting Kafka. The problem is how Kafka is built, right? Kafka is still...you have to set up all these servers. They have to communicate, et cetera, etcetera. They didn't build it in a way where it's stateless, and that's what we're trying to go to. We're trying to make things as stateless as possible. So, Kafka was never built for the cloud-native era. And you can't really rely on SQS or something like that because it won't deal with this high throughput. So, that's why I said, like, we will sacrifice some latency, but at least the cost is low. So, if messages show after half a second or a second, I'm good. It doesn't have to be real-time for me. So, I had to write a couple of these things. But also, it doesn't mean that we reject open source. Like, we actually do like open source. We open-source a couple of libraries. We contribute back to open source, right? We needed a solution back then for that problem, and we couldn't find any. And maybe one day, open source will have, right? JOE: Yeah. I was going to ask if you considered open-sourcing any of your high latency, high throughput solutions. SEIF: Not high latency. You make it sound bad. JOE: [laughs] SEIF: You make it sound bad. It's, like, fast enough, right? I'm not going to compete on milliseconds because, also, I'm competing with ClickHouse. I don't want to compete with ClickHouse. ClickHouse is low latency and large scale, right? But then the cost is, you know, off the charts a bit sometimes. I'm going the other route. Like, you know, it's fast enough. Like, how, you know, if it's under two, three seconds, everybody's happy, right? If the results come within two, three seconds, everybody is happy. If you're going to build a real-time trading system on top of it, I'll strongly advise against that. But if you're building, you know, you're looking at dashboards, you're more in the observability field, yeah, we're good. VICTORIA: Yeah, I'm curious what you found, like, which customer personas that market really resonated with. Like, is there a particular, like, industry type where you're noticing they really want to lower their cost, and they're okay with this just fast enough latency? SEIF: Honestly, with the current recession, everybody is okay with giving up some of the speed to reduce the money because I think it's not linear reduction. It's more exponential reduction at this point, right? You give up a second, and you're saving 30%. You give up two seconds, all of a sudden, you're saving 80%. So, I'd say in the beginning, everybody thought they need everything to be very, very fast. And now they're realizing, you know, with limitations you have around your budget and spending, you're like, okay, I'm okay with the speed. And, again, we're not slow. I'm just saying people realize they don't need everything under a second. They're okay with waiting for two seconds. VICTORIA: That totally resonates with me. And I'm curious if you can add maybe a non-technical or a real-life example of, like, how this impacts the operations of a company or organization, like, if you can give us, like, a business-y example of how this impacts how people work. SEIF: I don't know how, like, how do people work on that? Nothing changed, really. They're still doing the, like...really nothing because...and that aspect is you run a query, and, again, as I said, you're not getting the result in a second. You're just waiting two seconds or three seconds, and it's there. So, nothing really changed. I think people can wait three seconds. And we're still like–when I say this, we're still faster than most others. We're just not as fast as people who are trying to compete on a millisecond level. VICTORIA: Yeah, that's okay. Maybe I'll take it back even, like, a step further, right? Like, our audience is really sometimes just founders who almost have no formal technical training or background. So, when we talk about observability, sometimes people who work in DevOps and operations all understand it and kind of know why it's important [laughs] and what we're talking about. So, maybe you could, like, go back to -- SEIF: Oh, if you're asking about new types of people who've been using it -- VICTORIA: Yeah. Like, if you're going to explain to, like, a non-technical founder, like, why your product is important, or, like, how people in their organization might use it, what would you say? SEIF: Oh, okay, if you put it like that. It's more of if you have data, timestamp data, and you want to run analytics on top of it, so that could be transactions, that could be web vitals, rather than count every time somebody visits, you have a timestamp. So, you can count, like, how many visitors visited the website and what, you know, all these kinds of things. That's where you want to use something like Axiom. That's outside the DevOps space, of course. And in DevOps space, there's so many other things you use Axiom for, but that's outside the DevOps space. And we actually...we implemented as zero-config integration with Vercel that kind of went viral. And we were, for a while, the number one enterprise for self-integration because so many people were using it. So, Vercel users are usually not necessarily writing the most complex backends, but a lot of things are happening on the front-end side of things. And we would be giving them dashboards, automated dashboards about, you know, latencies, and how long a request took, and how long the response took, and the content type, and the status codes, et cetera, et cetera. And there's a huge user base around that. VICTORIA: I like that. And it's something, for me, you know, as a managing director of our platform engineering team, I want to talk more to founders about. It's great that you put this product and this app out into the world. But how do you know that people are actually using it? How do you know that people, like, maybe, are they all quitting after the first day and not coming back to your app? Or maybe, like, the page isn't loading or, like, it's not working as they expected it to. And, like, if you don't have anything observing what users are doing in your app, then it's going to be hard to show that you're getting any traction and know where you need to go in and make corrections and adjust. SEIF: We have two ways of doing this. Right now, internally, we use our own tools to see, like, who is sending us data. We have a deployment that's monitoring production deployment. And we're just, you know, seeing how people are using it, how much data they're sending every day, who stopped sending data, who spiked in sending data sets, et cetera. But we're using Mixpanel, and Dominic, our Head of Product, implemented a couple of key metrics to that for that specifically. So, we know, like, what's the average time until somebody starts going from building its own queries with the builder to writing APL, or how long it takes them from, you know, running two queries to five queries. And, you know, we just start measuring these things now. And it's been going...we've been growing healthy around that. So, we tend to measure user interaction, but also, we tend to measure how much data is being sent. Because let's keep in mind, usually, people go in and check for things if there's a problem. So, if there's no problem, the user won't interact with us much unless there's a notification that kicks off. We also just check, like, how much data is being sent to us the whole time. VICTORIA: That makes sense. Like, you can't just rely on, like, well, if it was broken, they would write a [chuckles], like, a question or something. So, how do you get those metrics and that data around their interactions? So, that's really interesting. So, I wonder if we can go back and talk about, you know, we already mentioned a little bit about, like, the early days of Axiom and how you got started. Was there anything that you found in the early discovery process that was surprising and made you pivot strategy? SEIF: A couple of things. Basically, people don't really care about the tech as much as they care [inaudible 12:51] and the packaging, so that's something that we had to learn. And number two, continuous feedback. Continuous feedback changed the way we worked completely, right? And, you know, after that, we had a Slack channel, then we opened a Discord channel. And, like, this continuous feedback coming in just helps with iterating, helps us with prioritizing, et cetera. And that changed the way we actually developed product. VICTORIA: You use Slack and Discord? SEIF: No. No Slack anymore. We had a community Slack. We had a community [inaudible 13:19] Slack. Now, there's no community Slack. We only have a community Discord. And the community Slack is...sorry, internally, we use Slack, but there's a community Discord for the community. JOE: But how do you keep that staffed? Is it, like, everybody is in the Discord during working hours? Is it somebody's job to watch out for community questions? SEIF: I think everybody gets involved now just...and you can see it. If you go on our Discord, you will just see it. Just everyone just gets involved. I think just people are passionate about what they're doing. At least most people are involved on Discord, right? Because there's, like, Discord the help sections, and people are just asking questions and other people answering. And now, we reached a point where people in the community start answering the questions for other people in the community. So, that's how we see it's starting to become a healthy community, et cetera. But that is one of my favorite things: when I see somebody from the community answering somebody else, that's a highlight for me. Actually, we hired somebody from that community because they were so active. JOE: Yeah, I think one of the biggest signs that a product is healthy is when there's a healthy ecosystem building up around it. SEIF: Yeah, and Discord reminds me of the old days of open sources like IRC, just with memes now. But because all of us come from the old IRC days, being on Discord and chatting around, et cetera, et cetera, just gives us this momentum back, gave us this momentum back, whereas Slack always felt a bit too businessy to me. JOE: Slack is like IRC with emoji. Discord is IRC with memes. SEIF: I would say Slack reminds me somehow of MSN Messenger, right? JOE: I feel like there's a huge slam on MSN Messenger here. SEIF: [laughs] What do you guys use internally, Slack or? I think you're using Slack, right? Or Teams. Don't tell me you're using Teams. JOE: No, we're using Slack. SEIF: Okay, good, because I shit talk. Like, there is this, I'll sh*t talk here–when I start talking about Teams, so...I remember that one thing Google did once, and that failed miserably. JOE: Google still has, like, seven active chat products. SEIF: Like, I think every department or every, like, group of engineers just uses one of them internally. I'm not sure. Never got to that point. But hey, who am I to judge? VICTORIA: I just feel like I end up using all of them, and then I'm just rotating between different tabs all day long. You maybe talked me into using Discord. I feel like I've been resisting it, but you got me with the memes. SEIF: Yeah, it's definitely worth it. It's more entertaining. More noise, but more entertaining. You feel it's alive, whereas Slack is...also because there's no, like, history is forever. So, you always go back, and you're like, oh my God, what the hell is this? VICTORIA: Yeah, I have, like, all of them. I'll do anything. SEIF: They should be using Axiom in the background. Just send data to Axiom; we can keep your chat history. VICTORIA: Yeah, maybe. I'm so curious because, you know, you mentioned something about how you realized that it didn't matter really how cool the tech was if the product packaging wasn't also appealing to people. Because you seem really excited about what you've built. So, I'm curious, so just tell us a little bit more about how you went about trying to, like, promote this thing you built. Or was, like, the continuous feedback really early on, or how did that all kind of come together? SEIF: The continuous feedback helped us with performance, but actually getting people to sign up and pay money it started early on. But with Vercel, it kind of skyrocketed, right? And that's mostly because we went with the whole zero-config approach where it's just literally two clicks. And all of a sudden, Vercel is sending your data to Axiom, and that's it. We will create [inaudible 16:33]. And we worked very closely with Vercel to do this, to make this happen, which was awesome. Like, yeah, hats off to them. They were fantastic. And just two clicks, three clicks away, and all of a sudden, we created Axiom organization for you, the data set for you. And then we're sending it...and the data from Vercel is being forwarded to it. I think that packaging was so simple that it made people try it out quickly. And then, the experience of actually using Axiom was sticky, so they continued using it. And then the price was so low because we give 500 gigs for free, right? You send us 500 gigs a month of logs for free, and we don't care. And you can start off here with one terabyte for 25 bucks. So, people just start signing up. Now, before that, it was five terabytes a month for $99, and then we changed the plan. But yeah, it was cheap enough, so people just start sending us more and more and more data eventually. They weren't thinking...we changed the way people start thinking of “what am I going to send to Axiom” or “what am I going to send to my logs provider or log storage?” To how much more can I send? And I think that's what we wanted to reach. We wanted people to think, how much more can I send? JOE: You mentioned latency and cost. I'm curious about...the other big challenge we've seen with observability platforms, including logs, is cardinality of labels. Was there anything you had to sacrifice upfront in terms of cardinality to manage either cost or volume? SEIF: No, not really. Because the way we designed it was that we should be able to deal with high cardinality from scratch, right? I mean, there's open-source ways of doing, like, if you look at how, like, a column store, if you look at a column store and every dimension is its own column, it's just that becomes, like, you can limit on the amount of columns you're creating, but you should never limit on the amount of different values in a column could be. So, if you're having something like stat tags, right? Let's say hosting, like, hostname should be a column, but then the different hostnames you have, we never limit that. So, the cardinality on a value is something that is unlimited for us, and we don't really see it in cost. It doesn't really hit us on cost. It reflects a bit on compression if you get into technical details of that because, you know, high cardinality means a lot of different data. So, compression is harder, but it's not repetitive. But then if you look at, you know, oh, I want to send a lot of different types of fields, not values with fields, so you have hostname, and latency, and whatnot, et cetera, et cetera, yeah, that's where limitation starts because then they have...it's like you're going to a wide range of...and a wider dimension. But even that, we, yeah, we can deal with thousands at this point. And we realize, like, most people will not need more than three or four. It's like a Postgres table. You don't need more than 3,000 to 4000 columns; else, you know, you're doing a lot. JOE: I think it's actually pretty compelling in terms of cost, though. Like, that's one of the things we've had to be most careful about in terms of containing cost for metrics and logs is, a lot of providers will...they'll either charge you based on the number of unique metric combinations or the performance suffers greatly. Like, we've used a lot of Prometheus-based solutions. And so, when we're working with developers, even though they don't need more than, you know, a few dozen metric combinations most of the time, it's hard for people to think of what they need upfront. It's much easier after you deploy it to be able to query your data and slice it retroactively based on what you're seeing. SEIF: That's the detail. When you say we're using Prometheus, a lot of the metrics tools out there are using, just like Prometheus, are using the Gorilla data structure. And the real data structure was never designed to deal with high cardinality labels. So, basically, to put it in a simple way, every combination of tags you send for metrics is its own file on disk. That's, like, the very simple way of explaining this. And then, when you're trying to search through everything, right? And you have a lot of these combinations. I actually have to get all these files from this conversion back together, you know, and then they're chunked, et cetera. So, it's a problem. Generally, how metrics are doing it...most metrics products are using it, even VictoriaMetrics, et cetera. What they're doing is they're using either the Prometheus TSDB data structure, which is based on Gorilla. Influx was doing the same thing. They pivoted to using more and more like the ones we use, and Honeycomb uses, right? So, we might not be as fast on metrics side as these highly optimized. But then when it comes to high [inaudible 20:49], once we start dealing with high cardinality, we will be faster than those solutions. And that's on a very technical level. JOE: That's pretty cool. I realize we're getting pretty technical here. Maybe it's worth defining cardinality for the audience. SEIF: Defining cardinality to the...I mean, we just did that, right? JOE: What do you think, Victoria? Do you know what cardinality is now? [laughs] VICTORIA: All right. Now I'm like, do I know? I was like, I think I know what it means. Cardinality is, like, let's say you have a piece of data like an event or a transaction. SEIF: It's like the distinct count on a property that gives you the cardinality of a property. VICTORIA: Right. It's like how many pieces of information you have about that one event, basically, yeah. JOE: But with some traditional metrics stores, it's easy to make mistakes. For example, you could have unbounded cardinality by including response time as one of the labels -- SEIF: Tags. JOE: And then it's just going to -- SEIF: Oh, no, no. Let me give you a better one. I put in timestamp at some point in my life. JOE: Yeah, I feel like everybody has done that one. [laughter] SEIF: I've put a system timestamp at some point in my life. There was the actual timestamp, and there was a system timestamp that I would put because I wanted to know when the...because I couldn't control the timestamp, and the only timestamp I had was a system timestamp. I would always add the actual timestamp of when that event actually happened into a metric, and yeah, that did not scale. MID-ROLL AD: Are you an entrepreneur or start-up founder looking to gain confidence in the way forward for your idea? At thoughtbot, we know you're tight on time and investment, which is why we've created targeted 1-hour remote workshops to help you develop a concrete plan for your product's next steps. Over four interactive sessions, we work with you on research, product design sprint, critical path, and presentation prep so that you and your team are better equipped with the skills and knowledge for success. Find out how we can help you move the needle at tbot.io/entrepreneurs. VICTORIA: Yeah. I wonder if you could maybe share, like, a story about when it's gone wrong, and you've suddenly charged a lot of money [laughs] just to get information about what's happening in the system. Any, like, personal experiences with observability that kind of informed what you did with Axiom? SEIF: Oof, I have a very bad one, like, a very, very bad one. I used to work for a company. We had to deploy Elasticsearch on Windows Servers, and it was US-East-1. So, just a combination of Elasticsearch back in 2013, 2014 together with Azure and Windows Server was not a good idea. So, you see where this is going, right? JOE: I see where it's going. SEIF: Eventually, we had, like, we get all these problems because we used Elasticsearch and Kibana as our, you know, observability platform to measure everything around the product we were building. And funny enough, it cost us more than actually maintaining the infrastructure of the product. But not just that, it also kept me up longer because most of the downtimes I would get were not because of the product going down. It's because my Elasticsearch cluster started going down, and there's reasons for that. Because back then, Microsoft Azure thought that it's okay for any VM to lose connection with the rest of the VMs for 30 seconds per day. And then, all of a sudden, you have Elasticsearch with a split-brain problem. And there was a phase where I started getting alerted so much that back then, my partner threatened to leave me. So I bought a...what I think was a shock bracelet or a shock collar via Bluetooth, and I connected it to phone for any notification. And I bought that off Alibaba, by the way. And I would charge it at night, put it on my wrist, and go to sleep. And then, when alert happens, it will fully discharge the battery on me every time. JOE: Okay, I have to admit, I did not see where that was going. SEIF: Yeah, did that for a while; definitely did not save my relationship either. But eventually, that was the point where, you know, we started looking into other observability tools like Datadog, et cetera, et cetera, et cetera. And that's where the actual journey began, where we moved away from Elasticsearch and Kibana to look for something, okay, that we don't have to maintain ourselves and we can use, et cetera. So, it's not about the costs as much; it was just pain. VICTORIA: Yeah, pain is a real pain point, actual physical [chuckles] and emotional pain point [laughter]. What, like, motivates you to keep going with Axiom and to keep, like, the wind in your sails to keep working on it? SEIF: There's a couple of things. I love working with my team. So, honestly, I just wake up, and I compliment my team. I just love working with them. They're a lot of fun to work with. And they challenge me, and I challenge them back. And I upset them a lot. And they can't upset me, but I upset them. But I love working with them, and I love working with that team. And the other thing is getting, like, having this constant feedback from customers just makes you want to do more and, you know, close sales, et cetera. It's interesting, like, how I'm a very technical person, and I'm more interested in sales because sales means your product works, the product, the technical parts, et cetera. Because if technically it's not working, you can't build a product on top of it. And if you're not selling it, then what's the point? You only sell when the product is good, more or less, unless you're Oracle. VICTORIA: I had someone ask me about Oracle recently, actually. They're like, "Are you considering going back to it?" And I'm maybe a little allergic to it from having a federal consulting background [laughs]. But maybe they'll come back around. I don't know. We'll see. SEIF: Did you sell your soul back then? VICTORIA: You know, I feel like I just grew up in a place where that's what everyone did was all. SEIF: It was Oracle, IBM, or HP back in the day. VICTORIA: Yeah. Well, basically, when you're working on applications that were built in, like, the '80s, Oracle was, like, this hot, new database technology [laughs] that they just got five years ago. So, that's just, yeah, interesting. SEIF: Although, from a database perspective, they did a lot of the innovations. A lot of first innovations could have come from Oracle. From a technical perspective, they're ridiculous. I'm not sure from a product perspective how good they are. But I know their sales team is so big, so huge. They don't care about the product anymore. They can still sell. VICTORIA: I think, you know, everything in tech is cyclical. So, you know, if they have the right strategy and they're making some interesting changes over there, there's always a chance [laughs]. Certain use cases, I mean, I think that's the interesting point about working in technology is that you know, every company is a tech company. And so, there's just a lot of different types of people, personas, and use cases for different types of products. So, I wonder, you know, you kind of mentioned earlier that, like, everyone is interested in Axiom. But, you know, I don't know, are you narrowing the market? Or, like, how are you trying to kind of focus your messaging and your sales for Axiom? SEIF: I'm trying to focus on developers. So, we're really trying to focus on developers because the experience around observability is crap. It's stupid expensive. Sorry for being straightforward, right? And that's what we're trying to change. And we're targeting developers mainly. We want developers to like us. And we'll find all these different types of developers who are using it, and that's the interesting thing. And because of them, we start adding more and more features, like, you know, we added tracing, and now that enables, like, billions of events pushed through for, you know, again, for almost no money, again, $25 a month for a terabyte of data. And we're doing this with metrics next. And that's just to address the developers who have been giving us feedback and the market demand. I will sum it up, again, like, the experience is crap, and it's stupid expensive. I think that's the [inaudible 28:07] of observability is just that's how I would sum it up. VICTORIA: If you could go back in time and talk to yourself when you were still a developer, now that you're CTO, what advice would you give yourself? JOE: Besides avoiding shock collars. VICTORIA: [laughs] Yes. SEIF: Get people's feedback quickly so you know you're on the right track. I think that's very, very, very, very important. Don't just work in the dark, or don't go too long into stealth mode because, eventually, people catch up. Also, ship when you're 80% ready because 100% is too late. I think it's the same thing here. JOE: Ship often and early. SEIF: Yeah, even if it's not fully ready, it's still feedback. VICTORIA: Ship often and early and talk to people [laughs]. Just, do you feel like, as a developer, did you have the skills you needed to be able to get the most out of those feedback and out of those conversations you were having with people around your product? SEIF: I still don't think I'm good enough. You're just constantly learning, right? I just accepted I'm part of a team, and I have my contributions. But as an individual, I still don't think I know enough. I think there's more I need to learn at this point. VICTORIA: I wonder, what questions do you have for me or Joe? SEIF: How did you start your podcast, and why the name? VICTORIA: Oh, man, I hope I can answer. So, the podcast was started...I think it's, like, we're actually about to be at our 500th Episode. So, I've only been a host for the last year. Maybe Joe even knows more than I do. But what I recall is that one person at thoughtbot thought it would be a great idea to start a podcast, and then they did it. And it seems like the whole company is obsessed with robots. I'm not really sure where that came from. There used to be a tiny robot in the office, is what I remember. And people started using that as, like, the mascot. And then, yeah, that's it, that's the whole thing. SEIF: Was the robot doing anything useful or just being cute? JOE: It was just cute, and it's hard to make a robot cute. SEIF: Was it a real robot, or was it like a -- JOE: No, there was, at one point, a toy robot. The name...I actually forget the origin–origin of the name, but the name Giant Robots comes from our blog. So, we named the podcast the same as the blog: Giant Robots Smashing Into Other Giant Robots. SEIF: Yes, it's called transformers. VICTORIA: Yeah, I like it. It's, I mean, now I feel like -- SEIF: [laughs] VICTORIA: We got to get more, like, robot dogs involved [laughs] in the podcast. SEIF: Like, I wanted to add one thing when we talked about, you know, what gets me going. And I want to mention that I have a six-month-old son now. He definitely adds a lot of motivation for me to wake up in the morning and work. But he also makes me wake up regardless if I want to or not. VICTORIA: Yeah, you said you had invented an alarm clock that never turns off. Never snoozes [laughs]. SEIF: Yes, absolutely. VICTORIA: I have the same thing, but it's my dog. But he does snooze, actually. He'll just, like, get tired and go back to sleep [laughs]. SEIF: Oh, I have a question. Do dogs have a Tamagotchi phase? Because, like, my son, the first three months was like a Tamagotchi. It was easy to read him. VICTORIA: Oh yeah, uh-huh. SEIF: Noisy but easy. VICTORIA: Yes, yes. SEIF: Now, it's just like, yeah, I don't know, like, the last month he has opinions at six months. I think it's because I raised him in Europe. I should take him back to the Middle East [laughs]. No opinions. VICTORIA: No, dogs totally have, like, a communication style, you know, I pretty much know what he, I mean, I can read his mind, obviously [laughs]. SEIF: Sure, but that's when they grow a bit. But what when they were very...when the dog was very young? VICTORIA: Yeah, they, I mean, they also learn, like, your stuff, too. So, they, like, learn how to get you to do stuff or, like, I know she'll feed me if I'm sitting here [laughs]. SEIF: And how much is one dog year, seven years? VICTORIA: Seven years. SEIF: Seven years? VICTORIA: Yeah, seven years? SEIF: Yeah. So, basically, in one year, like, three months, he's already...in one month, he's, you know, seven months old. He's like, yeah. VICTORIA: Yeah. In a year, they're, like, teenagers. And then, in two years, they're, like, full adults. SEIF: Yeah. So, the first month is basically going through the first six months of a human being. So yeah, you pass...the first two days or three days are the Tamagotchi phase that I'm talking about. VICTORIA: [chuckles] I read this book, and it was, like, to understand dogs, it's like, they're just like humans that are trying to, like, maximize the number of positive experiences that they have. So, like, if you think about that framing around all your interactions about, like, maybe you're trying to get your son to do something, you can be like, okay, how do I, like, I don't know, train him that good things happen when he does the things I want him to do? [laughs] That's kind of maybe manipulative but effective. So, you're not learning baby sign language? You're just, like, going off facial expressions? SEIF: I started. I know how Mama looks like. I know how Dada looks like. I know how more looks like, slowly. And he already does this thing that I know that when he's uncomfortable, he starts opening and closing his hands. And when he's completely uncomfortable and basically that he needs to go sleep, he starts pulling his own hair. VICTORIA: [laughs] I do the same thing [laughs]. SEIF: You pull your own hair when you go to sleep? I don't have that. I don't have hair. VICTORIA: I think I do start, like, touching my head though, yeah [inaudible 33:04]. SEIF: Azure took the last bit of hair I had! Went away with Azure, Elasticsearch, and the shock collar. VICTORIA: [laughs] SEIF: I have none of them left. Absolutely nothing. I should sue Elasticsearch for this shit. VICTORIA: [laughs] Let me know how that goes. Maybe there's more people who could join your lawsuit, you know, with a class action. SEIF: [laughs] Yeah. Well, one thing I wanted to also just highlight is, right now, one of the things that also makes the company move forward is we realized that in a single domain, we proved ourselves very valuable to specific companies, right? So, that was a big, big thing, milestone for us. And now we're trying to move into a handful of domains and see which one of those work out the best for us. Does that make sense? VICTORIA: Yeah. And I'm curious: what are the biggest challenges or hurdles that you associate with that? SEIF: At this point, you don't want just feedback. You want constructive criticism. Like, you want to work with people who will criticize the applic...and you iterate with them based on this criticism, right? They're just not happy about you and trying to create design partners. So, for us, it was very important to have these small design partners who can work with us to actually prove ourselves as valuable in a single domain. Right now, we need to find a way to scale this across several domains. And how do you do that without sacrificing? Like, how do you open into other domains without sacrificing the original domain you came from? So, there's a lot of things [inaudible 34:28]. And we are in the middle of this. Honestly, I Forrest Gumped my way through half of this, right? Like, I didn't know what I was doing. I had ideas. I think it's more of luck at this point. And I had luck. No, we did work. We did work a lot. We did sleepless nights and everything. But I think, in the last three years, we became more mature and started thinking more about product. And as I said, like, our CEO, Neil, and Dominic, our head of product, are putting everything behind being a product-led organization, not just a tech-led organization. VICTORIA: That's super interesting. I love to hear that that's the way you're thinking about it. JOE: I was just curious what other domains you're looking at pushing into if you can say. SEIF: So, we are going to start moving into ETL a bit more. We're trying to see how we can fit in specific ML scenarios. I can't say more about the other, though. JOE: Do you think you'll take the same approaches in terms of value proposition, like, low cost, good enough latency? SEIF: Yes, that's definitely one thing. But there's also...so, this is the values we're bringing to the customer. But also, now, our internal values are different. Now it's more of move with urgency and high velocity, as we said before, right? Think big, work small. The values in terms of values we're going to take to the customers it's the same ones. And maybe we'll add some more, but it's still going to be low-cost and large-scale. And, internally, we're just becoming more, excuse my French, agile. I hate that word so much. Should be good with Scrum. VICTORIA: It's painful, but everyone knows what you're talking about [laughs], you know, like -- SEIF: See, I have opinions here about Scrum. I think Scrum should be only used in terms of iceScrum [inaudible 36:04], or something like that. VICTORIA: Oh no [laughter]. Well, it's a Rugby term, right? Like, that's where it should probably stay. SEIF: I did not know it's a rugby term. VICTORIA: Yeah, so it should stay there, but -- SEIF: Yes [laughs]. VICTORIA: Yeah, I think it's interesting. Yeah, I like the being flexible. I like the just, like, continuous feedback and how you all have set up to, like, talk with your customers. Because you mentioned earlier that, like, you might open source some of your projects. And I'm just curious, like, what goes into that decision for you when you're going to do that? Like, what makes you think this project would be good for open source or when you think, actually, we need to, like, keep it? SEIF: So, we open source libraries, right? We actually do that already. And some other big organizations use our libraries; even our competitors use our libraries, that we do. The whole product itself or at least a big part of the product, like database, I'm not sure we're going to open source that, at least not anytime soon. And if we open source, it's going to be at a point where the value-add it brings is nothing compared to how well our product is, right? So, if we can replace whatever's at the back with...the storage engine we have in the back with something else and the product doesn't get affected, that's when we open source it. VICTORIA: That's interesting. That makes sense to me. But yeah, thank you for clarifying that. I just wanted to make sure to circle back. Since you have this big history in open source, yeah, I'm curious if you see... SEIF: Burning me out? VICTORIA: Burning you out, yeah [laughter]. Oh, that's a good question. Yeah, like, because, you know, we're about to be in October here. Do you have any advice or strategies as a maintainer for not getting burned out during the next couple of weeks besides, like, hide in a cave and without internet access [laughs]? SEIF: Stay away from Reddit and Hacker News. That's my goal for October now because I'm always afraid of getting too attached to an idea, or too motivated, or excited by an idea that I drift away from what I am actually supposed to be doing. VICTORIA: Last question is, is there anything else you would like to promote? SEIF: Yeah, check out our website; I think it's at axiom.co. Check it out. Sign up. And comment on Discord and talk to me. I don't bite, sometimes grumpy, but that's just because of lack of sleep in the morning. But, you know, around midday, I'm good. And if you're ever in Berlin and you want to hang out, I'm more than willing to hang out. VICTORIA: Whoo, that's awesome. Yeah, Berlin is great. I was there a couple of years ago but no plans to go back anytime soon, but maybe I'll keep that in mind. You can subscribe to the show and find notes along with a complete transcript for this episode at giantrobots.fm. If you have questions or comments, email us at hosts@giantrobots.fm. And you could find me on Twitter @victori_ousg. And this podcast is brought to you by thoughtbot and produced and edited by Mandy Moore. Thanks for listening. See you next time. Did you know thoughtbot has a referral program? If you introduce us to someone looking for a design or development partner, we will compensate you if they decide to work with us. More info on our website at tbot.io/referral. Or you can email us at referrals@thoughtbot.com with any questions. Special Guests: Joe Ferris and Seif Lotfy.

The Fandalorians: Teachers by Day, Nerds by Night
Episode 90: Tom Cruise: More Than Meets The Eye

The Fandalorians: Teachers by Day, Nerds by Night

Play Episode Listen Later Jun 20, 2023 58:23


On today's episode of the #1 Public School teacher pop culture podcast, we answer essential questions like: is there a stunt that Tom Cruise won't do?Transformers vs G.I. Joe : Good idea or terrible idea?Jenna Ortega makes changes to Wednesday season 2Mr. McDonald has hot takes that Mr. Richardson is not a fan of.  Hyjinx insue. Clear The List: Mr. J Twitter: @melanie4kidsAmazon Link: https://www.amazon.com/hz/wishlist/ls/3I24007JFBPHT?ref_=wl_share10:11  Mrs. J clear the list12:08  Transformers: Enter G.I. Joe?20:36  Wednesday Season 2 News24:34  Tom Cruise Stunt Man of the Year30:16  Hot Takes: John Favera deserves more credit than Kevin Feige43:35  Hot Takes: McDonald: Star Trek 4 is a Police Acedemy Movie?All this and much, much more!!!Send all email to Thefandaloriansmailbag@gmail.com all emails will be read on the podcast. Follow us on Twitter at @FandalorainspodAlso follow us on Instagram at fandalorians.podcastWant to buy some merch where 100% of our cut goes to the charity!!!  Go to:  https://www.teepublic.com/user/the-fandalorians-teachers-by-day-nerds-by-nightOUR PERCENTAGE OF THE SALES GOES DIRECTLY  TO THE MAKE A WISH FOUNDATION

Ask the Expert with Steve Sleeper
DUI Criminal Defense Lawyer Joe Good in Mount Pleasant SC

Ask the Expert with Steve Sleeper

Play Episode Listen Later May 12, 2023 22:33


Our guest today is DUI Criminal Defense Lawyer Joe Good with Joe Good Law in Mount Pleasant SC near Charleston. His motto is, when it's bad, call Good. His phone number is 843-412-1401 and his website is https://joegoodlaw.com/

IN THE HOUSE
FRIDRIKH - IN THE HOUSE [JUL] #450

IN THE HOUSE

Play Episode Listen Later Nov 2, 2022 59:51


[OUT JULY, 2022] FRIDRIKH In The House #450 OUT JUNE, 2022 01.Dennis Ferrer - P 2 Da J (Sllash & Doppe Extended Remix) [Street King] 02.Victor Porfidio - Sheck (Extended Mix) [777 LAB] 03.J. Rod, Pat Nice, Joe Good, Landshark - Peter Pan (Landshark Remix) [Brique Rouge] 04.The Deepshakerz - In The Bag (Extended Mix) [Nothing Else Matters] 05.Supernova, Kevin Saunderson - Beat Me Back (Original Mix) [Lapsus Music] 06.AMEME - No Justice No Peace [LW Recordings] 07.Coss, Santrofi, KYONGPAUL - Africa (Kyongpaul & Coss Remix) [Out Here Records] 08.Ana Tijoux - 1977 (Funky Judge Rmx) [Hysterical] 09.DJ Koze & Sophia Kennedy - Drone Me Up, Flashy (&ME Remix) [Pampa Records] 10.KosmetiQ, E.L.F, Freaky Fingers - The Sumerian (Original Mix) [SP Recordings] 11.Guy Gerber, Albertina - Bocat [Rumors] 12.Alex Twin - Ancient World [Bercana Music] 13.Pete Tong & Goom Gum - Signal (Original Mix) [Renaissance Records] 14.Hrederik & Bio Bros. - Forest [ODYSSEY] 15.Daniel Rateuke, SANDHAUS - Wild Eyes (Extended Mix) [Go Deeva Records] 16.Kevin Di Serna - Everyone /w U Won't C Me (Bootleg) [ID]

Two Can Keep A Secret
Ep. 11: Stalking

Two Can Keep A Secret

Play Episode Listen Later Jan 12, 2022 130:18


January is stalking awareness month, so to celebrate, we've prepared a special episode! Listen to the end where we tell you potentially life saving tips on how to handle a stalking situation. Pam: Are you ready to be enraged by this case from across the pond? Shana Grice did everything she was supposed to do when being stalked by her coworker turned lover... So what went wrong? Ronda:  How does a relationship go from an engagement to mailing sex toys to your ex's coworkers? Joe Good thought he had finally met the perfect woman until he ended their relationship and she flew off the handle. Stalking AwarenessNational Domestic Violence Hotline - 800.799.SAFE (7233)Self-defense tools: The Best Self Defense Tools 2021Glamour - Self Defense ToolsInvisawear NecklaceGo Guarded RingSources: Pam:Statistics/ Psychology: Psychology TodayCase: YouTube - They Will Kill PodcastBBC NewsWorthing HeraldRonda: Legal: Merriam-websterLegal-dictionaryMedium.comGood House KeepingToday.comCase: dockets.justia.comon-vigilantism.blogspot.comstaugustine.comstaugustine.com 2ABC 13Daily MailAnd of Course the 20/20 episode on this case “Be Careful Who You Break Up With” Music:Flying and Uplifting by Lesfm on Pixabay

Build Assets Online Podcast: Dropshipping, E-Commerce. Affiliate Marketing, Kindle Publishing Niche Sites, Authority Sites
Niche Site - Blogging Income Report - November 2021 - Is Joe Good at SEO yet? - Episode #198

Build Assets Online Podcast: Dropshipping, E-Commerce. Affiliate Marketing, Kindle Publishing Niche Sites, Authority Sites

Play Episode Listen Later Dec 4, 2021 76:48


In this episode, we're going to be looking at our income report for the past 30 days and see how we're doing. Will we get to our goal of $30,000 to $50,000 per month any time soon? OUR COURSES ⭐ Membership Group: https://BuildAssetsOnline.com/Membership ⭐ Online Asset Playbook: https://BuildAssetsOnline.com/Playbook ABOUT US Joe and Mike Brusca own and operate a digital portfolio of over 10 websites including 4 high ticket dropshipping stores. The duo have created over 6 high ticket dropshipping stores, all in operation and profitable. 3 have been sold for a total of over $300,000K

blogging income reports niche sites joe good buildassetsonline
Build Assets Online Podcast: Dropshipping, E-Commerce. Affiliate Marketing, Kindle Publishing Niche Sites, Authority Sites
Niche Site - Blogging Income Report - November 2021 - Is Joe Good at SEO yet? - Episode #198

Build Assets Online Podcast: Dropshipping, E-Commerce. Affiliate Marketing, Kindle Publishing Niche Sites, Authority Sites

Play Episode Listen Later Dec 4, 2021 76:49


In this episode, we're going to be looking at our income report for the past 30 days and see how we're doing. Will we get to our goal of $30,000 to $50,000 per month any time soon? OUR COURSES ⭐ Membership Group: https://BuildAssetsOnline.com/Membership ⭐ Online Asset Playbook: https://BuildAssetsOnline.com/Playbook ABOUT US Joe and Mike Brusca own and operate a digital portfolio of over 10 websites including 4 high ticket dropshipping stores. The duo have created over 6 high ticket dropshipping stores, all in operation and profitable. 3 have been sold for a total of over $300,000K

blogging income reports niche sites joe good buildassetsonline
Light of the Southwest
Joe Good & Rico Cortes on "Light of the Southwest" (Episode 2021-49)

Light of the Southwest

Play Episode Listen Later Nov 5, 2021 58:55


Guests: Joe Good & Rico Cortes

WIT-Cast by Rico Cortes
Are Yom Teruah and Yom Kippur feasts with Rico and Joe?

WIT-Cast by Rico Cortes

Play Episode Listen Later Aug 23, 2021 60:52


In this teaching, Rico Cortes and Joe Good present an in-depth and assertive explanation of the Holy Days of Yom Teruah or Day of Trumpets and Yom Kippur or Day of Atonement from the Hebrew language perspective, and the Temple service.

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
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
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.

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 Sound of Science
The Sound of Science - 'Ancient Egypt'

The Sound of Science

Play Episode Listen Later Feb 5, 2021 0:23


Joe: Good afternoon listeners and welcome to The Sound of Science on WNIJ. I'm Joseph Flynn from the NIU's Center for Black Studies and today I'm joined by Ms. Gaylen Rivers.

Boardwalk Sports Talk
Boardwalk Sports Talk: EP 009 "Jersey Joe" Good, Refs Bad!

Boardwalk Sports Talk

Play Episode Listen Later Jan 28, 2021 71:20


Topics: - The stock market is going crazy! - Interview with "Jersey Joe" Martinek, Rutgers '11. Joe discusses holding NJ's all time high school rushing record. His time at Rutgers playing with some amazing running backs. How he and Coach Schiano didn't always see eye to eye. If he thinks Coach Schiano is the right man for the job moving forward. Favorite memories of playing for the New York Football Giants including interacting with Eli Manning and Ahmad Bradshaw. He answers our famous rapid fire questions and much more! (4:15) - PEC (Top 3) Controversial Ref moments in sports. (40:15) - Local NHL talk: Why were the refs so one-sided in the Devils-Flyers game Tuesday night? Why cant the Rangers win a game? Islanders lose in the last minute of regulation, lol! (1:01:00) - Closing thoughts/ Jersey Rants! See you on Monday! Twitter: @talkboardwalk Insta: @BoardwalkSportsTalk Fbook: Boardwalk Sports Talk

Pri-Med Podcasts
That Cup of Joe – Good for You! - Frankly Speaking Ep 196

Pri-Med Podcasts

Play Episode Listen Later Nov 2, 2020 11:15


Credits: 0.25 AMA PRA Category 1 Credits™ Claim CME/CE credit: https://www.pri-med.com/online-education/podcast/frankly-speaking-cme-196 Overview: The New England Journal of Medicine recently published an evidence-based review of the benefits and harms related to caffeine and coffee consumption. Guest: Robert Baldor, MD, FAAFP Music Credit: Richard Onorato

Frankly Speaking About Family Medicine
That Cup of Joe – Good for You! - Frankly Speaking Ep 196

Frankly Speaking About Family Medicine

Play Episode Listen Later Nov 2, 2020 11:19


Credits: 0.25 AMA PRA Category 1 Credits™ Claim CME/CE credit: https://www.pri-med.com/online-education/podcast/frankly-speaking-cme-196 Overview: The New England Journal of Medicine recently published an evidence-based review of the benefits and harms related to caffeine and coffee consumption. Guest: Robert Baldor, MD, FAAFP Music Credit: Richard Onorato

The Quiet Light Podcast
From Construction Management to a Seven-Figure FBA Exit With Amazon Expert Jon Elder

The Quiet Light Podcast

Play Episode Listen Later Sep 8, 2020 39:29


On this episode of Quiet Light, we speak with Jon Elder, who had a seven-figure exit and now guides others on their startup journeys. We discuss the start of his Amazon career; his new business, Black Label Advisor; and how he guides his clients to success.   Topics:  Why he got into an Amazon business. How his conservative spending affected his start. What he negotiated in the sale of his business. Who his current business helps. How his methods have changed since he started. Why you should consistently innovate. Creating experiences for customers. Who his typical client is.   Resources: Black Label Advisor Jon@blacklabeladvisor.com Quiet Light Podcast@quietlightbrokerage.com   Transcription: Mark: Starting an online business and an Amazon business, that can be tough, right? There are a lot of mental challenges in that and especially those first couple of years; there are a lot of decisions you have to make in order to be successful. You have to think about how much inventory should I be buying in that first year, how much should I be investing, how many new products should I be launching, all while not seeing a lot of cash in your pocket, because any money that you bring in, you're typically reinvesting in that business to be able to help it grow. And so, there are a lot of challenges through those first few years and I think a lot of people get drowned down mentally during that time because there are just so many decisions to try and make as you're growing a business. Joe, you had Jon on the podcast to talk about that. He went through this. He went through a successful exit, and now he's training people on that startup process. How to start up an Amazon business, how to build brands and make those decisions a bit more clearly, have the right mindset as well going through this to make sure that you have some resiliency through that process. Joe: Yeah, Jon reminds me of us and what our website says which is a bunch of entrepreneurs with a bunch of crazy, been there, done that experience. That was a terrible quote from our own website. I should have had it up and read it. Mark: It's something like that. Joe: It's something like that; a bunch of people that have done something. Mark: We're just a bunch of guys and Amanda. Joe: And Amanda, she runs the show. Jon, he had a mid-seven figure exit and it was a substantial and life-changing one that will probably change a generation or two of his family. And he did it through building an Amazon business the right way with multiple brands in one Seller Account. Not that that's the only right way. There are many ways to do it. But he's sharing his direct experience. He's not the typical guru if you will. And I shouldn't say that because we have many friends who would be considered gurus that are actually really good at what they do. But he's been there, he's done it, and now he's going, okay, look, I can help people. I truly, truly can help people. And he set up a system and a process to help people understand how to identify the right product, not just from maximizing value and return on dollars but upon doing that, you're going to be happy and satisfied with working with you and your cash flow; how long the launch process really takes, how often you should launch. He never used any launch services or anything like that. There are a lot of steps that he's set up and he goes through and he's working with people one on one. And I thought it would be beneficial to have him on the podcast because he does have a crazy amount of done there and done that experience. Joe: Hey, folks, Joe Valley here from the Quiet Light Podcast. Thanks for joining us. Today we've got somebody that had an incredible exit, one in the mid-seven figure range. Jon Elder ran an Amazon business with multiple brands. Jon, welcome to the Quiet Light Podcast. Jon: Yeah, thanks for having me, Joe. Joe: That was a short but powerful introduction if I do say so myself. We don't read fancy intros here. Jon, can you give the audience listening a little bit of background on yourself so they understand who you are and why you're here? Jon: Yeah, of course. My story is kind of similar to a lot of people in the sense of I wanted to get more out of life and there is always an entrepreneurial spirit in me. And so, 2014 is when I started on Amazon and I was also working on a corker construction job and I honestly thought I was going to be in that type of career the rest of my life. I went to college for Construction Management and so it's a pretty high profile, very successful career. But the scaling of salaries is driving me a little crazy and so I wasn't okay with just getting the 5%, switching companies maybe down the line. So, I got into the Amazon world because I thought it was a really great opportunity. At the same time, I'm really conservative so I didn't go in with a large amount of capital. I started with roughly $5,000 and I got my feet wet in the golfing category. Some of that is due to just my general interest in sports and it was a product that there weren't a lot of competitors in that category. It was something I was interested in and something that I thought I could innovate a little bit in that category and become the leader. And within a year I actually did become the leader. I became the number one seller for that specific product. Joe: And you have a job the whole time, Jon, or did you quit? Jon: Yeah, actually I worked full time until 2016. Joe: Excellent. Okay, that's good to hear. Jon: Yeah. Joe: That's what I like to hear. It's a less risky path for people. Jon: Yeah, I'm married, I have a son and so their needs actually come first. I had to make sure that I wasn't putting my family in a bad financial position. So, yeah, I definitely worked with factories in eight. I spent a lot of hours. My wife was very sacrificial, allowing me to spend all that extra time. We used to have conversations about this that we're building a business in the future and there's some sacrifice that has to be made for that. And that's just part of life. Anyone who says that it's easy and it doesn't take that much time is a complete lie. It's a lot of work and very, very stressful but it definitely paid off. Joe: Yeah, you've got five brands over that time period as well, not that just one? Jon: Right and part of that story is just pursuing products that I had an interest in. And not all the brands were successful. Some of the brands were definitely not successful but thankfully the vast majority of my brands took off and became leaders in their respective categories. Joe: Okay, so just to review and just to understand fully who you are, what you've done, because we're going to talk about some of the nitty-gritty here. But in the last year that you sold the business, you did about six and a half million in revenue. You ran the business side by side with being a new dad and a full-time job for a couple of years before you exited. You had five brands and ultimately you sold for mid-seven figures. We're not going to give away the detail here, but an amount that is a life-changing figure that would have taken you 20 years in your construction business to earn probably maybe even more, right? Jon: Oh, yeah. Joe: Over the over the five years or so that you were running the Amazon business, I always love asking this question and it's a tough one because you haven't done the math yet but did you take and make more money as you were running the business; take more cash out of the business for you and your family during that five-year period, or did you get more when you sold the business? Jon: Oh, I definitely got more when I saw the business. One of the driving factors behind the success of my business was the vast majority of the money; any profits that we got were reinvested. That helped us launch products faster. It helped us launch new variations faster and so that allowed us to grow the business very, very quickly. Joe: You must have taken something out for yourself, though, I would assume. Jon: Oh, yeah, definitely. Joe: Just enough to live off of, was your wife working? Jon: No, my wife is a stay-at-home mom. In 2016 when I went full time with Amazon, the goal was to pay myself a salary that mimics my salary at my job and then as the business grew to continue to scale that up from there. And of course, at Christmas time because of the sales and the profits there, doing things like small bonuses and things like that. Yeah, the money that I paid myself definitely increased over time. In the first two years, I paid myself very little just because I was obsessed with growing the business. And honestly, from the very beginning of starting the business, I had a number in mind for my exit someday. A lot of people will say they have vision boards mine was a very specific number. It was in the multiple seven figures and everything I did in the business was geared towards that end goal. And so that's everything from having all my brands under one seller account, all my bookkeeping, just keeping everything clean, strong tax records. Joe: Preaching to the choir, I love that. I love all of it. That's great. It's a clean and easy deal. Did that enable you; was your buyer and SBA buyer or were they a cash buyer? Jon: He was an SBA buyer and the package deal for that was kind of interesting. Roughly 75% was upfront cash and then the rest was split between the seller note over five years and then an earn-out in perpetuity. And so that actually wasn't originally in the contract and with my lawyer at my side, we negotiated that to be perpetuity so I'll get the money eventually. Joe: Wow, that's fantastic. That part of it was probably outside the SBA guidelines though, yes? Jon: That's completely outside the contract. Joe: Good, good, good. Understood. Okay, so you learned an awful lot, you had five brands, some were successes, some were failures along the way, and you're now helping other people as well. What are some of the basic tips that you would give somebody if they're just starting out? So this podcast, even though you had a multiple seven-figure exit, even though you've operated five brands, you're really focused on helping people that are just starting out more than anything else. What are some of the basic things that somebody should look for if they're, let's say, either starting out or if they're buying a small Amazon business, that might be a couple of hundred thousand dollars in total value? Jon: So it sounds cliché but follow your passion. That's something that I tell my clients and friends and family who are interested in starting an Amazon business. Do something that you're generally interested in. And it doesn't have to be your ultimate passion. For example, golfing was never the ultimate sport. It was just a general interest in it. But go into something that you have some sort of interest in because at some point you will have hurdles and you will have issues with your business. So, for example, you might have to spend a couple of hours on a Friday night talking with one of your factories about resolving quality issues on a previous purchase order. You got to be invested in that product and if it's not a product that you're interested in, for example, I would never go into women's makeup because I have zero interest in it. I just don't know if I would be totally in it once I hit those bumps in the road. Joe: Yeah, and I've heard people say just the opposite, except for that part of the bumps in the road. So you could be product agnostic, but it helps, it's not an absolute requirement, it helps, as you're saying, to have some passion about the product. If you're going to end up on a call at 11 o'clock on a Friday night with a manufacturer on the other side of the world to work out some kinks in the detail, if you're not passionate about it, if you're not interested, if you hate it, you'd probably think about doing something else. Jon: Yeah, and I think along this subject too it's even deeper than that. I mean, so often, you're going to have other competitors for your product. There is so much innovation and improvement in your product that takes place over time. Personally, I wouldn't want to be looking at makeup and spending hours and hours and hours trying to get a better formula because I just don't care about it. One of my other product lines was an outdoor kid's product. The mission behind that brand was actually to encourage kids to rediscover the great outdoors. So many kids are on tech now and they spend hours and hours inside on the Switch and on iPads that; and this is how I parent as a dad, too is I encourage my son to go spend hours outside. Joe: How old is your son? Jon: He's five. Joe: Okay, wait until they're teenagers. It gets even worse, man. It gets even worse. They're playing with friends all the time it's just online I tell you. So, yeah, have some passion about what you do. There's no question about it. You started with 5,000 bucks. Are you helping people that haven't even picked a product yet or those that have a product idea and has sourced it and are really just trying to figure out how to how to get some traffic on? Jon: Yeah, obviously it depends. Some of my clients definitely have product ideas and they're already innovating and they want to go into a category where it's going to be truly unique and different. And then others are still in the brainstorming stage. My job is to just advise and help them along the journey all the way through sourcing and getting on to Amazon and launching. But there is so much that goes into the product research phase, and that's what I tell people, is just expect to spend hours and hours researching and researching because this is your money you're talking about. And some people take out loans. This is real stuff. You need to be 100% sure that you're in it for the long haul with your product. So, it comes down to researching the estimated revenues for that product. The thing that made me the most successful was innovating products that had some negative reviews. So I would harness all those reviews and fix all the problems. Joe: How do you do that with the manufacturer on the other side of the world? Jon: It's pretty incredible. I actually never visited any of my factories. I had four factories and it was all through phone calls, Skype, and emails. Joe: And it worked, not a problem. So are you working with a product innovation firm that's doing industrial design work for you or are you just sketching it out yourself and asking for innovations from the manufacturer? Jon: No, actually, the innovations were things that; again, because I was in product categories that I had a deep interest in, I was able to innovate myself. Joe: And do you then just put a drawing in front of that manufacturer and say can you do this? Jon: Exactly. Yeah, sketches are really useful, and then something that blew me away was how intellectual or sophisticated the Chinese factories were. They actually had 3D modeling engineering guys in-house. And I worked with some big boys. The factory for the golfing product that I sold, they actually supplied some products for the PGA Tour. One of the keys to my success was working with factories that were not starting out their journey as a factory. These were very established factories that sold products to Walmart and brick and mortar companies. Joe: Yeah. For those listening one of the additional options is Gembah, www.Gembah.com. We had Zach on the podcast here. It's a product innovation company, its industrial designers that can do that. If you're not good at drawing and innovating, they can do that work for you so that you present a more professional look to the manufacturer. Okay, so advise number one, spend a lot of time on deciding what product and product categories you're going to go into because this is where you're going to be spending all of your money in the future years, yes? Jon: 100%, and all your time. Joe: All right, let's just say we picked a great product. What's next? I mean, is it simple photography, put the listing up, look at basic stuff in terms of recommendations from Amazon? Are you using a launch service like Viral Launch or are you using some other launch service or a combination of different things? Jon: Yeah, for launching, I can get into that in a second. So, the next step that worked really well for me was doing a ton of screening with the factories. And then what I would do is I would do three final samples and we're dealing with weeks and weeks of communications here. Like this is a long process to make sure that my factory is the best of the best. So I would test the factories over email and I would ask oddball questions. I would also come across as the VP of Logistics or the VP of Product Innovation. So I would definitely present myself as an image of a large corporation. They never thought that I was a mom and pop shop in the States. But getting three samples from three strong factories was really successful for me. Joe: Three samples from each or one sample from each? Jon: Sorry, one sample from each factory. And then I would stress-test those products, use them, inspect them, see how they feel in my hand. I would do all those types of things. I ask friends and family what they thought of the products. That was a very common process. And then I ended up after taking in all that data, deciding on my final factory. Joe: This may be a basic question, but I assume you're paying for the sample and paying to have it shipped, right? They're not sending free samples and free shipping. Jon: Correct. Joe: So you're going to spend several hundred to a thousand dollars in just reviewing product samples I would assume, depending upon product cost of course? Jon: I would say a couple of hundred. Joe: Expected, and that's an incredible investment that you have to make, right? You can't just look at some stuff and get one sample and off you go. Jon: Yeah, so it's common to see that everywhere right now. It's like you can skip all those steps and you don't need to worry about that. There is some time and money upfront that is going to save your butt long term. 100%. Joe: So then if you've got the product samples; let's say you want to innovate on all three, let's say they're pretty close but you want a thicker grip on a handle or something like that, are you asking the manufacturers all three just to see how they respond and react and work with you in terms of innovation? Jon: 100% and part of that is also testing how flexible they are as a factory and how easy they are to work with. Joe: Okay. Jon: If they put up a big fight and complain about things, that's going to be a red flag for me. In the factories that I ended up working with, the answer was always yes. Their response was yes, we can do that. Yes, we want your business. Yes, yes, yes. Those are the guys that I ended up working with. The ones who caused issues for me and said, no, we can't do that, that's going to cost $5,000, I just got rid of those guys off the bat. Joe: All right, so what's next? You've tested three manufacturers. You chose a product, you innovated the product, and you're at the point where you've got the final decision on what you're going to invest your money in. What's next after that? Jon: So at that point, you have your final sample, and hopefully you have that in hand, typically production, depending on how many units. My test unit order was always 250 units, sometimes 500 units. So what I would do is while production is happening, whether that's two weeks or four weeks, I would have my final sample sent to a professional photography firm. In the very beginning, I actually took pictures myself and had a designer kind of edit my pictures and pump up the colors a little bit. But later down the road, when I was launching product after product, I'd send the products to a professional photography firm and have them do the enhanced brand content just to tie in the branding for my product. Because in the beginning, I sold a lot of random products, and then as time went on and I got more educated on it, I realized I need to be establishing my brand. I need people to come to Amazon for that specific golfing product. I want them to see my name and think quality and fantastic customer service. That's what I wanted them to remember about me. And so part of that is beautiful packaging, part of that is beautiful enhanced brand content. I had videos as my seventh picture on the listing. Joe: I was just going to ask that. How many of your listings had videos on them, all of them? Jon: The two largest brands had videos and that was kind of like a cost decision because the videos that I went with were extremely high production videos. And not everyone has to do fancy videos. The reason why we justified that was those brands were very, very large. We're talking big revenue numbers so it was something that I felt was needed. Joe: You didn't do that out of the gate on that first golfing product I assume, right? Plus, it was 2014. It probably wasn't an option for you. Jon: No. I don't remember the year that they allowed videos on the listing. I think it was maybe starting to happen in 2017-ish but yeah, in the very beginning you were locked out of everything. You had a paragraph for your description; you had bullet points, and then seven pictures. That was it. Joe: Yeah. Okay, so now you've ordered products, you ordered 250 units, spent a couple of hundred bucks on samples, you got another final sample you sent off to a photographer. It doesn't sound like you've got a whole lot of money left if you're starting out with five grand. I guess it depends on how much product cost is. Jon: That initial investment can range drastically. My first product in the golfing category, I sourced it for a dollar a unit. Joe: Well, that makes a difference, that it explains it right there. Jon: Yeah, exactly, it makes a huge difference. And I did that on purpose just because I'm so financially conservative that I wanted to learn the logistics process of Amazon and if I did screw something up along the way, whether that was customs or something at Amazon, I wanted that capital invested a tad small. Joe: And if you were in a competitive space that would have meant the barriers to entry in terms of cost are pretty low. A year later you said you wound up with the top listing, but did you start to see competitors come in pretty rapidly after that? Jon: Oh, yeah, 100%. And I think what drives that is people see a new seller take over that category and then they see all the revenue go to me and then they think, oh shoot, I'm going to mimic him and I'm going to come in and take some of the revenue. And that's part of life is you have to; and when I mentioned innovation, you have to be constantly innovating your products. So I ended up adding a special device to my golfing product that actually had a patent for it. No one else could do that but that was kind of like an additional tweak I did for the products that made my listing unique and different from all the other listings. That's just the harsh reality of Amazon is once you become a category leader, you will have a lot of other people come in and mimic you. Joe: And the way to fight that is to innovate. Jon: Innovate, be the best, and when you think your pictures are good just get even better pictures. Joe: Yeah, I hear you. All right, so now we've got the product. You've ordered it. You are starting to have your photos done. What's next? I had mentioned launches and systems and things of that nature, where are you helping your clients and advising them to go from there? Jon: I'm different in the world of Amazon because most of my products; actually all the products were done organically and so my strategy is a little slower than other sellers. Joe: Let's define what you mean there organically. Jon: So for example, never using services like Viral Launch or other services where you're paying discounted rates or using websites to launch your products. Joe: You simply put the listings up on Amazon use Amazon Sponsored Ads and off you went? Jon: It's a little more than that. Joe: It always is. I'd like to simplify things and dumb it down but I know it's a lot more complicated than that, yeah. But no launch services, nothing like that? Jon: Right and so what was really beneficial was really actually humorous autoresponder emails. So we use a service called Feedback that was really, really successful. Alongside that doing a little bit of a giveaway through the early reviewer program and then just pumping PPC, to be honest with you. And so typically we do like slightly reduced cost for the products to be priced a little lower; nothing too drastic because that can mess up your Lightning Deals down the road. So we would reduce it a little bit and just funnel a ton of money into PPC. And then we had an autoresponder series on average two to three emails. Joe: So explain the autoresponder part because you don't have control of the customer. This is after they buy the product? I'm confused on the autoresponder part. Jon: This is right after someone buys the product. So one email goes out three days after they receive the product and then another one goes out seven days and another one goes out 14 days. And those are all tweets specifically to be kind of funny. So many people open up emails and to be honest with you, most people don't open their emails very often. So having a really funny title for the email and then the actual body of the email being short and sweet and using a joke or something about the product was really, really helpful. Joe: I got you. So, you're not breaking even upfront, I assume, because you're spending a lot of money on Pay-Per-Click. Jon: No, I'm definitely in the red when I first started. Pretty much all my product launches started in the red. Joe: How long are they in the red for? Jon: Probably a minimum of six months because I'm doing it organically. Joe: So, how many products are you launching in the first year; two or are you going after more? Jon: The first year was two products actually. Joe: So, if somebody is coming to you with a little bit bigger of a budget and let's say they've got 20 grand and they're really needing your guidance to get launched and they've got an idea of the product. Are we still looking at losing money or breaking even for the first six months, eventually breaking and making a little bit? Jon: That is so dependent on the category that you're in. If you go into a category where you're competing with guys that have 500 reviews or a thousand reviews; let's say the top 10 sellers have a thousand reviews, it's going to take some time and you're going to have to burn through some cash. And the reason why is PPC gets more expensive every single day. That's just the reality of it. And everyone is competing for those keywords. And so, for example, with my products, I always outbid my competitors for the top search volume keywords, and the reason why is that that drove incredible sales to my listing. And PPC was actually the highest cost in terms of expenses for my business. Joe: Do you know what it was overall as a percentage of your revenue? Jon: Oh, man. Joe: I'm typically seeing anywhere between 10 and 20%. Jon: Yeah, I want to say was more like 25%. Joe: Okay. Jon: If we're dealing with the PPC costs alone my CPA would just look at me and be like, man, you guys are spending a lot of money on PPC. But that's just the reality of the business. Joe: But your CPA still has a day job? You get to do whatever the hell you want at this point in your life, right? Jon: Yes sir. Joe: Then who is right, you or the CPA? I think you were. Jon: Those expenses look kind of scary, but when you're looking at the percentage of revenue, it becomes a little less scary. Joe: Yeah. Now do all; I know the answer to this, but not all product launches are going to take six months to start to get traction and breakeven, did you have any in your five-year stretch where you would see some just home runs out of the gate or get some profitability within the first one to two months? Jon: The kid's product took off very fast and that was a very organic launch. And the reason why was there were maybe two or three sellers for that product and they had an inferior quality problem. So if you go look at the reviews, the actual liner of the material for the toy would just deteriorate like within a month under the sun. And so we innovated and we got the best liner possible, got UV-resistant liner and improved the product drastically and that took off with beautiful pictures. We actually hired some models; some family members actually took pictures with the product and just focused on quality for that product. People bought it and I realized, wow, this is like; it showed up in the reviews, your product is as lasting a long, long time. And that became very successful, very quick. Joe: And it was all from looking at other listings and the negative reviews that those had and innovating and improving the product? Jon: Correct. Joe: Yeah, pretty cool. How hard is it, though, to find a category where there are only two or three sellers? It seems like an impossible task these days, is it not? Jon: So Amazon is definitely; there's a lot more competition now. I think the secret's out about FBA. Joe: It might be, yeah. Jon: It's definitely harder now. I think that most categories are going to have far more than two to three sellers and so what I always recommend is even if there's seven sellers, you can break into those market segments as long as you're not dealing with sellers that have like a thousand reviews. If seven of them have 75 reviews or maybe 200 reviews, that's something that you can definitely go into and compete with. But there is always going to be a hole in the market. There's always going to be a chance to innovate and do something and spend the time to make the best product possible that lots of other people aren't going to do. And one example was actually the leather goods category that I was in. It was specifically for men. We drilled down all the way into the product packaging. A lot of people don't do that. They would get their leather goods products and they'd open it up from the box and it's in a polybag, right? That's not an experience. Joe: Right. Jon: So our idea was let's make it an experience for this person to open it up and sell everything down to the custom packaging for the box down to a branded tissue with branded tape. So whenever the person opened this product up, they knew that they were receiving a high end, high-quality product that was different from everyone else. So that's just like; it sounds kind of silly, but no one spends time with packaging and what does it feel like when you open up that product at home? Joe: It's because it's not sexy. They spend time on marketing and topline revenues and talk about it with their friends because it's sexy. But packaging and good bookkeeping and good branding and good photos and videos and the profit is actually what puts you in the best position possible, which is doing whatever you want at this point in your life. Jon: Yeah, definitely. What's interesting about that is the customers would actually talk about all the nitty-gritty details that I spent time on. That would come up as content and some of those reviews would be the top-rated reviews. Someone left a review on one of the leather goods products and it was this detailed long review with pictures and they went out of their way to be like, I've never opened a product from Amazon and the packaging was just stunning. So I was like, yes, it worked. And so other customers who are on Amazon obviously see the top-rated reviews and see that type of content and it definitely helps and it soon became a leader in that category. Joe: Cool. Jon, we're a little short on time, but I wanted to ask you, what are some of the biggest challenges you think folks are going to face? Jon: I think the biggest challenge is definitely just not getting swept up in sexy products. I've seen this online so much, just this huge push for going into supplements, for example. I tell my clients, do not do supplements. Don't go into that category. Don't do it. Don't do products that go on people's skin. Don't go into products where you're ingesting things. I'm always recommending kind of simpler products that are very, very low risk. And don't go into knives; things where people can get injured. So, just focusing on a product that you're interested in and it's low risk. And that's always tough because you see the revenues that other sexy products are bringing in and people get swept up in that. Joe: This is one of the first times I wish I just hadn't asked that question because I sold; my own company was a digestive wellness supplement company. I've got a good friend that's selling his makeup business for like 40 million dollars. We have, as a company supplement companies that are under contract for anywhere from two to 20 million dollars. And I think when they're when they're done right, they're done right. Jon: Exactly, and I would never want to give the impression that it's not possible. It's just my conservative nature kind of stays away from those types of product lines. And you have to be you definitely have to be a more sophisticated seller to… Joe: These guys are. These guys are all very, very smart, very good at what they do, have SOPs that'll pass on to the owners of the business, as did mine. And it's competitive, right? It's that they are low barriers to entry cost-wise. Jon: Extremely, you have to have big capital and that's one of the barriers for sure. Joe: Yeah. Well, I think it is a nice; it's a low barrier to entry to buy into the product category, but then you've got to rank and that's where the additional capital and expertise goes. It's very, very challenging. All right, so how do people reach out to you? I see its www.BlackLabelAdvisor.com, but ideally, let's talk about who your typical client would be and how they reach out to you. Jon: Yeah. So the easiest way to reach out is to go to my website, www.BlackLabelAdvisor.com or you can email me Jon@BlackLabelAdvisor.com. My passion is to help other people replicate my story. So many people I talk to you are they'll see my story and they'll say, oh my gosh, that's a dream, you know? And I used to think it was a dream too. And when I closed on the sale of the business, it was a dream come true to see the money come through. It was an unbelievable feeling that you just never think it's ever going to happen. I have recommendations and systems and third party companies I highly recommend. Along the way, I made mistakes myself and my passion is to help people avoid those mistakes and grow their business faster just because of all the experience I have and just help them along the journey with the end goal of selling someday. Joe: Yeah, I like it, folks. Jon is not somebody who can't so he teaches. He actually did it. He built an Amazon business with five brands, sold for a multiple seven figures, and now he's helping them. And that's what we do at Quiet Light, we help first. We want to help you succeed. Strangely enough, it actually helps us in the long run too, right? Somebody listening in the audience hire somebody like John who has real-life experience to give real-life advice to help them succeed in their online business. That person will come around at Quiet Light someday as well. So with that look around, who can you help? Help out your neighbor, help your friend that's in the online space and keep helping, it'll come back around too in time. Jon: Definitely. Joe: Jon, I appreciate your time. BlackLabelAdvisor.com folks, reach out and connect with Jon if you need some help to help get your Amazon business off the ground. Jon: Awesome. Thanks, Joe.

The Quiet Light Podcast
Starting and Scaling an Amazon Business for Exit With FBA Expert Kellianne Fedio

The Quiet Light Podcast

Play Episode Listen Later Aug 25, 2020 33:35


On this episode of our podcast, we speak with Kellianne Fedio, an Amazon consultant. She discusses selling her previous business for seven figures and the creation of her new podcast. Her journey is long and interesting, with a lot of twists and turns. Here, she shares her entire story and offers great advice to those who want to follow in her footsteps. Tune in to hear Kellianne's great insights. Topics: When she stumbled on Ecommerce, she realized it was a good fit. How Amazon has changed since she started. Why outside funding sources are necessary. The importance of Mastermind groups. Living through rocky periods. Explaining rebates. Kellianne's consulting methods.   Resources: Kellianne on LinkedIn Kellianne on Facebook Digital Shelf Strategy Quiet Light Podcast@quietlightbrokerage.com   Transcription: Mark: Joe, we know that first-hand experiences of people that have gone through the process of building a business, preparing it for sale, going through that exit, that tends to be some of the greatest stories and stories where we can get a lot of lessons back to us that we can apply and learn how to optimize our own businesses for a better exit. I know you had Kellianne on recently and she shared her story of building her business and going through that exit and now her current pivot where she's starting up a podcast on this very topic. Joe: Yeah, Kellianne is good friends with another good friend of ours, Paul Miller, who owns Cozy Phones and Kellianne had a seven-figure exit. Technically, I guess it would be early this year that she closed on the transaction; early 2020. And she's learned a lot through that process and now she's sharing that experience and the knowledge and the networking and the story of building a business on Amazon; all the resources and connections that you need to make in order to build it well and build it right with an eventual exit in mind. So she shares her entire story and gives real tips and advice from her own direct experience during the interview. Joe: Hey, folks, Joe Valley here from Quiet Light Brokerage and the Quiet Light Podcast, Today I've got Kellianne Fedio and I had to say that out loud several times to make sure I pronounced it right. Kelly is a former attorney, Amazon seller, seven-figure exit that she's had recently. And she's going to be moving into helping people build their Amazon businesses for a stronger exit down the road. Kelly, welcome to the Quiet Light Podcast. Kelly: Thank you so much for having me, Joe. I'm such a big fan of everything you guys are doing over at Quiet Light and have done for the past several years so it's a real honor to be here. Joe: I appreciate that. I did more of an intro just now than I normally do, but I didn't read from the script. But why don't you go ahead and tell us who you are and your story and where you came from and what you've done here? Kelly: Sure. So I started out as an attorney in a former life, and after having kids, getting married, I became very unhappy in that profession. That was just a lot of long hours, not enough pay at least for what I was doing, and I really wanted to be there for my kids. So I became a stay at home mom for a while and loved every minute of it. And then when my kids started elementary school, I was like, okay, what's my next chapter here? And I never would have guessed it would have been entrepreneurship. I was very traditional type-A personality in high school. I'm going to get all A's. I'm going to go to college. I'm going to go to law school. I'm going to be an attorney. And that was like my plan for the rest of my life. And so fast forward to several years later, after having practiced law for 10 years and now having kids and a husband and a wonderful family life, I was like what am I passionate about? What can I put out there into the world that not only is going to hopefully bring in income to our family but also that I could be excited about doing? And so I just knew it had to have something to do with online; being online and creating value online. And so, like a lot of other entrepreneurs getting involved in the online space, I tried a lot of different things, made tons of mistakes, had tons of failures, learned a lot, loved every minute of that experience, but sooner or later stumbled upon e-commerce and pretty quickly realized this is something that I really could see myself doing for the foreseeable future. And so around that time, Amazing Selling Machine had become pretty prominent in terms of the Amazon education space. So I was in ASM3 and of course… Joe: I got to ask, what number were you? The early ones were the good years. They're coming back around. They're doing good stuff again. I talked to them last week. Kelly: They are. They're always innovating, always doing new stuff so, I mean I always bring that out when I'm on podcasts or other interviews, because if it wasn't for that course my life would be a lot different. So I met an amazing group of entrepreneurs with the affiliate group that I joined. It was Ryan Moran and his tribe. I met a lot of amazing people. I'm still friends with them to this day, and really just dug in and had some pretty early success early on. So it was really, really exciting and I knew that this was what I was going to be focusing on, probably forever. Joe: How did you choose your first product? Kelly: I chose something that I thought I could build a brand around. So I'm very passionate about talking to other Amazon sellers about when they're thinking about how to start their business. You know, people always ask, well, how do you pick a product? First and foremost, you have to build a brand these days. When I started, you could throw up kind of anything and just with a little luck and… Joe: How many years ago was it that you started? Kelly: 2014. Joe: Okay. Kelly: Yeah, so it was a while ago. Things have drastically changed, right, in the Amazon space? Joe: A little bit, yeah. Kelly: Yeah, a little bit. And so even back then; and I had no branding experience or consumer product experience, but I knew that this first product, I could build a brand around it and actually wasn't a product that had a huge demand at the time, but it was a product that I knew that I would love and that I knew that other active women would love. So that's really what I built the brand around and just continued to develop products; not all winners, lots of failures… Joe: Additional products all within that brand, yes? Kelly: Exactly, that would serve a core audience and solve a problem or need. Joe: How many products did you launch initially, was it just one? Kelly: It was just one. Joe: And it was a success out of the gate? Kelly: Not right out of the gate. So I launched it in August but by that Q4, I had reached seven figures on top-line revenue so it was really, really exciting. Joe: Cool, very exciting. Kelly: Just with one product, one variation. Joe: And probably not working as many hours as you did as an attorney. Kelly: No, I mean, I definitely was working a lot because I was still in learning mode. I mean, the thing about Amazon and e-commerce is you're not only learning the platform itself, but you're learning how to source overseas, perhaps, and manufacturing and product design and advertising and marketing. So there's a lot of different skill sets you have to learn. So I definitely was really, really passionate about learning as much as I could. Joe: When you learn all of those things, do you think it's things you need to learn and then do yourself or do you think that there are certain experts that you can outsource certain things to like photography or listing creation or whatever it might be; importing from China, dealing with different things? Are there certain aspects to an Amazon business you feel that should be outsourced and things that you should do in-house as the entrepreneur that started the business? Kelly: Oh, absolutely. In the beginning, I think you should do everything with the exception of maybe photography. Super specific skill sets, like graphic design or photography certainly, you can outsource that early on. But everything else I would say you have to learn first and foremost yourself before you can effectively outsource it. And there are I mean, so many great service providers now that have obviously spawned in this Amazon industry not only software services but also other types of services, whether it's Amazon brand management or writing listings, things like that. So now it's all out there, but you should really learn the components and the strategy behind it first before outsourcing. Joe: How much money did you start with Kellianne? Kelly: I started with about $5,000. Joe: Okay, and did you have to borrow more to keep up with inventory? Because that's the story that I consistently hear. I started out with X and then when you dig deeper the business didn't fund the growth. Did yours fund the growth or did you have to go and borrow more? Kelly: In the beginning, it did. But yes, even if you reinvest all of your profits, there's no way you can grow initially without getting capital from outside sources. So about a year into it, I was able to get Amazon Lending so that was great. But before that, it was a lot of credit cards. And then early on, I actually was able to get a line of credit after the first year. But until then, it was really credit cards. And I wouldn't recommend people doing that but sometimes it's just a necessary evil to get where you need to go. Joe: Yeah, I was playing golf with a mentor years ago before I grab my head and one of the things he said to me was get a line of credit set up now; before you need it, get that line of credit set up because you never know when you're going to need it. And I see so many people that are struggling to keep up with purchasing more and more inventory for growth or developers if it's a SaaS business because they don't have the ability to stroke a check when it's necessary. They go hunting for that line of credit when they need it as opposed to getting it set up beforehand so I think it's great to get it set up beforehand. So you hit six figures you said by the end of Q4 your first year… Kelly: Seven figures, I was very lucky. Yeah. Joe: And did a million in revenue in 2004. Kelly: Mm-hmm. Joe: Don't you like how I could do the seven-figure translation to a million? That was really; okay, all right. Anyway was it all with one SKU or did you add additional SKUs as well? Kelly: By that next quarter of 2015 then I started adding more SKUs, but it was really just on one product. And so that talk about funding the inventory for that, I got to say it was just a lot of luck. I was able to forge a really strong relationship with my supplier very early on in China without ever having met him. And he gave me terms once he saw that this thing; and that normally doesn't happen that early on in the relationship. Joe: No. Yeah, I know. Kelly: He was able to give me terms. So that's another way that I was able to fund that growth so quickly that that first year. Joe: Yeah, if you can get to China, folks, we did a podcast with Athena Severi from China Magic and before that with Dan from Titan Network all about negotiating terms with your Chinese manufacturers, and it does exactly what Kellianne did, which was it gives you more cash flow for buying more inventory. And if you can get terms, it's a lot better than an Amazon Loan because the interest rate is very different. It's nonexistent in most cases. During that initial journey Kellianne if we summarize things so far, you took ASM3, you invested $5,000, you did a million dollars in revenue. Sounds easy, but I'm sure it wasn't, right? Kelly: It was and I know it sounds easy and like I said, there was a lot of luck in there too. I'm not going to like take credit that it was just all my superpower genius. But I did have tremendous tenacity because between the time that I launched the product in August, it was like pushing a boulder uphill; August, September, October, November. It wasn't really till November that it really took off. And I had the foresight and maybe just stupidity to order a bunch of inventory in anticipation of Q4 and early on recognize that I could market this product as a gift in addition to just the primary keywords that were related to the product. So that was something that I did very early on and that allowed me to scale too because I was able to secure top positioning for keywords such as gifts for women, top Christmas gifts for women, things like that, very early on. So all of that came from me putting in the hard work of learning and masterminding, I can't underestimate the power of masterminding as well. I found a small group of; there were all guys, actually, I was the only girl. They are all amazed… Joe: So you were in charge essentially, right? Kelly: Yeah, sort of but we just were kindred spirits and we became very close and we would meet once a week and we were all building Amazon businesses, others went on to build SaaS businesses and all other types of businesses. They're all super successful entrepreneurs and that really made a huge difference in making me feel like I could really do this because I had other people in my corner so that was all. Joe: There's nothing more valuable than that and it didn't cost you anything. It sounds like there are groups that can get together just to help share information or you can join more formal groups like eCommerceFuel or EcomCrew Premium things of that nature. Kelly: Exactly. Joe: I think it's incredible. So let's talk money; ASM3, launched million dollars in revenue within the first year, you must be rolling in cash flow, yes? Kelly: No, absolutely not. Joe: I knew the answer to that. Kelly: I wish. Joe: How much did you; other than distributions just to make you feel good to pay taxes that were going to be due, did you put yourself on payroll or take any money out of the business for you and your family? Kelly: No, not the first couple of years I did not. And I was again, lucky that I had a husband who had a full-time career and that's the money that we relied on to support our family. So starting this business, that wasn't the mindset that we were going to do this to support our family. This was hopefully something that we could build into something bigger and perhaps fuel some bigger investing goals and things like that. Joe: So you would not recommend someone listening quit their job and they've got $10,000 and they're going to do $5,000 to start the Amazon business and live off the rest until revenues start rolling; bad idea, right, because they're going to run out of money very fast? Kelly: Absolutely, I would never recommend somebody quit their day job. You really need to start any business, in my opinion, as a side hustle. I mean, even my husband and I to this day, like right now, I'm really getting into real estate investing and he's getting into day trading and we're going to wait until we become masters of that and really start making significant sums of money before he would ever consider quitting his job. Joe: Yeah, good advice. All right, so 2016 rolls around how do things go? Did you have any rocky periods where you thought this isn't for me or did revenue just continue to climb? Kelly: Oh, no. There was a lot of rocky periods. So back then there was no brand registry, there was no; just counterfeiters galore and the initial product that I had launched all of a sudden came on everybody's radar. I can't remember if by then there were tools such as Jungle Scout or things like that to look at what sales revenue these products were doing. But it definitely; people caught on and started copying my exact listings, the exact product. I mean, certainly, I didn't have any proprietary rights. The product was a private label product, but definitely, competition grew and revenue; I was able to maintain revenue because I diversified my keyword traffic and wasn't going with what everybody else is going for. Slowly but surely the market grew. But my market share also grew with it and then declined at some point because so many competitors came in. Joe: Did your margins tighten; did you have to drop the price too? Kelly: Yes, I did. I remember actually, so Q4 of my first year of selling, I think I sold that particular product at a price point of I think as high as $35. And now if you were to look at this product on Amazon it ranges between $10 and maybe $17 tops. Joe: Wow. Kelly: Yeah, and that happens. I mean you don't get to; that product was still a winning product by the time I sold my business but I knew that this couldn't sustain me forever. I needed to obviously continue rolling out products, right? Joe: And that's how you combatted it; you continued to roll out new SKUs? Kelly: Yes, absolutely. Joe: How did you determine what to do next in terms of SKU expansion? Kelly: I did make a lot of mistakes there. I launched a lot of products that failed. Joe: How many? Just out of curiosity. Kelly: How many failures? Joe: Yeah, after the initial launch out of the next 10, how many were successes, and how many were failures? Kelly: I would say I was probably at a 50:50 rate. Joe: That's good. Kelly: I would have liked it to be higher. And I think nowadays, with all of the tools that are available and with the mindset that you have to cut losers quickly; that was my biggest downfall, is it was so hard for me to give up on a product that I spent not only time but a lot of money on developing and then to just let it go. That was really hard for me. I was emotionally tied and that's one area that if I had cut those losers quicker, I would have freed up my cash flow and been able to expand and scale a lot quicker and more efficiently. Joe: Let's go into that a little bit further. Let's define a loser in terms of products. Is it one that is negative profit-wise or is it at 5% profit where the others are at 43% profit? How do you determine what a loser is and then what action do you take with it? Kelly: Well, it also depends on the time period. So when you're launching a product; everybody has their own time frame, but I kind of give it a three-month cycle of pushing it out, launching, ranking it, advertising, heavy on advertising so you're usually in the red. At least I was okay with being in the red at that point, but then it should start to pick up after that if it's going to be a winning product. If you've done everything right with your launch, and ranking strategy, it should just start to kind of take off on its own, really. Joe: A three month period is that what you're okay? Kelly: Yeah, about three months. Joe: Okay. Kelly: At least for me back then. I would say now it's probably a longer time window. I would say probably about six months. But there becomes this like intuitive sense of you're still continuously pushing a boulder uphill with your nose rather than it's starting to gain some traction and go downhill. And so you've got to know when is that point to cut it off and it definitely took me a lot of failed products and a lot of wasted money and time to finally realize. Even up until when I sold my business; I mean, the buyer who bought my business, there were quite a few SKUs that he was just like I don't want to continue with these because these are just not making enough profit. They were profitable but not making enough profit. So everybody has their own standards. Joe: So yeah, there's SKU balance that offsets risk. If you've got one SKU doing 60% or 70% of your revenue, some buyers will perceive it as more risk other buyers will perceive it as less work, and they like that. Kelly: Yeah. Joe: How do you; I mean, if you're at a six month period now in your assessment of really it takes that long to push that boulder uphill until it's profitable and then you determine whether or not you get to keep that SKU that you've worked so hard on or if it's not profitable enough and you move on. How often are you launching SKUs? It sounds like you're probably needing to launch them every couple of months just to keep up and stay ahead of the game. Is that the case or is that something you recommend? Kelly: Yeah, it definitely depends on your product mix and what your revenue goals are and what capital you have to work with and your cash flow; all those things. But ideally, if you could be launching a new product I would say at least every quarter but there are sellers out there that are launching products every week or every two weeks. It just depends. I did not have nor did I want to have some big, huge behemoth of a business where I had a million employees and I was doing all the product design in the beginning; myself, along with my manufacturers, maybe hiring some outside design people to create changes to existing products to make them better. That was always kind of my MO. And really, you have to have a certain amount of capital that is allocated to new product development and know where that line is because then you don't want to let your other product suffer either and that's what's bringing cash in and keeping the lights on, right? So there's a fine balance there and I really do think that comes down to cash flow management; knowing your cash flow. Joe: And that's something so many people fail at. I probably looked at 8,000 profit and loss statements over the last eight, almost nine years now, and I'll be honest with you, probably 70% of them are inaccurate; wrong cash accounting, not using Quick Books or Xero, but the audience knows that. I know that's my thorn in my side. Let's talk about favorite tools. I mean, you obviously have figured out the Amazon game. You must have used some tools along the way. Have there been any that have stood out that you kind of you think must have? I mean, you mentioned Jungle Scout a few minutes ago. What tools do you use in your Amazon business or recommend as you work with new Amazon owners now to help them fine-tune their business and get it ready to sell? Kelly: Well, I wouldn't say I would at this point in time recommend a specific tool because there's a lot of competitors in the Amazon SaaS space, right? But you want a good tool for first and foremost, keyword research and keyword tracking. So, for example, Helium10 is a great one for that. But there are many others out there that are very good. So I'm not going to say that Helium10 is the best. They are one of the best and I like that tool a lot. And then you're going to want to have a tool for launching and ranking. These days that's all about rebates and so I recommend Six Leaf. My good friend Joe Junfola created Six Leaf and he's got a very new and exciting rebate option in there now and I'm helping my friend Paul Miller with his business in using that. Joe: Really? He's my friend, too. Kelly: What's that? Yes, your friend too; our good friend. Joe: Our friend. Kelly: Yeah, and so if you don't have outside traffic that you can send to your listings and have like a system for that, you definitely are going to need to do some I would say giveaways but these days that means rebates. And so there are other platforms that can do that but that's the one I recommend for that. And then Helium10 basically has all the other components that I would recommend, such as product research and keyword tracking. There are so many different tools out there and they've all kind of evolved over time and they all kind of overlap and what was most frustrating to me by the time that I sold my company is I had so many different tools. And even though they did a lot of the same functions, one did one better than the other and so I felt like I just had a lot of bloat in there and a lot of things that I could cut out. And so I wish somebody would just like focus on one thing and just do it right. Joe: Yeah, because if you wasted a thousand dollars a month, that's going to cost you an awful lot in the sale of your business. Kelly: Yeah. Joe: Can we talk about rebates for just a second? I want you to educate me and educate the audience because a rebate to me; from a novice standpoint and I don't sell on Amazon, I did once upon a time but it'd be a conflict for me now as I see it. Plus, I don't ever want to import from China. Kelly: I don't blame you. Joe: Yeah, I don't want to; I was at Helium10 back when it was a man he had Illuminati Mastermind and I was at the event. It was in Cancún and somebody was up on stage and she was literally talking about importing from China, talking literally about the thickness of the corrugated box that your products have to be in. And I swear to God I felt sick three times and I thought never will I import from China. Rebates, you're giving something away. They're getting a discount back or they're doing a review and they're getting a discount. Explain how it worked because it sounds like it's definitely against terms of services depending upon how it's used. Kelly: Now, I don't think it's against terms of services. I mean there's a lot of rebate services out there now. Joe: What is a rebate? Kelly: A rebate is the purchaser gets to purchase the products and then they get reimbursed the full amount usually to be most effective or it could be some percentage of that amount. So traditional retailers have been doing rebates for years. I mean, it's a very common thing in marketing. Joe: So there's no hey, we'll give you 100% refund for review it's just buy it and we're giving you your money back and that improves the algorithm rankings; organic rankings. Kelly: It's a keyword ranking strategy. I would not use it as a review strategy; absolutely not. Joe: Yeah, okay the review strategy definitely gets against terms of services. Okay, thank you. I needed to hear that. Kelly: I mean, I wouldn't say it's necessarily against terms of service if you're asking for a review after the fact. But it just can be on that blurred line that you could potentially; and I haven't heard of anybody getting taken down for this but if you were to rebate a customer and then after the fact ask for a review then Amazon could potentially look at that as gaming the system. So you just want to be really careful and I would just recommend that sellers don't ask reviews for customers that they've given rebates to. Joe: What about is it cheaper or should it be a dual strategy of sending traffic from outside; buying traffic on Facebook that would drive directly using a keyword directly to the Amazon page, is that going to have a similar effect as rebates, cost less, cost more, or would you recommend a dual strategy of both of those or have you not sent traffic from outside sources like Facebook? Kelly: Well, that's a great question, Joe, but the rebate is just kind of like the end result of what the customer is getting but the traffic and the quality of the traffic is the most important thing. So a lot of these rebate services that are out there, they're just for using the same audience that they've built on Facebook over and over again. And Amazon now is so sophisticated they can tell that all that traffic is coming from the same source that's just this incestuous pool. So you really want to be careful of the services that you use. And ultimately, the best way is always to build your own list, to have your own audience whether that's a mini chat list or an email list or if you're a master of Facebook Marketing and you know how to target and you know what kind of audiences are really going to go and actually buy your product and if you have enough profit margin built into your product to do Facebook advertising. That's a whole another thing in and of itself. But for ranking purposes, you need to send high-quality traffic and a lot of these ranking or rebate services you just have to be careful of where they're getting their traffic from. Joe: Okay, so far we've established you as an Amazon expert; one that's been there, done that. I had to ask a couple of questions; dumb questions, if you will, to get us to where we are right now. Let's talk about digital shelf strategy, your business, where you're going to actually help Amazon sellers. If somebody out there in the audience is thinking that they want to exit their business someday in the future, or if they're just struggling and they're barely able to keep up with inventory demands, not taking any money out of the business and they're pulling their hair out, how are you going to be able to help them? Kelly: Great question. I started digital self-strategy when I was still a seller because I've over the years, I love Amazon. I live, breathe, eat, sleep, Amazon. I still do. And I would get questions from people anywhere from one-off questions to people wanting me to help them with their businesses. And so I have been very, very generous I feel like with my time wanting to help people. But sometimes if it needs to be a little bit more work or more time spent with somebody then I set up this agency just so I could have a way to work with sellers ongoing. And so between that and then another new business that I started with, Paul Miller, Amazing Exits, the consulting piece of that is really helping sellers with being able to look at their businesses holistically and help them figure out what are the strengths and weaknesses of that business. So kind of like a SWAT analysis and being able to help them with the things that are going to really move the needle and increasing the value of their business, whether or not they ever want to sell it because if you increase the value of your business, you're going to be spending out more cash flow. It's going to make you healthier in the long run. And then it'll certainly make it a lot more attractive to a potential buyer someday if you've got all your financials in order and you've got a really healthy profit margin and ROI and all the other things that go into having a valuable and sellable business. So it's a one-stop-shop, really, in terms of being able to look at a business, identify what are its strengths and weaknesses. For the weaknesses, we want to connect them with the resources that are going to help them fix those weaknesses and then ultimately be kind of their white-glove concierge along the way to a successful exit. Joe: And the Amazing Exits Podcast, that's where you're going to talk to people that have actually sold their businesses and have those resources, those experts on as well. Kelly: Yes, that's going to be both. I mean, we are looking for as many sellers as we can who have exited so we definitely want to have those as guests on. But we're also featuring top experts such as yourself to talk about exit planning. We're really trying to make exit planning sexy. This is what I say all the time and to really… Joe: Good luck. Kelly: Well, we're very passionate about it. And I think that if we couch it in terms of making your business more valuable now, like do you want more money now in your bank account and your pocket to feel your life, to feel your investments? Well, that's what it takes to build a successful business. And you might not ever want to sell it, but you should be building a sellable asset and realize why you're doing this. Joe: You're preaching to the choir. Making exit sexy again or sexy to begin with is; I had David Wood on the podcast and one of his visions was for people that are planning to eventually sell their business to imagine themselves on the beach doing whatever they want because they've got enough money in the bank to live off of and that's the sexy part of it. Or if you're building a better business, it's kicking off more cash flow. You are struggling less. You're able to do the things that you want because you've got the money and that part is sexy as well. Accounting makes most people's eyes bleed. It's the foundation of understanding cash flow and running your business successfully to get a strong exit. As you know, Kelly, anyone listening that owns any kind of online business at this time odds are that their business is their most valuable asset. Also, if it's an e-commerce business that's growing odds are that more than 50% of the money they'll ever make from that business will come the day that they sell it. All of that combined should kick start them into wanting to do more exit planning or coaching or training or things; whatever you want to call it, just getting in shape. As you want to work out and get your body in shape you should exercise your exit strategy muscles so that you're in better shape for your eventual exit because you will have a better path to it, a better exit as well, and be better off afterwards so that you can all go on to your next adventures, whether it be start another online business or do what Kelly is doing which is consulting and helping other people or where she was just a few years ago. Kelly: I couldn't agree more. That's so well said. And I would just add to that then, I truly believe, Joe, that one of the fastest ways to build wealth is to build a business and in this case an Amazon business and sell it. And that's the word that I want to get out to people, is that this is, like you said, your most valuable asset, most likely. And I didn't retire after I sold my business. I made a nice chunk of change and now I'm able to invest that into cash-producing assets but I will never stop being an entrepreneur. But I have so much freedom; clarity now that I didn't have when I was on that hamster wheel of running the business. So I want to just be able to express that to other sellers that there is another option to get off the hamster wheel and you can sell and do this again if you want so you'll have a lot more freedom and peace of mind. Joe: And cash in the bank throughout though. Kelly: Yes. Joe: Great. Kelly, thanks so much for joining the Quiet Light Podcast. I appreciate it. We'll put URLs up in the show notes for people who want to reach out. Kelly is there any other way that they can or should find you? Kelly: Yes, absolutely. They can connect with me on LinkedIn. I'm pretty active over there. @KellianneFedio on Facebook and then they can also go toAmazingExits.com and sign up for our email list for when we get ready to launch the podcast later in August most likely. Joe: All right, she rolled her eyes a little bit here folks for those not watching. She's got a hopeful goal of August. I think it's going to be great whenever you launch it. If it takes an extra few weeks is not a big deal. Kelly, thanks for being in the Quiet Light Podcast. I appreciate it. Kelly: Thank you so much, Joe.

The Quiet Light Podcast
How to Negotiate a 3PL Contract with E-commerce Expert Jesse Kaufman

The Quiet Light Podcast

Play Episode Listen Later Aug 18, 2020 30:47


On this episode of the Quiet Light podcast, we have the opportunity to speak with Jesse Kaufman, the CEO and founder of Shipping Tree. Though Amazon sellers often use that company's fulfillment services, some people engage a third party. 3PL's can do everything from start to finish or they can merely be used as a prep center. Regardless of how you use a 3PL, there are ways to optimize your expenses. Tune in to hear our discussion about how to negotiate with a 3PL.   Topics: The typical Shipping Tree client. Deciphering quotes from 3PLs. The best integration models for 3PLs. How using a 3PL can save money. Commerce zones. Different types of Amazon seller accounts.   Resources: Shipping Tree Jesse@shippingtree.co Quiet Light Podcast@quietlightbrokerage.com   Transcription: Mark: So within the world of Amazon FBA, a lot of sellers rely on Amazon's fulfillment services and simply ship all the product over there but there are other sellers who utilize a 3PL either to fulfill the product and do everything from beginning to end and there are also those that use it just as a prep center before sending it off to Amazon in a way to try and save on some of the fees. And I think we can all agree Amazon's fees for fulfillment are pretty high compared with a lot of other solutions out there. Joe, I know you had somebody on who owns a 3PL and you guys talked a lot about how to negotiate the rates with that 3PL and how you can optimize some of your expenses by using a 3PL as opposed to just sending everything carte blanche over to Amazon. Joe: Yeah, these are my favorite kind of podcast guests when they go on and they talk about everything that they do and give it all away for free on podcasts like this. He's not pitching their services. He's just like, if you're negotiating with a 3PL look for this, don't do this, throw that contract away, if you have recurring revenue shipments, this is how you save on your shipping cost. If you have a 3PL located in Southern California, here's the benefit; monetary benefit by way of example of shipping from Ohio and things of that nature. It was fascinating. We've had a lot of people over the years say hey can you recommend any 3PLs and that was the point of having this person on knowing that he would give it all away for free. I think it's going to be very helpful for those that currently have 3PL, very helpful for those that ship exclusively through FBA because it's convenient, and some of the benefits of having a 3PL for kitting, for doing so fulfill Prime to avoid what happened during the pandemic where there were delays from Amazon shipping because of shipping medical supplies first; all sorts of different things that I think will really help the current e-commerce business owners and those that want to buy improve their bottom line and improve their customer experience as well. Mark: Yeah, I think this is all about control, right? I think the pandemic is a great example. Those that were 100% reliant on Amazon often saw; many of those guys saw delays and disruptions in their supply chains and also their ability to fulfill orders. Those that were using 3PLs didn't because they had that outlet for everything. So this is an interesting topic and this is where a lot of ROI is made in acquisitions, is learning how to optimize the expense profile and especially on that Amazon side so I'm excited for this one. Joe: Me too and just as a teaser it gives away one example where I, based upon the numbers you gave me, probably added a million dollars in value to the company. Obviously a very large company but if it adds $10,000 or $100,000 in value just by doing little things that make a difference, it really adds up to the overall value so let's go listen. Joe: Hey folks Joe Valley here from Quiet Light Brokerage and Quiet Light Podcast. Thanks for joining us again. Today we're going to talk about 3PLs, how to save money on shipping, all sorts of different things in that regard. And today, we've got Jesse Kaufman from Shipping Tree. Jesse, welcome to the Quiet Light Podcast. Jesse: Thanks for having me. Joe: Good to have you here. As I said earlier, we don't do fancy introductions, so I don't have a big bio on you. No one knows you better than you so why don't you tell everybody listening who you are and what you do? Jesse: Yes, my name is Jesse and I'm the CEO and founder of Shipping Tree. A 3PL based in Los Angeles with facilities across the country. I'm Canadian and got my start in the fashion distribution business and quickly realized that the 3PL world wasn't where it should be, at least in North America, and that's why started Shipping Tree. Joe: And is your typical client an e-commerce client with lots of different SKUs like from your fashion background? Jesse: Yes, our typical client now are e-commerce direct to consumer-focused companies in the CPG supplement cosmetics space, actually. Joe: Wow. Okay, so lots of people picking, packing, and shipping. That's great. Jesse: Yeah. Joe: Okay, so let's jump into it. A lot of people; I've worked with 3PLs myself, I had a nutritional supplement company that I sold a decade ago if you can believe that; almost a decade ago, before I joined the Quiet Light team and I don't know if I negotiated the greatest deal with my 3PL because he was a friend of mine. Jesse: Impossible, yeah. Joe: We did recurring revenue shipments and the owner was a friend of mine and because of that probably either I got an amazing deal or I got a terrible deal; probably nothing in between. Jesse: You'll never know. Joe: I'll never know. No. And I was just going to go on the craziest side there but people do not need to hear that history. Let's talk about, first and foremost, what's the best approach to reaching out to a 3PL and not just simply accepting the boilerplate prices that you give or should they or is there a way that you can professionally negotiate so it's a really healthy deal for both parties? Jesse: Yeah, totally. So, I think most important in your 3PL search is kind of put as many feelers out there as you can, get your internal data together, and organize before you put out those feelers so you could give those prospective 3PLs the data they need to give you pricing quickly. Joe: What kind of data are we talking about? Jesse: It's really like shipment data. So like a pretty basic Shopify export of your orders that includes the dimensions and the units in the order. That should give any 3PL the ability to quote you really accurately. Then once you start getting those quotes back right away, it'll be pretty evident. Some 3PLs their quotes will have 30 line items. Others like mine and some of our closer competitors will have more in the neighborhood of three to five line items. So right away, all those 3PLs with 30 line items of potential charges throw those proposals in the garbage. There's no use even negotiating with those guys. The other ones with simple line items, three to five, maybe up to 10, those are the ones you want to focus on because, in my opinion, those are the ones that have the most merchant focused approach to the way they do business. And then areas where you can negotiate with 3PLs, in my experience, would be the initial processing fee on an order. So typically speaking, the most labor-intensive and expensive part of the work that we do are the individual picks. So 3PLs are rarely going to have margins to negotiate on the pick fees for your orders. Joe: And the pick is literally someone walking around and picking your product off the shelf and putting it on the proper conveyor belt to have the label put on. Jesse: Exactly. Joe: Okay. Jesse: Yeah, so you want to negotiate on the larger items on that list. So things like storage, processing fees, get rid of any minimums and stuff and kind of like frame your business as one that's even if you're just starting, it's ready to scale you're a smart team, you're going to scale it quickly, get rid of those minimums, focus on things like storage, processing, packaging, and you could kind of dwindle those down a little bit. Joe: Are there startup fees in most cases with 3PLs that I have to pay you $5,000 for the pleasure of doing business with you and that's just the setup fee and then it's going to be a monthly pack and ship fee? Jesse: If that comes across your desk, throw it in the garbage. Joe: Just throw it in the trash, okay. Jesse: Yeah, throw it in the trash. If you have really complex integration needs like an ERP system like NetSuite and a ton of different marketplaces, then there might be; you could expect some sort of integration fee and tech fees for that. But if you're just running like run of the mill, Amazon, Shopify, Walmart.com, maybe an accounting system; like all of that should be out of the box with the 3PL that you work with. Joe: Can you just dumb down what an integration fee is? Jesse: Yeah, so you're going to want your 3PL to plugin with whatever systems are running your business on the shopping cart side or the marketplace side of things and so you that you don't leak your sales channel. You want the 3PL to plug into there so data flows back automatically, your team has very little to do, that really is going to take the weight of shipping and fulfillment off your plate. And some companies charge for these integrations really like a setup fee, which isn't right because for Shopify, for example, we've built the integration already. We enter a couple of lines of code and the integration is done in five to 10 minutes so why would we charge you $500 for that? It's just not right. Joe: Good markup, $500 for five minutes of work. I like that. Jesse: I do like that markup, but we don't do it. Joe: Not if you want to keep the customer long term, I suppose, right? Jesse: Yeah. So, we've built out; and you want to find a 3PL that owns their tech stack. So what I mean is they kind of own their platform and they own the integrations. So we've built out these integrations so we've done the work upfront already and it's ready so we could just deploy it for the merchant. Joe: That makes a lot of sense because that's probably where the $500 charge comes from, is because they're using somebody else's software that somebody else is charging them and they're passing it on to the product owner. Jesse: Exactly, yeah. Joe: Is there a particular; I know that within Shopify, within the different websites platforms, there are different integrations for processing shipping. Is there a favorite integration that most 3PLs are comfortable with? And I cannot think for the life of me of a single one of them right now and I've used them before in the past but is there any particular integration that people like in terms of that processing of the order and having it ready to be shipped just to be shared with a 3PL or am I a little off track here? Jesse: A little off track. A little, so that's like if you just had a regular Shopify store, you would actually install the Shipping Tree app in your Shopify store. Joe: Okay, so you've got your app that you would install. Jesse: Yeah. Joe: Okay. Jesse: But you're talking about a product like Ship Station. Joe: Yes, that's the one I was trying to think of. Thank you. All right. Jesse: So Ship Station is great. We integrate with them also. Ship Station is great if you're selling on a ton of marketplaces like Etsy, Groupon; like if you're really marketplace heavy grand Ship Station is great because it brings all that in one place and then that's just one integration for us to run and manage. Joe: Okay, for people that are selling on Amazon is the largest marketplace and some of their own Shopify sales as well is there a benefit to using a 3PL to store inventory before shipping it off to Amazon, and do you provide those types of services? Jesse: Yeah, totally. So we do that a lot for our customers. We kind of run in parallel to Amazon like the verticals and the brands we serve and everyone needs to work with Amazon these days especially in CPG and cosmetics and supplements and stuff. So, yeah, our storage rates are generally cheaper than Amazon and more flexible. Joe: You can probably do kitting that  Amazon's not doing, right? Jesse: Yeah, so we could help prep your stuff to go to Amazon. So if your factory isn't putting the Amazon FNSKU barcodes on the boxes we could do all that work for you. Joe: And you happen to be in Southern California so if it's coming off a boat it just have to go very far, which is kind of a strategic location, I would imagine. Jesse: Exactly, yeah. Joe: I had a guy named Rocky Cliburn on the podcast in the last, I don't know, maybe it was a year ago and Rocky was just this great buyer in his 60s. He was a general manager of car dealerships, if you can imagine, for his entire life and then he bought a jewelry business; an e-commerce jewelry business from Amanda here on the team. And Rocky and his daughter ran the business and within months improved the margins by like $8,000 to $10,000 a month by working with their fulfillment center in terms of shipping rates and packaging and things of that nature. You and I chatted prerecording here about saving on postage in terms of improving the value of a business and so you understand we always talk about the value of a business and it's really based upon profit, which is actually called seller's discretionary earnings. It's not about topline revenue. It's about what you get to keep. And a lot of folks don't focus on the 3PL potential savings as they prepare an eventual exit of their business. So how do you end up saving thousands of dollars on your shipping and postage like Rocky did if you're working with a 3PL, what kind of recommendations have you implemented for clients of yours? Jesse: That's a great point; a great question. So there's two things there. One is choosing the right shipping methods and another is the packaging that you're choosing. So I'll start with the packaging and for example, a jewelry company they might have one standard box size for all their orders just to they think it's a good solution that's like a catch-all. Every order ships in the same box so it either might be too big or it might be too small. If you optimize that, especially for smaller weight items, every ounce is almost 20 cents with the Postal Service. So if you could figure out a way to ship in a smaller box, maybe a more efficiently sized box, even though you think it might be it's a bigger inconvenience to have to source two different sized boxes or whatever it may be, you're going to knock 5%, 10% off your postage just right there optimizing for box size especially for orders under a pound. Joe: How much do boxes really weigh I mean if we're talking about the size of a shoebox? Jesse: So a shoebox is quite like half; almost half a pound, I would say. Joe: Okay, so if you can save a couple of ounces, you might be saving $400 or $500 a month if you're shipping a thousand orders a month or something like that. Jesse: Easy, yeah. Joe: Back in the day, when I was doing what most folks do that are listening, we had a fulfillment center up in Maine, which is just crazy because I was shipping all over the country but that's where I was from at the time. But they had a subcarrier. It wasn't the US Postal Service. They had somebody else that was sort of a cheaper version of that that would take it to the US Postal Service and then the US Postal Service would deliver it for that last mile or so. I forget what that's called but is that something that a lot of 3PLs can utilize and how do you find out about it if you're working with a 3PL now? Jesse: Yeah, so those are called shipping aggregators or an aggregator service. A lot of the major carriers offer that these days. The FedEx one is called Smart Post, and then there's a DHL product called DHL E-commerce. So those guys would pick up from your 3PL, bring it as close as they can kind of to the customer, then USPS finishes it. So those are good and bad. They're great for saving money. They're bad for making first impressions. Joe: So they take a little longer to ship, right? Jesse: Yeah, exactly because there's more touchpoints. But I think what we spoke about was; like we have a lot of subscription-based companies. Joe: I think we did that. I think that's what we did, is did it on the recurring revenue aspect of it where it didn't need to be there in two days, you could get it in five. Jesse: Exactly. Yeah, so we could set it up. And always look for this in a 3PL to have flexibility with mapping your shipping methods. It's really important that they don't just like put all your orders like this is it, this is what you have to use because we work with all the carriers. We probably have over 100 available methods and we work with our customers to make sure they're using the best ones. So for a subscription-based company, that first-order should go out with like a fairly premium single carrier option like USPS Priority Mail or FedEx Ground or whatever it may be so that is quick and the tracking is seamless. And then once they get into that subscription funnel; the customer, you could set it up programmatically so that instead of the order shipping on the anniversary date, you ship the order like three days in advance and you use one of these slower and cheaper methods. So that way the order is going to arrive within one or two days of the correct window for the subscription renewal, you're going to save easily 30%, 40% on your postage that way, and yeah, everyone is happy. Joe: That could certainly add up, that's for sure. That subcarrier method, is there tracking with it as well or not? Jesse: There is tracking, but it's known to go dark the tracking sometimes. Joe: Okay. Jesse: It's not as reliable as a single carrier because yeah. Joe: Okay, do you have; actually location, does it really matter? As I just said a few minutes ago, my fulfillment center was up in Maine. I was shipping all over the country. Jesse: That might be the worst place, Sanford Fulfillment Center. Joe: Oh really? Okay [INAUDIBLE 00:19:30.4]. Why would that be the worst? Is it just zone wise is the best place inside of the country or is the best place in Southern California where you are? Jesse: Okay, so if you could only choose one fulfillment center or one location, middle of the country is best unless obviously, all your customers are west. Like, if you're a surf brand and all your customers are on the West Coast choose a West Coast 3PL. But if you're just a normal run of the mill brand and you could only have one facility choose something in the middle, that way shipments are never really going to go to the outer edges of the zone map. So if you just Google search a zone map, the country will be split up into kind of columns like a heat map with the further you go, the further the zone and it goes up to nine zones. If you're in the middle of the country, the furthest zone is like six or seven possibly. And so with Maine, the reason why Maine is not so great is New York, historically one of the biggest population centers in terms of e-commerce orders going to that area, that's a zone two or three for Maine. So you're not even getting the benefit of being that close to New York geographically and then everything in L.A. is a zone nine. Joe: Let's talk dollars, though. Jesse: Yeah. Joe: And you've seen this with clients that you've brought in. How much are we talking about? If somebody is; and I know it's hard to quantify, so maybe we're only talking percentages but… Jesse: I could give you an example. Joe: Please. Yeah. Thank you. Jesse: Yeah. So we opened our facility in Ohio last year and we had a customer; one of our better customers, the supplements company, they were shipping everything out of our L.A. warehouse, obviously. Right away they probably spent close to $100,000 a month on postage. Joe: Okay. Jesse: Or they did when we were; they still do it [INAUDIBLE 00:21:34.4]. Right away when we started shipping out of Columbus and Los Angeles; so now you cut it down to furthest the package is going is zone four. Right away they started saving $15,000, $20,000 a month. Joe: Holy cow. Jesse: Not changing anything and the shipping speed… Joe: I hope everybody is listening to this far just because in that situation, $100,000 a month, even if all you spend is $10,000 a month on shipping, you're saving 15% to 20%. Jesse: Yeah. Joe: Go ahead. Jesse: And your customers are getting their orders quicker. Joe: So they're happier too; you're getting no return rates, higher customer satisfaction. Jesse: Yeah. Joe: The value that adds to the company in terms of customer satisfaction is huge but the value in terms of the sellability of the list price of the company for that one spending $100,000 and it drops to $80,000 a month, that's $240,000 of real cash saved on an annual basis. Jesse: Yeah. Joe: The size of that business, I'm going to guess maybe it's at a four-time multiple. They just added nearly a million dollars to the value of their company by saving $240,000 a year. That's that net worth. It's pretty incredible. So as whatever, it's just shipping, I'm going to focus on revenue, just stop focusing on revenue alone and look at some of these other things, because it's just math and logic saves a tremendous amount of money. That's awesome. What other tips and tricks do you have here Jesse? Come on, keep throwing them at us. Jesse: Yeah, so splitting up inventory; that's a big one. So using multiple facilities and find a company that has a few facilities and if you could afford it, there's a lot of fulfillment consultants out there who aren't terribly expensive at all. But it could be a really daunting process for brands going through their whatever they use Excel or the ERP or their inventory systems and be like, how am I going to split up the inventory between two warehouses? I don't know where demand is, all that stuff. There's people out there and software tools out there that could help figure that out for you. Joe: It's not something that a 3PL will do when they've got multiple centers or you'd refer them on to these consultants? Jesse: Yeah, we could do it. For inventory planning, we're building tools for that. It's really complicated to do and to do properly. It's not our core competency. And it's a big responsibility to do that properly. We could totally look at your shipping data and tell you how much you would be saving by using Facility A, Facility B, or them in conjunction. Joe: Okay, so splitting up inventory to the right fulfillment centers you're saving like your client did 15% to 20%. Jesse: Yeah. Joe: Any other sort of immediate thoughts come to mind in terms of somebody that either let's assume that they don't even have a 3PL now what should they; I know obviously you want them to go to ShippingTree.co and work with you but if they're already in a relationship with somebody, how do they improve that relationship and any other tips that you can think of? Jesse: So always think of your 3PL partner not just as another vendor, but really as a partner and part of your business and kind of put yourself in their shoes when it comes to the way you send them inventory, the way you keep them in the loop on sales or promotions you're running. Like really consider them like an outsource or your shipping department that's just outsourced. So if you were doing your fulfillment, you wouldn't run like a flash sale and then call down to the warehouse 20 minutes after the flash sale launch and be like, hey, buddy you have 15,000 orders coming down the pipe. You would tell your people in your own company a few days in advance. So do that with your 3PL, help make their jobs a little easier, send them stuff that's barcoded, clearly divided. We deal with a couple of hundred customers and you could imagine how many different items we have in the warehouse. All our merchants are really passionate, but like, I can't tell the difference between print like bandana print 1 and bandana print 2 you know? Joe: Yeah, we always hear stories of Amazon messing products up. I'm sure it happens in 3PLs as well. It's not you. Jesse: It happens but there's things you could do to mitigate that. Like work with them as a true partner and if you sense any pushback in trying to improve the relationship, I would look elsewhere. Joe: Yeah. Can 3PLs do fulfill by merchant with Amazon Prime? Jesse: Yeah. Joe: And are you in that situation or is it not a 3PL, in general, it's more of the product at the 3PL, how does that work? Jesse: Okay, so fulfilled by merchants we could do no problem. And then there's Seller Fulfilled Prime, which is that is actually on the merchants. They have to get their accounts authorized for Seller Fulfilled Prime. Joe: Even if they're using a 3PL? Jesse: Yeah, so their specific Amazon seller account has to be authorized for Seller Fulfilled Prime. Joe: Is that a daunting task or something? Jesse: Yeah, it's at least 90 days, and yeah. Joe: And what's the benefit to that in your opinion? Jesse: So the benefit there is you get the prime badge on your Amazon listings, you kind of get all the benefits of winning the buy box that you'd get with using FBA but the package could be sent out in your own custom packaging. You control the whole process and generally, it's a little cheaper than Amazon; storage wise and stuff like that. Joe: You still have to abide by the terms of services I would imagine. You still don't own the customer, even though you've got all the customer data minus the phone number, I suppose. Is there any advantage to doing Seller Fulfilled Prime using a 3PL in terms of customer data that you get to keep versus just using FBA? Jesse: I don't think so. It's more like a flexibility piece. Joe: Okay. Jesse: So those sellers that were set up with Seller Fulfilled Prime when COVID hit and FBA stopped allowing shipments in, they didn't skip a beat, they kept their Prime badge, all that stuff. Joe: Yeah, okay. Jesse: It's a little bit more secure. Joe: Having control as opposed to letting Amazon have full control of it, yeah. Okay. This has been great. We're up against the clock here, but this is fantastic stuff. I think that anybody out there listening needs to dig deeper into their expenses on the 3PL side. If all you're doing is fulfilled by Amazon, you might want to look at at least a 3PL like Shipping Tree to do kitting and prepping and getting it shipped off to Amazon so you're not paying exorbitant storage fees at Amazon and then as your offline Amazon sales grow running a Shopify side so on and so forth, I think is great to do. So any last-minute thoughts in terms of other things that people could do to benefit themselves with 3PL negotiations and working with them before we wrap this up? Jesse: No. Just be aware of this. Like I said I think the biggest red flag are those proposals you get back that are like two or three pages long with a ton of line items. That's going to be a headache of a relationship for you to manage. Find someone that keeps it simple for you. It's a complicated process. It's my job to simplify that for our merchant customers and find someone that will do that for you. Joe: I got you. Okay, how do folks reach you and your firm, Jesse? Jesse: If you're going to reach out you could email me directly Jesse@ShippingTree.co or go to our website and fill out the form there. Joe: Awesome. I appreciate your time. We'll look forward to a lot of folks reaching out to you as well. Jesse: Cool. Thanks, man. Take it easy.

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 Quiet Light Podcast
Buying and Selling Insights with Woz, Quiet Light's Newest Ridiculously Experienced Advisor

The Quiet Light Podcast

Play Episode Listen Later Aug 4, 2020 31:00


Welcome back to the Quiet Light podcast. Chris Wozniak is the newest member of our team and we thought it would be a great idea to sit down and chat with him. He has built, bought, and sold online businesses, in addition to brick and mortar brokerage firms. Chris has more experience than anyone on our team and we are excited to have him on board. Tune in to hear us talk with Chris about what buyers and sellers should do to come out on top.   Topics: An abbreviated version of Chris' work history. Earning a CBI after becoming a board certified broker. Chris' buy-side brokering experience. Potentially creating short films about clients. Tips for sellers. How he leads buyers through the process. Why Chris spends time with and coaches buyers.  Transcription: Mark: I'm really excited to announce that we have a new member to our team, Chris Wozniak. Now you hear Wozniak and we think Steve Wozniak from Apple, is there any relation? Did you ask him that? I know you talked to him this week and that would have been my first question, how is he related to Steve Wozniak? Joe: I did and I'm not going to tell you the answer. Mark: So we don't know. Joe:    I know. I asked the question. Mark: Then I'm going to listen. Joe:    All right. Mark: You have to listen to the pod. You got to listen. Joe: How many shares of Apple he actually owns and whether he inherited them or bought them? Mark: Oh, there's a bit of a tease right there. Joe: All sorts of tease. Mark: Chris Wozniak, the guy, he's new on our team but he's; Chris is new on our team but he's not a greenhorn by any means. Joe: Not at all. He's got more experience than anybody that's ever joined our team before. I think he comes to the table with more experience. He's built, he's bought, he's sold his own online businesses, and he's run two brick and mortar business brokerage firms and sold one of them as well. His top year is probably selling 15 million dollars worth of businesses. The guy's just ridiculously qualified. He's got all sorts of certifications behind his name in his LinkedIn profile. We talked about that; jokes about that quite a bit, actually. But it's not just talking about him and his experience. I asked him a lot of questions about what sellers should do, what buyers should do throughout the entire process of building a business to eventually exit or looking to buy a business, and then build it so he gives lots of advice throughout. Mark: Well, let's go. I'm excited to introduce him to our listeners, and I'm really excited to get him as a part of the Quiet Light team. Joe: Oh, and there's one thing that we do tease something that's coming in the future at Quiet Light and Chris is helping us bring that to the table. It's something people have been asking for for years. We talked about it briefly, so be sure to listen in to that as well. Joe: Hey, folks Joe Valley here with Quiet Light Brokerage, and today I have the Woz with us. How are you doing today? Chris: I'm doing good Joe. How are you doing? Joe: Good. How many Apple shares do you own? Chris: None. Joe: None? Grandfathered in by uncle… Chris: None and we've never really investigated it either so maybe we do. I don't know. Joe: So you're not… Chris: I knew that I wouldn't work as hard as I do. Joe: You're not a descendant then of the great Wozniak? Chris: I have to be a descendant. I just don't know how far down the line that stretches. Joe: You know, I actually have a client now who is the; we were having just a casual conversation and he said, hey, you want an interesting fact? I'm actually the great, great, great, great-nephew of Teddy Roosevelt. And when he told me, I was like, that's an odd Segway into telling me this, but I've repeated that story and now it is interesting. I find it fascinating that we… Chris: Oh yeah, everybody does. Yeah. Joe: Even with what's going on in the world and some folks wanting to take down the Teddy Roosevelt statue outside of the museum, but yeah, fascinating. So, no relation the Steve Wozniak of the world? Chris: I honestly don't know. Joe: Okay, enough with the jibber-jabber, folks. This is the real Chris Wozniak, the newest member of the Quiet Light Brokerage team, a ton of experience, but I'm going to let him talk about it. I've got your LinkedIn profile open here but why don't you talk to us, tell the folks listening, Chris, about your background and how you ended up coming to Quiet Light. Chris: Sure. Well, first, I want to say that I'm not used to podcasts and I got an email from Joe yesterday saying, hey, just be ready at eight in the morning tomorrow and give your entire professional life history. So I said, okay that sounds like fun. So this is going to be off the cuff and obviously coming from the heart. But yeah do you want the long kind of version of my… Joe: I think people want the shorter version. Chris: Okay, that's going to be hard to do but the short version of the long story is I graduated college. I was in commercial real estate for several years, even in college as an intern. Then I joined my dad as a business broker. We had a company called Lesdon & Associates that was in 2002, 2003. Joe: Brick and mortar business broker or online business broker? Chris: Mainly Main Street brick and mortar which we graduated to smaller deals and we had initially started and graduated to larger and larger deals, we eventually sold Lesdon & Associates, I think in 2008, 2009. And then we started The George Ryan Group, which was a company focused on lower middle-market businesses. And so what we define that as is anything over a million dollars and then we never had an engagement over 12 or 13 million. So we own that company and going backwards in 2002, I started my first e-commerce business. Joe: That's a long time ago. Chris: Yeah. Joe: 18 years ago. How much did the website cost you? I love the answers to this question. Chris: I had to hire somebody to create and code it for me. I had the idea of what I wanted to sell; the product line, which was actually non-precious gemstones in 14-carat gold settings. Joe: Wow. Chris: So kind of a very niche-y product. But anyway, we built that for I think $5,500, $6,500. Joe: Wow. That's a lot of dough. I ask the question just because I like to say mine was $50. Chris: Oh yeah. I guess then there is no Shopify, there is no platform that you could just point click. Joe: No. No Amazon fulfiller accounts, very different. Chris: Yeah. Joe: Okay. Chris: So I sold that. I sold the e-commerce site about a year and a half later and did pretty good with. It was 22, 23 years old so it was a big chunk of money for me and my wife. And so fast forward, I've been selling businesses for 17 years. Some of those are online businesses, but through the years I've created and run and sold online businesses of my own. And so I guess five years ago or about six years ago, my wife and I decided we wanted to get out of the United States and kind of change our pace of life. And the only way I was going to be able to do that was to be able to have some type of income where I could do business brokerage because of the situation. So we ended up moving to St. Croix in the US Virgin Islands. We were there for two years. And so winging it for about a year and a half to two years leading up to that move, I created an Amazon FBA business. And when we got to St. Croix, I purchased with a partner an affiliate business in the finance niche. Joe: So just to be specific here folks, Chris, has built, bought, and sold his own online businesses. Okay, go on. Chris: Yeah, and then I've also created and still own several content sites and still own my Amazon FBA business as well. Joe: Okay, as I look at your LinkedIn profile, you've got a lot of acronyms here M&AMI, CBI, all sorts of different things, BCB. You come to us with things that I think most of the team does not have. Chuck is now certified in some way and these certifications folks are normally designated for a local brick and mortar business brokers. There's no specific certification for online business brokers. Walker's got some as well. Specifically, I think he got it prior to writing the book that you all hear us talk about, which is Buy Then Build. But what are some of these credentials that you have, Chris? Chris: Board Certified Broker is a designation that's awarded by the state of Texas. I earned that I don't remember when; maybe 2006, 2007. I've also got a CBI, which is the Certified Business Intermediary. That's awarded by the International Business Brokers Association. I got that shortly after my board-certified broker designation. And then I also carry the Merger & Acquisition Master Intermediary designation. That's the M&AMI given by the Merger and Acquisition source, which is kind of a sister program to the International Business Brokers Association. And to maintain that designation it's pretty difficult. I don't know now how many there are throughout the United States, but at the time there was maybe between 100 and 150, I believe. I don't know if that's still true or not, but it's difficult to achieve that designation because you have to have done a deal over a million dollars and then you had to maintain that. You have to do a deal over a million dollars at least once a year and believe it or not, in our world, Quiet Light's world, and my world that doesn't seem like a lot. But in general; in brokerage in general, that's tough to do. Joe: Yeah. So, folks, if you haven't visited the Quiet Light website lately, you'll see that it is new next time you go visit it. And it says right there on the homepage, sell your online business with a team that has a crazy amount of been there, done that experience. And obviously, the Woz here, QLB's Woz. We have three Chris's now so his email is actually Woz@QuietLightBrokerage.com because he has that experience. Chris: By the way, I had to clarify to the team because Joe introduced me as, hey, check this guy's email out. He's our new member, Woz@QuietLightBrokerage so I immediately; my first reach out to the entire team, all the other brokers was guys I'm not trying to be cool with Woz. There's already two Chris's. I didn't want to get anybody confused with the other two Chris's. My name is too difficult to spell in its entirety so I went with Woz for simplicity purposes only, not to be cool. Joe: You're cool by default just because the email address is accepted. But you do have a crazy amount of been there, done that experience, but let's segue way to one of the reasons why you are on the team amongst all of the others. And buyers and sellers this is important for you to understand in terms of one of the things that we're going to do at Quiet Light in the coming months. We're launching this podcast sometime in the month of July 2020. And you've got, Chris, some buy-side brokering experience. For the last decade or more we've had requests for buy-side services and we've always said, no, we don't do that. Because of your experience with it and experience with a close friend of mine that you worked with we're going to move in a direction where we're going to offer this. Don't start sending us e-mails here folks. We will announce it. We'll give you the details. We're going to start with a small pilot program and make sure that we serve you properly. And we will not be helping you buy businesses that are listed by other business brokers. These will be unlisted businesses that we will search and find for you, given the criteria that you're looking for. But what made you go into or get pulled into the buy-side part of the brokering Chris? Chris: Yeah, that's the right way to say it. I kind of got pulled in to it wasn't necessarily a proactive decision on my part to get into it. There was demand there for it and so I just tried to get that demand and service those people that needed that service. So we had buyers that we're looking at online businesses, we had buyers that were looking for any type of service business, we had buyers that were specifically looking for manufacturing, all these things over the years and so we just developed the process on trying to uncover businesses that were not on the market, which is that's the kind of grassroots kind of guerrilla effort that we use to uncover these types of businesses. Joe: Yeah, and it's an exciting one for us because it's one that everybody's constantly been asking for and sort of pulling us in that direction. But with Chris's experience, the vast amount of experience that he has here we formulated a plan, we're starting to put it into action and we will test it out in the coming months. And we will make an announcement both via the website, email address, this podcast again, and an official, probably podcast specific to the buy-side brokering and what services we'll be offering. So keep that in mind for the future, and we're excited about it for sure. So, Chris, with your experience, I'm going to ask you random questions because you've been doing this for so long. As everybody knows, Mark and I don't script these. We're just flying by the seat of our pants here and hopefully, it gets across good information to you folks. Let's talk to the sellers out there in the audience, in your experience; the vast amount of experience that you have, what are the top one or two things that a seller should understand about a business that they own, and a path toward exiting that business? And when I say understand, I mean understand and do. Chris: Understand and do, yeah. Well, I think something that kind of gets overlooked when we're speaking with sellers and trying to coach them and advise them is they should know that it's going to be an emotional experience because of the nature of what it is we're about to do, which is the biggest transaction in their life. It's bigger than purchasing your home. It's bigger than the most expensive car or boat you're going to buy or sell. And so this transaction is going to be a monumental change and it's going to be an emotional ride because they typically have some blood, sweat, and tears poured into this business and a lot of times it's their baby. So to not address that when you're speaking with them, because they may not realize they're going to go through these different waves of emotions, that's why a lot of times I know you've talked about it, too, and I've said it a million times, we're just as much psychologist or therapist as we are advisors because it's 100% going to happen that there's going to be these waves of emotion and anxiety and things of that nature that happen. And so I think if the sellers just know that and we can kind of tell them what to expect a little bit and why they're probably going to be feeling this way and why it's natural and why everybody else goes through it too, that I think helps ease that burden a little bit. Joe: Yeah, I think that's a huge one. I was reading some content that's being created now that describes what we do and it said something like entrepreneur, advisor, broker, mentor, friend to online business owners and become all of those things and the friend part at the end because we spent a lot of time with clients. And I'm sure you've experienced that, especially if you've been working with somebody that lived in the same hometown as you or a neighboring area where you actually get to see them more. In our situation with the online world, we get to see them now with Zoom and we see them at conferences and things of that nature, but not as much. So the business folks know the name Joe Cocker, and if they've been listening to the podcast and I've been talking to Joe for two and a half years, I've never met him face to face. I sold his business in Q1, we had him on the podcast. He told a story. This is somebody, folks, that his first child, two days after his 17th birthday, he was in high school working full time and still graduated high school; hustled, worked hard, sold his car. This is the title of the podcast, he sold his car to buy inventory and then sold his business for seven figures. That was the process, a hell of a story. But, you know, I consider Joe a friend, even though I've never met him face to face. I can't wait till COVID goes away so I can get down to Florida, go visit with him and go fishing because he's got a new boat and he goes fishing all the time. And he's very, very good at it apparently. But that's a big part of it. And one of the things that you're going to see, folks, is a new series that Chris Moore actually has been working are called Quiet Giant and we are sharing some experiences with our clients and doing a quarterly short film, if you will, about them. And the second one is already produced and one of the things that the person featured in that series said was just reiterating what you said, Chris, which is at times the advisor mentor, broker, friend is a therapist because whether it's 250,000, a million, quarter of a million, or ten million that you are two weeks away from and you're negotiating the asset purchase agreement and it goes off the rails because it will. And the difference between a good and great advisor is that the great must get it back on track towards closing. But you are going to be in a very emotional state and if you all can see Chris on YouTube, he's very calm and collected. And obviously, I'm not hyper myself, the tone of my voice is this is about as excited as I get some time. So we're here to support, advise, and help and sometimes that comes across in therapeutic sessions if you will. And we've all been there and done that so we know. When we were selling, we're in the same situation, right? You've done it dozens and dozens of times with clients as well. Chris: Yeah. I sold a non-durable medical equipment company that was one of my largest sales of my career in 2014 for right around ten million dollars. And I shouldn't say the name of the business, but I'll say the first name of the seller's name is Ralph. And he actually reached out to me on LinkedIn a month and a half ago just to see. He saw my name and it kind of; I don't know why it popped up or how it came into his point of view, but he reached out and said hey, how are you doing? And I mean, we spent a lot of months getting his business marketing and getting it sold and we developed just a great relationship. And he's just one of honestly a ton of sellers that I've had that we still maintain relationships and we get along great. And that's one of the things I love about the business. It's transactional, but it's very intimate and there's so much at stake that you bond. Joe: Yeah. Chris: Or it's almost you just bond. Joe: Yeah, one of the things I like least about the business is the stigma of being a quote-unquote broker. But once I got over that and realized and became that entrepreneur, advisor, broker, mentor, therapist, friend, it is what we are. And those that want to put a label on us as just a broker, they can just go somewhere else. Chris: You know all those letters we were talking about earlier. Joe: Yeah. Chris: I probably got those because of insecurity. Joe: Right. I'm incredibly secure because I don't have any of those letters. Chris: Right, exactly. Joe: No, you're just lazy. Chris: I'm the most insecure, yeah. Joe: All right, let's talk. We're going to keep this episode relatively short, folks, just simply because you don't want to learn too much about Chris until you get to know him personally. But let's talk about some things though that buyers can do. One of the things that sellers can do is prepare themselves emotionally. Well, actually, I'll follow up on that first, how do you prepare yourself emotionally? I've got some thoughts on that, but I want to hear from you. Chris: How do I or how does a seller? Joe: How does that seller prepare themselves emotionally? You said that is one of the biggest things they need to be prepared for, that it is emotional. How do they get prepared for that? Chris: I think broadly speaking and yeah just talk to them about the process. What is this going to look like for you from day one and then all the way to the exit day? And as long as you're very upfront about that and you're detailed about your explanation of what that process looks like, it reduces the amount of question in the seller's mind. And then if you're also honest with them and you're not selling a bill of goods that you can deliver, which is we're going to get you a buyer in the first week and that buyer is going to be the one that buys your business, they're going to close, it's that easy. If you create those kind of expectations, you're not going be able to deliver. Joe: Are you saying from a seller standpoint, it's actually hard to sell a million, two million dollar business? Chris: Yeah, it's a little bit difficult. And believe me, as that day gets closer and closer you're not going to get more calm. As you get closer to that million or two million dollars, you're going to start to tighten up a little bit. I won't say what I want to say, but you're going to tighten up a little bit and it's going to get more real and it's going to get daunting there for a little bit. But you just got to hold on and listen. That's the other thing, you asked what are two things you would do as a broker or what two things to consider with a seller. My second thing instead of going with the normal answer would be if I'm talking to a seller right now, listen to our coaching. And it's not because we're rocket scientists, it's not because we're smarter than you. You're an entrepreneur. You probably have certain personality traits that have gotten to where you are and why you're successful and we get that. We're entrepreneurs also, but we're not trying to say we're smarter than you or no more than you. But we actually have the knowledge of selling a business, not running your business, but selling a business. So if you're going to hire us, just trust us because we're there to coach you. We know the pitfalls. We know the traps. We know that things are not going to go perfectly all the time. That never happens. You're always going to get sidetracked. So if you just listen to our coaching, if you listen to our coaching when you're dealing with buyers, that's a huge part of it. So my second point of advice would be just trust us and allow us to coach you. Joe: And the sooner we can begin that process, the better. You don't want to talk to somebody, sign an engagement letter the next day, and then list the business for sale a week later. It's better really for everyone involved to start that process of building that trust and that relationship as early on in your business as possible. I love it when somebody calls and sets up a meeting with somebody on the team that says I'm tracking toward selling in Q1 of 2021 or 2022. Let's get started. I want to do a review. And we do that, we will look at the profit and loss statement, we'll look at the financial key metrics, we'll see what the strengths and weaknesses of the business are. We'll go over the process and educate you, help you set an exit goal. You're going to pick that number, not us. But we're going to help you understand what you're leftover with after the sale. It's not necessarily important what you sell it for it's what you could keep. And then ideally reverse engineer a path to that goal. And the longer you are from reverse engineering that path to the goal, the more likely you are going to achieve it or overachieve it or beyond that. Chris: Yeah, I agree. Joe: All right. Let's talk about bias. You've worked with a lot of them, both as the sell-side broker but you're working with buyers and then as the buy-side broker as well. Any advice for buyers when they come to you or anybody on the team or any broker period or actually to a seller directly for that matter, what should they be bringing to the table? Is it a Wall Street type negotiation, is it just come in and pay all cash, what are the secrets to being a great buyer? Chris: I think part of being a great buyer is also listening to the advisor because obviously there's two sides to the coin. So part of our job if we're representing a seller, is to get their business sold. And one of the ways we can do that and ensure that that happens is we lead the buyer through the process. And so that's no different. I interview buyers when we have a business for sale, we have a buyer that approaches us we basically interview the buyer as well. And one of the things that we coach them on is transparency, I think is a big one, because, in a lot of transactional environments, you're quote-unquote negotiating so you want to keep your cards close to the vest. In this sort of situation, we were talking about bigger dollars. Sellers need to know that you're financially capable of getting this transaction done. And so eventually you are going to have to be transparent, not only with your financial situation but also your experience. That's a big one because quite frankly, a lot of the time they're seller's notes, there's earn-outs in some situations and so your ability to pay that owner back is huge. And so when you're going through the process, that transparency is a big deal and a lot of buyers don't understand that. It's counterintuitive. Joe: It is. Instilling confidence and use the advisor first and foremost and then the guy that's going to be selling you the business is critical. Mr. Buyer. I had a call yesterday where I had to go through this process of; the first call I had with this particular buyer, first, he talked about the multiple and how high it was, and he only thought the business was worth X. It's all right. Well, they're not willing to sell it for even close to X, so maybe this one isn't for you. He did move on. In the same conversation, he talked about raising funds. He didn't have the capital for it. So two strikes did instill confidence in me that he thought the business was even close to what it was worth, close to what it was listed for. And two, he didn't have the capital. And so he's going to be raising the funds during a worldwide pandemic with a looming recession where banks are tightening things up. And from that, we had a good call. We had a call yesterday. I would say it was a good call, it wasn't a great call. The first call was a great call because it ended with maybe this doesn't make the most sense for you, but then he followed up with he really did a very thorough job reviewing the package and asked a lot of great questions. Yet there's not confidence in me or I have to reveal who this person is in detail to the seller of the business and neither one of us have a great deal of confidence. So I had a good call with him yesterday where I had to be honest and I think I'm slightly offended him saying, look, man, it happens. You spend a lot of time on this, yet you don't think the value is there and you're trying to raise money. My question was what are the odds? Give me a percentage, in your opinion that you will be successful in raising the capital to make this purchase? He goes, I think the odds are better good than not. I'm like, really? Come on, instill some confidence in me. I'm sorry if you're listening buyer, but I said some very nice things about you as well and I do have a lot of respect for you. I think it's just; and we talked about that, the instilling in confidence. Chris, you're human, right? I'm human. We're spending time trying to help both buyers and sellers get to a successful transaction and we're going to give both parties some advice that they're not necessarily going to like. But it comes from a place of experience; crazy, been there done that experience, and sometimes it's hard to get that across in a way that makes you feel warm and fuzzy when we're telling you. Chris: Oh definitely. Joe: Yeah, it's hard. Chris: One of the things I tell sellers every time we get an engagement is you're not going to hear from me unless I have somebody for you and I'm going to be spending 90% of my time with buyers. And a lot of the time they don't like the sound of that right off the bat. But I let that sink in for a minute and say, look I've got to establish a relationship with these buyers. I've got to establish trust with them and that's why I'm spending all my time with. And it's for you, Mr. Seller or Mrs. Seller. That's why I'm spending all this time with these buyers is establishing that trust and coaching them and letting them know what the process is and how we don't deviate from that process. It's the same thing every time. Every business is different and certain things will happen but we do not deviate from our process and the process is because of experience. That's all it is. Joe: Can you see, folks, why Chris is joining the team here? Bringing a great deal of experience and wisdom, credibility and a lot of credentials, as you can see, because of his insecurity to the team and helping us move in a direction on that buy-side that I think will help serve some of you in the audience to find things that are not listed. We as a company have never practiced spamming emails and reaching out to buyers to say, hey business owner, we've got a buyer for you when we really don't. Chris: Right. Joe: This will allow us to go ahead and reach out to buyers in an honest, sincere, and ethical; I'm sorry sellers. Chris: Sellers, yeah. Joe: Honest, sincere, and ethical way with 100% of the truth. So I'm looking forward to that, Chris. I'm looking forward to having you on the team for many years to come. I appreciate your time today. Chris: I'm so excited. I'm so glad to be with you guys and I appreciate the opportunity. Joe: Woz@QuietLightBrokerage.com, we've got the Woz on the team, guys. Thanks, everybody. We'll talk to you soon. Chris: Thank you. Resources: Woz@quietlightbrokerage.com Quiet Light Podcast@quietlightbrokerage.com

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

Cup o' Joe
Cup o' Joe, Good Friday, April 10 2020

Cup o' Joe

Play Episode Listen Later Apr 10, 2020 21:55


Excerpts from the Passion of John

The Quiet Light Podcast
Incredible Exits: How to Build the Pillars of a Successful Business With Paul Anderson

The Quiet Light Podcast

Play Episode Listen Later Feb 25, 2020 33:19


One year ago we listed a business that created a massive amount of activity, garnering ten offers, many above asking price. As part of our incredible exit series, today we welcome a seller who has had some time to reflect on all the things he did right in his sale and share what he has been up to since. Paul Anderson started his career as an accountant, taking the safe path and spending ten years in corporate America. An increasing lack of passion led him to start to build his own lifeboat. He avidly studied Amazon FBA and learned by following experts in the e-commerce space. Although his first launch failed he carried on, honing his awareness of product opportunities out there and eventually he hit it big. Today Paul delves into the building of the business, the pillars of his success, and the components of his path to becoming an exitpreneur. Episode Highlights: Paul's first product's failure to launch and what he learned. How he sourced the second product and what happened in the last quarter of 2016. Funding subsequent stock and the challenges of inventory planning. How Paul stands on all four pillars of a successfully built business as well as that invisible fifth pillar. The scheduling and nitty gritty of the sale process. How the final buyer was chosen and the deciding factors for Paul. Why the highest bidder does not always win. The toughest challenges of running the business. Why Paul decided to sell. What he has been doing since the sale. Tips for building a successful content website. Transcription: Mark: So almost one year ago to the date of the recording of this episode of the podcast I was on a car ride with Joe; you Joe from where was it? It was from Dallas down to Houston and then Houston back up to Dallas. We were meeting with a good friend of ours that lived in Houston and while we were in that car ride you had launched a new listing that went absolutely berserk. And I've referenced this; I think we've actually talked about this on the podcast a few times, I've referenced this deal because it was one of these outlier deals that seem to check every single box and the result was just a massive amount of requests for phone calls and I believe 10 offers within a very short amount of time. And it's been a year since that launched and obviously, the deal closed which we're super happy about but now you finally get to have the seller on the podcast talking about all the things that he did right. Joe: Yeah it's a great time because it's a year out so he gets to look back. And over the years of doing this podcast the people listening have heard us talk about the four pillars; risk, growth, transferability, and documentation and someone might go yeah ok whatever, the reality is that they matter. Paul Anderson sold his business; 10 offers, he checked off every one of these pillars and the six little subtitles under each pillar and then the fifth one which I know Mark there's no fifth pillar, but the fifth one is the man or person or entrepreneur behind the business. Paul being a former CPA turned entrepreneur who outsourced his bookkeeping to a bookkeeper is just a super likable guy, stay at home dad, buttoned up in so many different ways. The end result is I had to clear his schedule; he basically had three conference calls with highly qualified buyers for five days in a row. He was exhausted from it because each one was… Joe: So you had 15 conference calls then. Paul: 15 conference calls. Joe: And I remember again we were in the car going back up to Dallas and you were on the phone pretty much constantly telling people okay let me see if I can arrange a time for you. So there was a lot more requests for conference calls on this deal. Paul: A lot more requests and we say we had 10 offers but finally a few people dropped out because they just didn't want to compete because they knew what it is going to be. And the funny thing is people get concerned about that and we always say right up front look don't get caught up in the hype of multiple offers, don't go beyond your comfort level, offer-wise. We want you to make an offer that works for you and hopefully will work for the seller as well because we want it to go all the way from letter of intent through to due diligence and that's exactly what we wound up with. And oddly enough Paul did not choose as we always say they don't necessarily choose the highest price. He didn't do that. He picked the offer that was best for him and I think it was somewhere $150,000 lower than the highest price. So we talked about a little bit of that process, what makes a good seller, a good buyer, and then we talked about what he's doing today which is really interesting as well so hopefully, everybody will enjoy this podcast. Joe: Absolutely. Paul: Let's go to it. Joe: Hey folks. Joe Valley here from the Quiet Light Podcast and today I have an Incredible Exits client on the phone with me. It's Paul Anderson. We sold Paul's business I think; when was it, Paul? Paul: March of last year, so a little under a year ago. Joe: Spring of 2019; so a little under a year ago. So we're going to talk about Paul's exit. We're going to talk about what Paul went through when he built the business, sold the business after he sold the business, and what he's doing now so we're going to get the full picture. Paul welcome to the Quiet Light Podcast. Paul: Thanks Joe, good to be here. Good to talk to you. Joe: So for the folks listening why don't you give a little bit of background on your professional pedigree and your entrepreneurial journey? Paul: Yeah, sure. So I actually studied accounting and followed that path. I was kind of one of those people that never really knew what I wanted to do. Like some people I think they're just like hey I want to be a TV news reporter or a journalist, I never really had that strong thing tapped me on the shoulder that said this is what you should do so I took a pretty safe practical path. I went into accounting and got my CPA. I spent about 10 years working in corporate America doing accounting and finance jobs and didn't really ever feel like that passion and eventually it started to kind of wear me down. I got to the point where I had to think of something else to do and try to build my own little lifeboat to escape from that because something inside me just didn't feel right anymore doing that. So that's kind of what led into starting a business. So that's in 2016. Somewhere; I don't even remember where I started to hear about Amazon FBA and I kind of consumed everything I could about it like podcasts, there's this guy Manny Coats inaudible[00:06:09.6] Helium10, he had a great podcast back then, Amazing Seller; there's all sorts of good stuff online about the model and that's kind of how it started and I started really small. We can get into it from there but that was kind of the first step, learning about it and seeing like oh I think I could do this. Joe: So you learned about it from podcasts; you didn't pay for a course or anything like that, you were absorbing free information from experts in the space. Paul: I never bought a single course it was all podcasts, Facebook groups, Reddit forums, and I was just… Joe: I love it. Paul: Yeah I can tell you about the first launch which was a total fail but that was like my training course like the very first launch because I learned. Joe: Failure is a great lesson. How much money did you pull together to launch the business and were you working at that point in the CPA business? Paul: Yeah I was still working. It was 2016, I put $5,000 in to do; most of it was an inventory buy so I was on Alibaba like at night trying to find my suppliers talking with China and I put in probably about 5,000 bucks to start on my first product. Joe: Okay. And you just mentioned Helium10; did you use Helium10 to help you find that first product? Paul: Yes. So it's funny like almost all the products I launched I've kind of like encountered in the real world somewhere and the product that turned out to be my big business was I kind of got onto it from a discussion with my parents. We're just having a casual discussion like you would have many times a day and they mentioned this particular thing and I would always in my iPhone put down; anything that seemed interesting I would just like log it in there and then I come back to it. So I had a list of 20 to 30 things going and I went back and started doing some research. I actually was using Jungle Scout back then and I switched over to Helium10 for everything now. Joe: Oh they're both great products; both of them. Manny and Greg have both been on the podcast; great guys. Paul: Yeah, for sure. So I kind of punched it in there and said like oh this looks like; the numbers look good and that's kind of how it started but it really was that conversation being like; I think if there's a lesson there it's being aware, we have so many kinds of filters and blinders on like if you really put yourself in the headspace of looking for opportunities you'd be surprised how many little things you read online or you hear about through friends like this is really popular; there's just all sorts of those little things that pop up that could turn out to be big businesses. Joe: So pay attention to your surroundings; the stuff that you use every day, emerging products in categories and niches and try to pay attention to and think is there an opportunity? Did you use any tools to see if a lot of people were selling in that particular category and that particular product? Paul: I mean Jungle Scout helps with that but mainly you can just go on and kind of assess like if page one everyone's got a thousand reviews and they're really well-known brands or something that's probably going to be a tough place to break into. Joe: Tough barrier; okay. So tell us about your first test, it was an epic fail? Paul: Yeah, so I was really pumped and thought like here it is, this is going to be like my ticket out of full-time work and it's going to be amazing and it was actually an accessory. Have you ever heard of pour-over coffee? Joe: Yeah. Paul: So that was kind of just bubbling up, seeming like oh this is really a trending product… Joe: Too much work; I never bought it because… Paul: Too much work, yeah, but there's a lot of people that are really into the craft obviously a coffee one and having some artisan experience. So I sourced these little wooden coffee stands that's basically used to make pour-over coffee. And it was kind of a cool thing but it turns out products made out of wood can crack and can break and have issues and I was not an expert at sourcing at that point in time so the long story short a lot of the products ended up cracking and breaking. And then once you start getting all these one-star reviews and returns; like my garage was full all around with carts of returned inventory and there wasn't that much demand I think. At the start, I was thinking oh you really got a niche down into this little tiny space and own that and there just wasn't quite enough demand in that space either. So I kind of learned to be a little smarter on sourcing and just to look for ways that things can go wrong inaudible[00:10:31.6] thing that's just so niche that like even if you execute and everything is great like you're going to be selling a couple of units a day. Joe: So how much money did you test and lose on that first product launch? Paul: So that was about 5,000 bucks in and I didn't take to bad a bee but I think I lost about a thousand dollars on it which isn't bad. Joe: Oh that's not bad. Paul: Yeah. Joe: Not enough to make you go away and say okay this didn't work I'm done; I'm going to go back to the corporate world. You got a taste for it and you said okay I just picked the wrong product. Paul: Exactly. And I mean I was still in the corporate world and like 5,000 bucks it's not like a lot of money at the time so it wasn't like I was; I'm like yeah whatever it doesn't matter. At that point, the stakes felt real and high. Joe: Yeah. Paul: Because it definitely was like I can see the power here on Amazon it's just like finding the right thing to really get this thing spinning. Joe: Okay. So you learned a lesson; you only lost 20% of your money but you get an excellent education from it better than any course you could have ever purchased. You went out there tried it, failed, learned, and didn't lose so much that you couldn't do it again. So you came up with another product niche and decided to go at it again? Paul: Exactly yes. So then I was actually going over to; are you familiar with the Canton Fair which is the big supplier…? Joe: Yeah. Paul: So I had a trip booked to go over there and kind of in-between going there… Joe: Just out of curiosity did you book it with a group or was it just you? Paul: Just me and my wife went over. Joe: Oh okay, because I was just talking to Athena from China Magic and they have a group of folks that go on a regular basis for those that are terrified to go alone. So you and your wife chose to book a flight to China and go to the Canton Fair alone. Paul: I loved it. It was really, really full out and I'm eager to go over there. Joe: Okay. Paul: I actually ended up finding my supplier on Alibaba before I went so I can't really say that the trip necessarily paid off in terms of like… Joe: Did you connect with him in person when you got to the Canton Fair? Paul: No because it was still too early and he was pretty far away from the Canton Fair. I think it helped me really see kind of like the culture of China and doing business with China and I think just a little savvier about how things work. So it was a great education for that and just like a lot of fun to check it out; I mean the place is just massive, like multiple football fields. Anything you want to ever source it would be out there so it was a super interesting spot. But anyway back to your second question so yes I stumbled upon this other product and started kind of the wheels turning in 2016 to source it. I got it on I think in the fall of 2016 and I remember that Q4 for Amazon or e-commerce is like the prime time and I remember just refreshing that seller app that Black Friday, Cyber Monday, like all through up until Christmas and it was just mind-blowing the sales that were coming in off this new product. Joe: What was it like your first day that you got a sale, how many sales did you have all together; do you remember? Paul: Oh I mean it started slow. The first thing was probably just two or three units. I mean it's really; it was in such a momentum game like when you have no momentum it's hard to keep momentum and then once you get this momentum going and the wheels start spinning it can blow your mind like the amount of sales that… Joe: And that actually blew our mind within the first month or in that first quarter like what did you wind up with on the biggest day within a couple of months of launching it in the Q4 of ‘16? Paul: I don't want to say maybe like $8,000 of sales there. Joe: Oh, wow. Paul: Something big like and then when you look at the profits from that it's like wow I made more money like on this one day than; and I had a pretty decent corporate job, I'm like this is crazy like the potential. So the hooks kind of got in me right there and then '16 was kind of just getting off the ground and then the next year is when the ball really started to roll. Joe: When you started to get revenue in the fourth quarter of 2016 and sales started to come in you had euphoria with the fact that you were getting that kind of revenue and making more money in one day than you made perhaps in a month in the corporate world but did you also have the fear of oh my God I'm going to run out of inventory? Paul: I did. Joe: Okay. Paul: Yeah, inventory is like not something glamorous to talk about and you don't really hear about it that much in podcasts or anything else but it's like running a physical products company doing an Amazon business like the inventory planning is so difficult because your sales can change on a dime. inaudible[00:15:20.7] your supplier 30 days early to make something and another 30 days to put them on a ship to get it over here. So you've got these difficult variables to manage that can leave you stocked out or even a little bit too much stuck so that's always a tough thing to manage. Joe: Awesome. I don't think I've ever met an Amazon seller or an e-commerce business person that's been growing rapidly that's not run out of inventory at one point or another. All right, so you started with $5,000, did a test, failed, how long between the first failed test and the second product that took off; how many months was it? Paul: That was about three months I think. Joe: Okay, and all the time you kept your day job which is fantastic. So you've got some revenue, you've got some money in the account that's transferred to your business account, at what point did you order more inventory with and did you just use that money or did you sit down and talk as a family and say okay this is a winner we need to take a home equity line of credit; how did you fund the rest of the inventory purchases? Paul: It was all really funded with profits. Joe: It was? Okay. Paul: Yeah, it was. Joe: And you didn't have to take any money out for living expenses because you had your day job so that's perfect. Paul: Yeah. If I wouldn't have my day job it would have made it much more difficult but luckily I had some steady income coming in on the day job and then I was able to just take the profits and reinvest them back in and just go from there. Joe: Fast forwarding you had an amazing 2017, an amazing 2018; strong year over year growth, like huge year over year growth. For those listening, Paul's business was listed again spring of 2019 and it's those perfect situation folks where we talk about the four pillars of a sellable business and that invisible fifth one which is the person behind the business and that's Paul. We have a 30-month-old Amazon business with an incredible brand that's growing rapidly year over year. The financials we're set up impeccably. Paul is a CPA but he did something incredible which was what? You outsourced the books to an e-commerce bookkeeper; brilliant by the way. So those of you that are out there saying oh I can do this I'm not going to pay a few hundred bucks to a bookkeeper we've got a CPA here that chose to outsource to an e-commerce bookkeeper because he can do better things than bookkeeping with his time like grow a multi-million dollar Amazon brand which is exactly what you did. Your business checks so many boxes. It was SBA eligible. You were the owner behind the business. You built trust. People believed in you. During the recorded video interview, you're the first person; and I keep asking people to do it now, you're the first person that ever sat in front of the camera, reached down picked up the product and demonstrated the product. You showed the new packaging that you had just done. It was beautiful and the end result was an overwhelming request to buy the business, conference calls where you had to clear your schedule for a week. I said Paul cancel everything, right? We had to clear it and we ended up with I think three calls with qualified buyers every day for five days. We wound up with 10 total offers. I think we were at; the top one was something like $150,000 over asking price. Paul: Yeah, I think that's right. Yeah. Joe: Yeah, and we say this all the time that it's not always the offer that comes in with the highest number, it's the right fit more than anything else. We had; of the 10 offers, I think we had maybe six that were SBA and four that were cash. You ended up choosing a cash buyer and not just because it was a cash buyer but also the person behind the business. We did video interviews between the buyer and seller. How much did that matter and how much of a difference did that make for you? Paul: The interviews mattered a ton. I mean that was the deciding factor because when I went into the process I just thought like well it's pretty simple, right? You take the highest number and the highest bidder wins but as you get into it and talk to different people it's like a huge diverse set of backgrounds that people are coming through Quiet Light looking to buy, right? Joe: Right. Paul: And some people I felt like wow I could just hand this to them and they could run with it immediately and do like as good or better a job with this than I ever could. And others are like hey I really like this person and their heart is in the right place but I feel like the transition might take a little bit longer and then what if somewhere they dropped the ball and things get sideways like I don't want that somehow to come back to me. I don't know if that's a rational way to think about it but if there was a lot of comfort like feeling this guy or these guys I feel like really got it, they get it, they know what to do, they will hit the ground running from day one so to me that mattered a whole lot. Joe: Yeah. And I think given the fact that we're in this remote world where your buyers and sellers are all over the world literally sometimes doing a video conference call for that initial call breaks the ice. You're not reading the client interview anymore, you're not just talking to somebody on the phone; you can see the whites of their eyes and anybody that wants to see Paul we're recording this both on Zoom with video and audio and it will be up on the YouTube page as well. He does not look like a buttoned-up CPA today and I was making fun of him when we first got on the call. You've always looked like that but today you know what you're a successful exitpreneur. You got the sweatshirt on, a little stubble, working from home; I love it. All right so I want to you ask a couple of things just for the audience purposes. Number one back to running the business what was the toughest challenge in running the business? Let's start with that. Go ahead. Paul: Yeah. I'd say even at the start this isn't even a tactical thing but the hardest thing was just getting the momentum going. Starting an Amazon business is not like hey I'm trying to create an electric car and beat Elon Musk but even me like I had a lot of doubts at the start like is this is going to work, am I going to lose all my money? All of these doubts kind of creep into your head so I remember really kind of struggling to pull the trigger in a way thinking like I just don't know is this supposed to be my pathway? So I think that was really hard to overcome and you just kind of keep going one foot in front of the other and once you get a little momentum it just like brings all this energy and life into you that you just feel so energized to just keep improving and add products and make your products better and make the packaging better. Getting that first momentum can feel elusive and challenging so I think that was like a big thing at the start. Joe: And you failed and then you stuck with it and then you succeeded. Paul: Yeah. And I was kind of at an inflection point like should I keep going or is this just not meant to be and then you know. Joe: This may be a dumb question but are you glad you kept going? Paul: I'm very glad. It changed my life that I kept going. I mean I'd still be sitting at a desk in corporate America right now I hadn't kept going and like we've got a three-year-old son at home like the physical time we will spend with him and then mentally my head is so much like the stress is away from me. So I was always stressed working in corporate America so it's been the biggest blessing ever to go out and do this. It's changed my whole family's life. Joe: Okay. So let me ask the question that all buyers ask, why did you sell the business? Paul: Yeah, it was a tough decision to sell because I was having so much fun running it. And I think the honest answer is the value of the business became such that it really could provide a lot of security for our family. And it felt like if I was 23 and single and didn't have kids I'll like alright instead of going for this I might have just keep on going and try to sell it for three times this or five times this or just keep going. But knowing Amazon can be volatile and like I had all my eggs in that basket so it just felt like the responsible thing is to take some chips off the table and let go of the business but it was really hard. Joe: The responsible thing; I like that, the responsible thing. Your CPA background is coming out now. That's good. Paul: Yeah. Joe: All right so what was the toughest part about going through the sales process and selling the business; what was the hardest part there? Paul: Picking a buyer was really tough. Joe: It's a good problem. That's a good problem to have. Paul: I mean just even knowing how to approach it and you really helped a ton Joe in that process. When it's your first time through and you already have kind of these emotions like you built this thing and now it's worth something that people want it, it's a weird feeling and like how to value it and how to find the right fit and thinking about SBA versus cash; there's just a lot of things that are spinning through your head at that time so I think just getting a clear head and trying to identify what the right fit was the toughest part. Joe: Okay. I think you again exception rather than really had 10 offers, I think maybe one or two might have come in slightly under asking price but the vast majority was above. I think 2019 the average offers that we had on any single listening was two and a half so you are five times that amount which is pretty exceptional. That goes to the brand that you built. It goes to the way that you set the business up with its own entity. You didn't come and go books. You're a CPA but you hired a professional bookkeeper. You instilled so much confidence in buyers. They clearly came out of the woodworks to buy your business. All right, the toughest part was choosing the buyer; that's amazing. It's not what I would've guessed you would have said. Sometimes it's due diligence but with you, it was choosing a buyer. All right so now there's life after the sale, you were in the corporate world working 40, 50 hours a week or sometimes more in tax season and then you're an entrepreneur working from home spending time with your son now what are you doing? You've sold the business nine months ago, what are you doing with your time? Paul: Yeah so it's been nice to have a little; in life usually you're just like chasing after the next thing and I've had just the time to step back and think really what I want to do and what I want my life to look like so it's been like a real luxury. So I'm going into; I'm building a website, it's called WealthFam.com. Joe: Fam like family? Okay. Paul: Yup like family. It's brand new but basically it sort of like combines my background and what I like to do. So it's all about building wealth; becoming financially independent, starting and running online businesses. Basically, it's how to be smarter with your money and use the money to help kind of enable the life that you want to live whether it's being with your kids or going on trips or whatever else. So it's a content site which is a super interesting thing. I thought a lot about going back and doing another Amazon business but I just didn't feel the same spark for like starting it and it takes a lot of energy and mental fortitude to take something from A to Z and you've got to really want it kind of every step of the way. So this just kind of really energized me and there's been some great stories like Ramon's story; you featured Ramon. It like blew my mind the… Joe: His content site, yeah. Paul: And that happened in the content space so that was really exciting to me. And on top of that I just like doing this stuff so it feels like the right sort of fit. Joe: So what kind of subjects are you going to cover on Wealth Fam? Paul: So it's broken down a couple of categories like making money, saving money, investing money, financial independence, and then some stuff like how money intersects with having a kid and being married or buying a house. So I'm trying to make it like a modern personal finance site that people in their teens, 20s, 30s, can find well like at least from my experience like education society; like our schools and in general, there's not a lot of like real training about… Joe: There's none of it. There's none of it, yeah. Paul: And there's even a lesson mode like starting an online business and like the potential kind of betting on yourself. Joe: It seems like a great idea because you're taking your educational experience along with your entrepreneurial experience and marrying them together with a content site which is great. I love content sites. We work with SaaS, content, and FBA and content is just fantastic. Scott Voelker is really, really focused on helping people go beyond FBA and build content sites and some of them have great success and its driving more traffic back to FBA and getting their business products sold. For those that aren't familiar with content site monetization, how do you plan to monetize the site? Paul: So there's a couple of traditional ways that people will do it. So, first of all, you have to have traffic. I mean if I have traffic inaudible[00:28:43.3] selling eyeballs like it's tough to; getting traffic is really hard and you're playing like this SEO game and it takes a long time to rank in Google. Then there's a couple of primary ways, the first is affiliate links like you could be selling a course or selling something on Amazon or selling; the Amazon FBA thing is a really interesting thing for Amazon sellers to marry their inaudible[00:29:04.9] business with content. I love that idea. I think that's really smart. There's brand sponsorships, other partnerships; but it's like advertising and affiliate income are kind of the two main plays for monetizing. Joe: I got you, okay. All right how's life at home; what do you do with your time? I mean you've you don't have a job. You're starting a content site which might take a little bit of your time. You've got a baby. Paul: It takes a lot of time. Joe: It takes a lot; the startup phase is always the hardest, isn't it? Paul: Inaudible[00:29:38.4] the thing I underestimated about content is that like writing is really hard. Joe: Yeah. Paul: I think oh I can write something about Amazon, that's easy, I know this. It takes a lot of time to really do a good job at clarifying your thoughts but overall I'm just trying to optimize my life for happiness and contentment and I get that right now being with my son and my wife. So I spend a lot of time with my family. We do a lot of cool stuff together. And I'm really liking; I do some Amazon consulting because I'm still at the Amazon blog and I like to be involved in it so I'm doing some of that for some local companies which I love doing.   Joe: Good. Paul: And then this content thing really is exciting and fun and I'm going to see where it can go and… Joe: So you didn't make enough on the sale of your business to never work again but enough to give you a pretty long runway and you're enjoying your expertise in the Amazon space and doing some consulting while you're building up another content or a content business? Paul: Yeah that's a fair way to… Joe: Does that sum it up? Paul: Yeah and I'd like to go up those kind of shift too, right? I'm not sure how in-tune you are with the financial independence world, all the people that want to retire early and be financially… Joe: Oh yeah, fire. Paul: So like if your burn rate or you can live on 40 grand a year once you stacked up a million bucks, in theory, you can quote-unquote retire. Joe: Sure. Paul: But as you think about education and college and healthcare and all these other things that number maybe gets a little bit… Joe: It gets blown out of the water. I have an 18-year-old and we're 14 days away from knowing what he's getting into which is schools and I'm rooting for the in-state schools; I'm not going to lie to you, I'm rooting for the in-state. Paul: Hey, I went to an in-state school and… Joe: Look at how it turned out; pretty damn good. Paul: Yeah. Joe: All right cool. Well, listen Paul I always tell the story about you and your brand and the fact that that fifth pillar makes a huge difference. It's the person behind the business that builds a great business with the next owner in mind. You kind of did that, I don't know if you did it intentionally or not but you said I'm going to build a great business. I want to put it all in a package that's going to help the new owner of the business do amazing things with it. And Matt the new owner of the business as you know is doing amazing things with it. And it pays off when you think about others exactly what you did that paid off for you, it paid off for your family, and now hopefully through Wealth Fam, it's going to pay off for a lot of other visitors to your website as well so people can start young and start smart and get on the right path financially. So listen man thanks for your time. I appreciate the business that you've built because it allows me to tell a story of how the person behind the business makes a tremendous difference so thank you and I appreciate you coming on the podcast today. Paul: You got it. Anytime. Thanks a lot, Joe. Links and Resources: Paul's Website Jungle Scout Helium 10

The Quiet Light Podcast
From a Net Worth of $200 to a Near Seven-Figure Exit – Leigh Huynh's Story

The Quiet Light Podcast

Play Episode Listen Later Oct 31, 2019 26:48


One of the most difficult aspects of selling a business is getting the timing right. Beyond the valuation aspect there are also personal considerations. In another incredible exit story, today we meet an entrepreneur who has had an amazing road to success. The story of her business and the timeline of her success in the Amazon space is truly remarkable considering where she started less than 20 years ago. Leigh Huynh's family came from Vietnam with $200 to their name nineteen years ago. Learning from her family's determination, Leigh started to build a life and an understanding of what was needed to build a business. She started in the Amazon space and found success in beauty and skincare products. Leigh's initial sale listing did not make sense for her timewise but she came back 15 months later, listed for more, and sold for more than the initial listing. This episode is a reminder to sellers that they need to plan to sell their business rather than decide to sell their business. Leigh's story also brings the human aspect to the deal and serves as a reminder that there are many considerations behind each transaction. Episode Highlights: The entrepreneurial journey of Leigh's business and how she learned to build and sell on Amazon. The categories she chose to go into on Amazon and why. Leigh's initial launch investment. How many skus she had to go through to get it right. The investment loss on the first skus and how one product became the home run. The process that led up to selling the business. Reasons why the timing on the original listing was not right. Any moments when the transaction process was difficult. Transition times for the hand off. Leigh's plans for the future. Wisdom Leigh shares with young female immigrant entrepreneurs. Transcription: Mark: One of the most difficult things Joe, as you know when you're trying to sell a business, is getting the timing right. I mean first there is the valuation consideration; you have to get the right timing if you want to maximize the value of your business. And then on top of that, there's also the personal considerations as well, right? Sometimes just personally where you are in life isn't the best time to be trying to sell a business because it's a lot of work. And I know that you had Leigh on who's got an amazing back story. It absolutely makes one of these entrepreneurial success stories that we look at and just kind of think wow like that person is amazing. And woven into this story is a story of also just timing the sale of her business and you have the opportunity and really the honor to be able to work with this really amazing woman. Joe: Yeah, I think you use the right word there; it was an honor, to be honest with you. I mean this is the American dream story, right? Leigh came over at the age of 15 from Vietnam. Her mother came with three kids and $200 to her name. They came from a small village in Vietnam. Leigh didn't speak any English at all. And 19 years later; that's aging Leigh, right? She's 34; she looks like she's 20. She sells a business for a high six figures; pretty impressive. An amazing story. She's just a hard worker entrepreneur. We had the business listed in early 2018 and as you said timing, stress, family, baby, it just didn't make sense after she got it listed and she said Joe I just can't do this right now can we pull the listing? And of course, I said absolutely it's your business, it's what we do at Quiet Light. We're always working in our client's best interest. And you and I ran into her down at Brand Builder Summit down in Austin. We got to see her when she was pregnant with her second baby and she came back and 15 months after we initially listed it we listed it for I think a quarter of a million dollars more. Got it out there, things were more streamlined; things were more efficient in the manufacturing process. We had a multiple offer situation and sold it very quickly to a great buyer as well. Mark: Now I love this story because there are so many different layers to it. I mean one there's just the transactional to it. And I know I was speaking with somebody who is going to be coming on board as a Quiet Light client recently and we were talking about his goals and immediately where do people go when we talk about their goals? They immediately go to the money side and I tried to explain to him let's talk about some of the other goals that I know that you have, right? Let's start to unearth some of these because when you get into the process these become really, really real and really start to surface as you're going through the step of selling process so it's important. And an important reminder both on the buy-side and on the sell-side that yes what we do ultimately comes down to a transaction with value and money being exchanged for a valuable asset but there are a lot of other considerations to always be looking at but the other; I mean look let's not mince any words about this, the hero of the story, the real amazing thing about the story is the human aspect of her background and her story. So I'm really excited to listen to this because I love digging past the transaction and seeing some of the amazing people that we get to work with both on the buy-side and the sell-side. Joe: That's exactly what this is. It's an amazing story. She's an amazing person. A great buyer came. It's just kind of a perfect fit and I'm excited to hear her journey in the next several years. I'm sure we'll stay in touch and I think everyone should listen to this one right through to the very end. Joe: Hey folks, it's Joe Valley here at Quiet Light Brokerage and this is another episode of The Quiet Light Podcast. Today we've got another of the Incredible Exit stories to share with you. We have Leigh Huynh on the podcast with me today. Leigh, welcome. Leigh: Hi, Joe. Thanks for having me. Joe: I'm so glad you're here. You and I have known each other now for; it's going on two years almost I would say, we should go back to the original time that we started chatting. Leigh: Yeah, I mean a couple of years ago. Joe: Yeah. So let's talk about that full story. I want people to get to know you a little bit in your story as an immigrant to the United States when you came in and then your entrepreneurial venture as well. Why don't you tell people a little bit about yourself just the background of who you are and then we'll dig into the questions? Leigh: Alright. So I was born and raised in Vietnam; a very small town. I came here when I was about 15 with my mom and my family. So we came here. I was just talking to my mom the other day like hey mom do you remember how much money we had when we came? She's like maybe 200 US dollars. And so we got sponsored by Jewish people and I was getting on [inaudible 00:06:11.2] and some supplement or something like that at that time to help with rent in the house and all of that. And my mom is working with them 6 months my camera away naturally. And then we got off that program and I was in school so I kind of understand money at a very early age. Yeah, my mom has a store; a brick and mortar store, so every day after school or before school we are always at the store helping with the customer, buying product, we sell them, dealing with supply, and all of that. So I guess my entrepreneurship kinds of starts at a very early age; 10 or 12. Joe: Amazing. And when you came to this country Leigh if I recall our conversations you didn't speak any English at all at the time is that right? Leigh: No, no English. We came from a very small town so we never really travel anywhere out like one hour. Joe: So listen I came from a small town in Maine and small in that in that regard was 10,000 people. What are we talking about in terms of a small village in Vietnam? How many people were there? Leigh: I don't know the amount because it's [inaudible 00:07:26.6] so much now. But I would not; like everybody would know anybody and when I was growing up there's no electricity, no TV, our room was leaking and I remember we're having dinner and we have to move our dinner table because the roof was leaking. Joe: Wow. Leigh: Yeah. So like the whole neighborhood, there's only one person that have a TV. Joe: In the whole neighborhood only one person had television, no electricity. You came here with less than 200 US dollars when you were 15 years old. You didn't speak any English. And just to cap it off we just closed a transaction in the high seven-figure range; high six-figure range. I always get that wrong people sorry about that but the high six-figure range. More money than your mother probably could ever have dreamed of. And she must be so incredibly proud of not only the risks that she took and proud of herself for coming here and starting a new life but wanting to give a better life to you and your siblings and she must be very, very pleased that she's accomplished that. Leigh: Yeah, definitely. I just told her and she was really, really happy and shocked. Joe: You're married to someone that's also got quite a journey. Can you talk briefly about Tai and what it took for him to get to this country? Leigh: I think Tai's family had more of a tougher life than us. He tried to escape Vietnam and there are many try. And then the last time that they tried they walked all the way from Vietnam to Cambodia to Thailand and they stayed in a refugee camp for 7 years. So they didn't have any education from he was 5 until he was 12. And then they got sent back to Vietnam and he had to go to school. So when in school he didn't know how to read a part [inaudible 00:09:27.7] you're so dumb like you don't know how to tell time. But because he was lacking up that whole period of time; lack of education then he came here with his family and worked so hard and became like an engineer. Joe: It's incredible. I've met Tai folks. I've talked to him. He's impressive, obviously leads accomplished a tremendous amount in a short period of time where the most people dream of in a lifetime; incredible, incredible stories of overcoming adversity and living the American dream. Well, let's talk about your entrepreneurial journey a little bit in terms of the Amazon world because that's the business that you just sold. It was the vast majority of the revenue produced from the true brands that were inside of the business you created were Amazon. What programs, what mentors, what podcasts did you focus in on to learn if any how to build your Amazon brands? Leigh: So back in 2014 Tai and I was following Robert Kiyosaki; rich dad and poor dad stand in an interview with Matt and Jason on how to sell on Amazon. I don't think I saw the interview but I did in one of the emails and then I was just looking up and do wow that is pretty cool and pretty interesting well I can really do that. And so I found Ryan Daniel Moran on YouTube about how to sell on Amazon and then I was like okay I'm going to sign up for it. And I just kind of did that without thinking very deeply about it. And then Tai came home from work and I said hey I signed up for a course to sell off on Amazon. And he's like you did? And I said yeah I mean it. Wow. Okay but don't quit. And that's how I got started. Joe: And you didn't quit. For those that don't know who Matt and Jason are that you're referring to it's the Amazing Seller Machine; some folks out of Austin that have done some tremendous things there as well. Ryan Daniel Moran is also out of Austin, the same area. Austin is a mecca for e-commerce and Amazon for sure. I've been involved with a lot of people that have done very well by going through the Amazing Seller Machine courses early on. But no matter what there are a lot of people that failed and succeed so full credit without a doubt goes to you Leigh and Tai saying great; congratulations that's great don't quit because you've had some trials and tribulations along the way. What year was that you said it was 2014? So 5 years later is when you finally sold the business. Leigh: Yeah. Joe: Yeah. So let's talk about the categories. I don't want to name the brands in this but the first category that you chose to go into in terms of the brand that you launched on Amazon first what was it? Leigh: Oh, it's skincare. Joe: Skincare. And did you have any background or experience in working for skincare companies and developing skincare products? Leigh: Yeah a little bit because when I was in school in college I had a job. I'm a manicurist and then aesthetician. So I was always working doing that during part-time for school and after college, I kind of did that full time for about a year or two. But I was putting so many hours; about 70 to 80 hours a week into work and it's got really tiring so I learned a little bit. I know some customers and I know what they need. Joe: Mm-hmm. And how did you go about doing the research and finding products and formulating things of that nature? Leigh: They kind of teach you in the course like you search for private label products and then go do it in the research and then I was able to kind of test on my customer at that time. Joe: Okay good. Then what type of; if you think back and I know we're digging deep into your memory here, do you remember what kind of dollar investment you initially made in terms of launching that first brand and product on Amazon? Leigh: I put everything that I had from my job into the business; all of the money that I was making; everything. We did a lot of launchings and re-launching and labels; everything. Joe: Were you successful out of a gate on the first SKU that you developed? Leigh: Not quite. Yeah, I think it's only until the third SKU that we're actually making some money. Joe: On the third one, so the first two failed. How much money do you think you lost? I guess we'll say it was lost even though there was a great gain in knowledge. How much did you invest on those first two SKUs before you had some success on the third one? Leigh: Maybe about 10 to 15,000. Joe: Oh goodness. Wow. Leigh: Yeah. Joe: And did you lose that 10 to 15 or you invested 10 to 15 and you just broke even and loss a little bit? Leigh: We invested in and then we keep it; well we still keep the product because it's still selling. It's just not like a home run. Joe: Okay. So the third one was a bit more of a home run if you will? Leigh: I actually put more time in it and I actually formulated a formula; as in I put my heart and soul into it so I guess it turned out great. [inaudible 00:14:45.0], it's unique and it's a very good product. Joe: And then you expanded to additional SKUs from there and at one point, and this was less than a year prior to us talking two years ago you decided to add another brand in a different category. And you did it under the same seller account which so to the folks listening now that's okay as long as you're selling off both brands. It's not necessarily okay if you hope to sell off one brand. It just makes it more challenging because people want the transfer of that seller account to go with the sale. With that second brand that you started, you had done some things that didn't make it as transferable and that was using a lot of local suppliers in the San Francisco area at the time. Let's jump to what we learned in terms of that process, building up to listing the business because folks we're in September of 2019 and that's for the folks that are listening to this five years from now we just closed the transaction in late August of 2019. But Leigh and I originally listed the business for sale back in January of 2018, right? We listed it and then pulled it and then listed it again and we'll get into why in just a minute. But some of the challenges on that second brand that made it tougher to sell were that it wasn't automated, right? You didn't have things in place to automate it so that somebody in Boise Idaho couldn't buy it because the result a lot of local suppliers and vendors. And you ran around the city and around the market's areas to pick up these products and package it and do things of that nature. And that made it partly difficult to sell when we initially talked about this listing it and did list it in early 2018. Most people at the time if you remember they were interested in the skincare line that even though the second brand was growing faster they were interested in the skincare line because of the automation and the recurring nature of it. I think that we had it listed for about three weeks and you called me up and you said Joe I just can't do it. I don't want to sell the business right now. Do you remember that conversation? Leigh: Yeah. Joe: Can you talk to me about why? What led to you moving forward with listing the business and then and then saying oh wait no I don't think I'm ready; what was going on in your life and in your mind at that time to make you ultimately make the right decision? I think it was a good decision for you. You ended up selling the business for almost twice as much. So it kind of worked out pretty well but what was in your mind at that time? Leigh: I think the reason I wanted the sell the business was because I had a brand new baby at time. And we're just doing too much at that time and I wasn't able to streamline the business. And we have the business listing and going through the financials and the process of the business and I just streamlined that you know what this is it not ready even if I turn over a new business owner will be just; it's just too much for them to even handle. I need to get my thing in order first and continue to grow it a little bit further. Joe: And we did just that. We had people that were interested. We had plenty of calls and offers that were just about to come in and you made a decision that again I supported and I think it was the right one for you. You were emotionally tired. You had a baby. You were ready to move on so we moved on but I think we both knew that it was challenging. There were certain components of it that made it harder to transfer. It wasn't automated. And the buyers were telling us that they liked one brand but not necessarily the other and can I buy just that one brand which was the skincare line. Fast forward; that's six months maybe, right? We ran into each other in Austin at Ryan's event down there. You were pregnant with another baby so you had another one on the way. Were you pregnant when you made the decision to pull the listing? Did you know what was coming or that hadn't happened yet? Leigh: No, that hadn't happened yet. Joe: It hadn't happened yet. For people that are over on our YouTube channel and actually watching this when you see Leigh speak and can tell she appears to be very young. She's in her; I want to…can I age you? Can I say you're…? I think you're in your early 30's, right? Leigh: I'm 34. Joe: 34, alright. So she could. So I'm down in Austin at Brand; what was Ryan's program? Something summit? Leigh: Brand Builder. Joe: Brand Builder Summit. Yeah. And I see Leigh in the lobby and I swear people she looks like a teenage bride; I'm sorry a teenage mom because you were four or five to six months pregnant, you were showing and you're very young. Now that's your heritage as we've talked about as well but you also use your own products which is what you sell. Leigh: Yeah. Joe: But it was great to connect and learn more about your story and how you learned from Ryan's program and course in some of the folks there. And we continued to talk and you continued to do the right thing which was respond to that second brand and streamline it with an eventual plan to exit. You learned a lot. You went into it going okay I'm done, I'm emotionally ready, I got to move on and then learned that maybe as an entrepreneur you want to plan to sell your business instead of decide to sell your business. And so you decided then I'm going to do some more planning. You streamlined it and we came out in late spring; very late spring of 2019 with a listing. Multiple parties were interested. We ended up with multiple offers and full price offers from SBA buyers. You had your tax returns in order. We ended up going with a cash buyer that was a very, very strong cash buyer that we accepted a tiny discount because it was cash. These particular buyers loved you first and foremost, and people when you are looking at the four pillars of a sellable business those being risk growth transferability and documentation there's an invisible that's one and that's the person behind the business. Leigh was very, very likable and connected very well with both parties involved. There is one gentleman that is the money behind it and then he's got a woman that runs everything for him. And you just connected with them very well. So I commend you for that. And then we went through due diligence. Were there any times in due diligence where they're going through the financial verification process where it was difficult or stressful or it took turns that you didn't think it would take or do you feel like everything went okay? Leigh: Everything went out great. I think because we picked the right buyer and they have done the process before. So it was just very smooth. It was a very easy transaction. We put everything in a folder like you created. I think you [inaudible 00:21:59.6] everything so we just put everything in one shared folder and they are able to find everything and they actually didn't ask for anything else. Everything was there. Joe: We talked about it at length. It's kind of funny. We picked the right buyer. There are multiple buyers. The others have been great as well but this one had a tremendous amount of experience in the Amazon space building a portfolio. There were times where they were so laid back. You and I were thinking, right? Leigh: I know. Joe: Okay, are we signing this as an asset purchase? Are we closing on Monday? But it worked out great. How has it been now two to three weeks out in terms of transition? Have you needed to spend much time with them in terms of them taking over the day to day operations of the business? Leigh: Not really. So it's been only three weeks and I think we only used three hours. Joe: Three hours. Okay, that's pretty impressive. Typically, folks, I think the language is pretty standard it's up to 40 hours over the first 90 days after closing and that's part of the purchase price and it changes depending upon the complexity of the business and the experience of the buyer. These folks are obviously very experienced. So good, we're done, it moved on. Are you talking with your mom about how you came to this country with less than $200 as a family and now Tai is an engineer doing incredibly well and you've with him invested in real estate, started an e-commerce business, sold it in high six-figure range. What's next for you? Are you going to take some time off? Are you going to plan out your next adventure? What are your plans for the future? Leigh: I'm going to take some time off and we're moving to South Korea just to explore the area and the country nearby, a lot of good food, and spend a lot of time with the kids, and I think this [inaudible 00:23:53.2] this time, not a business. Joe: You'll be back in the e-commerce space do you think in the Amazon space? Leigh: Yeah, definitely. It's a great business. Joe: Good for you. So you guys are going to sell what you've got here? You're in a home now in California, are you going to sell that home or are you going to rent it up and travel? Leigh: We're going to rent it, yeah. Joe: You're going to rent it. You guys are true entrepreneurs. It's really incredible; very impressive and a great story. I have no doubt, Leigh, that we will talk again someday and be on the podcast about your high seven-figure exit, maybe even get to eight figures and get over that 10 million dollar range someday. That would be a great success story don't you think? Leigh: Yeah, definitely. Yeah, always something that I wish just for, Joe: You've learned a lot. You've succeeded through sheer grit and taking risks and not quitting and not giving up. Do you have any thoughts or any advice that you can give to young entrepreneurs, immigrant entrepreneurs, female entrepreneurs in terms of what it takes and any pearls of wisdom that you could share with them in regards to being an entrepreneur and succeeding? Leigh: You know at one time I didn't; I knew it was possible but we just don't know how. But if you continue working towards what you want and just focus on it like knowing that it's possible and you do something and you can do it. Just keep looking towards it and don't quit. I mean if one part of it doesn't work it doesn't mean that the whole business doesn't work. Give it another try and get a side hustle or do something if you want your life to be free from a job or from a place. Joe: Leigh I could tell you it's been an honor and a privilege working with you for the last 24 months. I'm so proud to see you achieve your goals and glad to be in at least a little bit a part of it. So thank you very much, congratulations, and I look forward to hearing about your adventures in South Korea and your travels around the world and the next eventual exit someday as well. Leigh: Yeah. Thank you, Joe. Thank you so much for all your help.  

The Quiet Light Podcast
Streamline Your Product from Concept to Market with Gembah

The Quiet Light Podcast

Play Episode Listen Later Sep 20, 2019 32:57


Product innovation, product creation, and product variance are the key lifelines to any Amazon e-commerce business. Unless you are very lucky, simply putting one product out there and hoping that pays off is not going to be sustainable to your business. Today's guest helps people working with overseas importers to navigate the realm of product development, sourcing, and all that any e-commerce business owner needs to achieve success and save some money in the process. Zack Leonard became interested in product design and importation after starting out as a consultant and working in operations and strategy. His interest was piqued when he started delving into what goes on in product manufacturing. Zack started to research and test what was missing in the market. What started as quality control team on the ground overseas has grown into a full-service product innovation platform that brings in experts all along the product creation, development, and delivery chain. Episode Highlights: How Zack got started in manufacturing and the story of Gembah. Zack walks us through a case study of a client Gembah has helped streamline product design and delivery. How Gembah is able to shave off thousands and create value for your business with his services. The design process their teams go through with clients. How relationship building is essential to the services Zack offers. How Gembah's consolidated shipping tactics help clients. The process is for new product manufacturing launch – goals for an awesome product. Mutual nondisclosure steps taken by Gembah and their clients. The importance of visiting the factories and making that culture stop overseas. Transcription: Mark: Joe as you and I both know product innovation product creation and variance on your product is one of the key lifelines to any Amazon business. You can't just launch a product or if you can you're very, very lucky. Most businesses don't just launch a product and live with that forever. You need to be able to come up with new products to feed your audience, to feed your; complete your customers in some way. Then I understand you have Zack Leonard on who his company helps with just that; product creation, sourcing, reducing COGS. Tell me a little bit about the conversation. Joe: Yeah. Zack is from a company called Gembah and he came to us through some people that have bought some sizable businesses with us. People that I would say are smarter than us and are in the e-commerce world working with Chinese manufacturers developing new products, sourcing new products, and just focused on all aspects of importing from I should say overseas. It's not always China. But it was a fascinating conversation because a lot of people that we talked to whether they're buyers or sellers want to expand their product line. A lot of conversation that you and I have with entrepreneurs we repeat over and over it's not just about the top line it's the bottom line and you shouldn't just drive revenue and not focus on reducing your cost of goods sold or repackaging or stop shipping things by air and do it by freight things of that nature. Zack's company focuses on all of that and it's right there in Austin, Texas and he just goes through all of it here in the podcast and it's fascinating. I think a lot of people are going to say where the hell was this guy when I started my business because you're going to want to use him and similar services like his. Mark: You know I was just talking to somebody right before you and I jumped on this call here where he had an idea. He's a consultant on a lot of different things and he was asking me about product packaging and Amazon businesses whether or not there would be a market out there from amazon sellers who want to save some money on their packaging and maybe getting better rates from Amazon in that regard. And I tried to explain to them that yes people are interested but in the Amazon eco-space, there is this element of there's so many opportunities to either cut costs or grow revenue. Most people are focusing on this; the 20% that's going to have the 80% effect, right? And so if you can hire somebody like Zack; if you can find a company like Zack's that can come in and take care of maybe the other 80% that you're ignoring because you're simply too dang busy with all the other stuff that's on your plate that can be a really key win for your company. Joe: Yeah I think it's an opportunity to at least listen to it have a conversation I think that; you know I asked him throughout this is not, by the way, a pitch for his services. I asked for golden nuggets all the way through. What are people doing right? What are they doing wrong? What would you advise them to do? How can they cut their own costs and things of that nature? So I think it's going to help people if they're in the e-commerce world now and it's an opportunity. You could talk to him at the end. We gave out his information. It's Gembah.com G-E-M-B-A-H but listen to it, it's fascinating. Some of the tidbits he gives throughout the entire podcast are really valuable. Joe: Hey folks it's Joe Valley from Quiet Light Brokerage and today I've got Zack Leonard on the line with me from Gembah. Zack welcome to the Quiet Light Podcast. Zack: Thanks, Joe. I'm really excited to be here; excited for the next 30, 30-ish minutes to talk more about what we do and a bit more of our background. Joe: Let's jump right into that. Tell us about what you do, what Gembah is, and who you serve. Zack: Yeah. So I am the founder and president of Gembah. We are a product innovation platform. So we help businesses both e-commerce Amazon and promotional products companies and retail brands create and manufacture products. So we have a team of engineers, designers that help more with the product innovation side of things. So helping bring ideas to life through sketches, design, whole renderings, CAD drawings. And then we have a team in China that focuses on the manufacturing once those collaterals for your projects are done; for those cool products that are you trying to make. We turn it over to our team to help put it out to our factory network which is over 500 now. And then once you're into production we do a bunch of quality control measures and really look at it as if you are physically there in the factory yourself to take photos and videos along the way to make sure that we're scrutinizing the way that you would not a third party necessarily. Really we see ourselves as a partner in crime in that sense and then once everything's ready to go we help with the logistics as well. So really a turnkey operation to make sure that you can get these cool products to the market in a very fast manner. So typically we can get them out in like three or six months. Joe: Where the hell were you when I was in the e-commerce world dang because I needed you? Zack: Actually during that, I keep hearing that but we're here now. Joe: Yeah, I actually; two different e-commerce worlds, first for me it was supplements; digestive health supplements that was US-based. But we had another; my wife had a different product that we manufactured in China or she manufactured in China but we had no idea what we're doing. So I love this subject and I think there's probably a lot of people that are listening going oh my God where has this guy been? So tell us that, where have you been? How did you get started doing what you do? What's your background prior to Gembah? Zack: Yeah, so it's actually unrelated completely. I started as a consultant many moons ago; my prior life. And really that helped me organized chaos and kept me that operational and financial way of thinking. And I moved into a role where I was running the Texas markets for a company called Instacart which is same-day delivery. And you get to see explosive growth and I was employee I think number 40 or something like that so moving a market from zero to doing seven-plus figures in a week in GMV which is hiring nonstop. Basically we have to hire 75 to 100 people a day. It is nuts. Joe: Wow. Zack: Yeah and then from there I moved into a strategy role at a company called Dropoff which was focused on more than just grocery delivery but more to same-day courier delivery. And while I was there I started to pick an interest into manufacturing side of things; it always, Show How It's Made always resonates with me. I like to watch that show. And then I met a couple of people that were into the manufacturing. One of them owns a pet products company. And he really opened my eyes to what really goes on into that. And the whole time I was thinking man there's really a problem that was on for a product company to try and find a good resource to really make products overseas especially. So I started doing a ton of research and then I started to really just test this theory out of what is missing in the market out there. And it started off as really just trying to be like a quality control company seeing like how we can help and we've just been like a team on the ground overseas. And as we continue to grow over the last couple of years we've started to say okay so just being a; there's tons of companies out there that do this already. What is the it-factor for Gembah? It is really offering that full-scale design plus manufacturing offering where we can take something from idea all the way through the entire process. And the reason for that is I've seen a couple of my friends go through that process and they work with a designer maybe and then it's kind of disjointed. You have that experience where you go in the designer and they don't know if they can actually get that product manufactured. They go to the manufacturer and they say okay well what do I have to change? You can make a mass scale production here. Then you have to go back to designer and designers are charging them and then the manufacturer says well that's wrong. This whole process is just kind of just not straightforward. And so what we're trying to do is bringing experts along the way at each different part of the cycle so start off with the product design part of it and have experts that have made products and manufacturing at full scale manufacturing before and then sync them up with the factory so that you don't have that lack of communication; that gap in communication. That's resonating really well especially in the Amazon space. We've started to even expand our offering beyond just the product design into more of a research-based company to help with; you know there's tools out there like Helium 10 and so but we have a team over there that can help really expedite that process and enhance the Helium 10 experience. Joe: So expand, you mean expand beyond their current set of SKUs to a wider product line; is that what you mean by expand? Zack: Yeah, so let's say that you have a search term that you find that is really hot right now. There's a lot of investment that could go on into making a product completely new from scratch or incrementally innovating and paying some high design fees if you don't know what you're doing. What we can do is actually say okay you find this hot search term let's go talk to our factory networks and find out what the latest and greatest technology is for that search term and find out a product that isn't on the market yet and then you just go sell it, right? And we've done that successfully now for a couple of our customers and they actually have a seven-figure product now because of our research. Joe: That's amazing. Let's talk real-life examples if we can without naming names or products or anything like that but can you walk us through a relationship that you have where they've come to you, met with you, sat down with you and your team and what you did for them in terms of helping them design and develop the product and expand and find those manufacturers and so on and so forth. Zack: Absolutely so there's a customer that we have that's an eight-figure seller now and they came to us with a couple of issues. One is they're one of those companies that acquires a bunch of other smaller sellers and tries to roll them up. And so a lot of those sellers when they sell they made it from their factories on Alibaba or they may have gone over and met the guy in a subway or something like that and they're taking those guys at face value. Well first thing that we do with them is help optimize their supply chain. So if they have a bunch of different companies we're helping them really understand are they getting the best pricing, are they scaling the correct way, or maybe if they have similar products are we able to condense them into one single factory or maybe two factories instead of three different factories that they have. And so when you talk about that you're talking about giving them buying power. You're talking about giving them scale at the factory. I mean able to shave off like 20 to 30% of their product cost so at their bottom line we're talking; you're adding a ton of revenue or saving a ton of cost to their bottom line so that's kind of the first thing we did for this company. The next thing we did is… Joe: Pause right there just so that people understand and I maybe I don't need to do this because the audience is incredibly smart and adept but if you're selling; simple math 1,000 units a month and you're saving a $10 product cost. And correct me if I'm not getting this right Zack but $10 product cost and you're shaving off 20% that's from manufacturer to FBA in this case $2 per unit or $2,000 per month what that does everyone is that adds 24,000 to the bottom line and if your business is worth 3, 4 times that's going to add $7,500,000 to the overall value of your business when you eventually do exit it as well. So we're always talking about it's not the top line that only matters but working with some of it Zack and improving that bottom line and the efficiencies and the profitability; that's what really drives value. It's not just the top line. I'm sorry to interrupt but keep going. Okay, so you're working with this particular client to reduce their cost of goods sold and streamline and go on. Zack: That's right. So that's kind of the first set of operations that we helped them do. The next set is they identified a bunch of SKUs that they want to add to their brand or add to their existing brands. The first step is if they want to just white label a product because they see how we've been able to give them better pricing they'll come to us and say hey I just want to go white label this, I found a hot product, let's go find it. They set a price target and the quantity and 9 times out of 10 hit that price starting in quantity and get them adding SKUs; adding value to their overall brand, diversifying their brand, giving that perpetual continuous flywheel of bringing out new products that are really reasonable clip in terms of time. Like I said it's like three to six months. Joe: And they're using a software like Helium 10 to see what kind of sales are already occurring. They know that that particular product is a hot seller. They're just going to jump on the bandwagon so to speak? Zack: Sometimes yes I think they also have their own proprietary software that they use. Joe: There's the Jungle Scout, there's the Helium 10, there's a lot of things out there that can help with it but that's what they're doing is to research goods; okay this is something that sells well? I'm going to go ahead. Okay, I got it. Zack: And if they want to differentiate from that then they'll come to us and say okay I want to make a new or incremental innovation on this product. I looked at maybe some of the reviews or I have some sort of test market that I go out and look at and say hey what do you think about this product and they give some feedback and then they say I need to make X Y Z enhancements on a certain product. Our team will design it really fast. Usually we get those designs back in about a week we. And then we go put it out to our factory network and then they're able to again get on that flywheel of creating new products in three to six months. So obviously it's just a straight sourcing white label gig that can take a lot less time. That can take like a month maybe to get a product out to market. And then if it's more of a design-focused project then it can take like three to six months. Joe: Okay, and the designers are industrial designers doing real 3D renderings, things of that nature? Zack: Exactly right. So our process really starts off with sketching. So we'll do two to three sketches of each concept based on a conversation or a full project kickoff we have for each one of the SKUs and from there we then focus in on getting to that final rendering and then we'll then prepare you and enable you to have the real blueprints of the product; so the CAD drawings, all the build materials, all that stuff you need to really look like a professional when you go and start sourcing overseas. One of the biggest problems I see with a lot of sellers is that they try and go talk to these factories on Alibaba and they go and say oh I want to make X Y Z changes to your product not really giving them that collateral and saying these are the exact changes I want to make. And so the factories know that you're a fish in that circumstance. They know that they can take advantage of you. You go to them with a design sheet; full build materials, a full CAD drawing to show them exactly what you want, they're going to take you a lot more serious. And so what we're really trying to do is prepare you for that conversation whether it's through us or whether it's on your own factory network but we want to make sure you look like a professional. You can start getting better pricing because of that. Joe: Okay. So if I was the person that had the e-commerce store or Amazon business or both I can choose. I can take your renderings and go direct to my own manufacturer or I could have you bid it out to your manufacturers as well. Zack: Yeah, if you want to. We prefer that you build it out with our factories obviously. We tend to have better pricing than the average Joe. But if you want to go off on your own we're more than happy to do that. Joe: Yeah, so let's say that I hired you, do the relationships with your manufacturers transfer to me? Do I get to work with them directly or are you always in the middle? Zack: Typically if you're going through us to manage it you're using us as your face in China or Vietnam or India or wherever we're doing business with you. And the reason for that is because the relationship building is so important as well as we provide the quality control. So it's something you just take off your plate. You don't have to worry about it. You don't have to fly over to China. We just handle that relation for you. We're going to show up at the factory, we're going to build the relationship, we're going to constantly go to bat for you, try to get better pricing, make sure that if your factory is getting behind or they're starting to lose scale you can start having a conversation about either bringing you to the next level factory; the higher level or starting to scrutinize the build materials that they give back if it's an assembly factory and say hey maybe this component that you're sourcing you're marking up too much let me go find a different factory for that individual component and get it cheaper for you. So we do that a lot of times with packaging for example; if you go to an assembly factory they're going to upcharge the packaging. But we have the packaging factory work it that. We can compare pricing to make sure that your assembly factory isn't up charging you. Joe: Yeah, every dollar counts again to that bottom line. I had someone on the podcast a few weeks ago; folks if you haven't heard it somebody bought a business from Quiet Light and within a few weeks they did what Zack is talking about which is exchange out one part and get another part. I think he saved something like $4 per unit and per SKU and they sell thousands on a monthly basis. It was just a tremendous instant equity to his business and overall a bump in bottom-line revenue as well or profit I should say. Do you also do consolidated shipping so that if you've got three or four different clients that are manufacturing from different facilities can; do you do partial container load with different folks and reduce their overall shipping costs as well? Zack: Absolutely if they have factories that are located in essentially the central part of China that goes to the same port we absolutely can handle that. We're doing that right now with one of our customers actually. They have three different factories after three different products and they're trying to fill up a 40-foot high container and they want to make sure that we can make it happen for them and that's something we do pretty easily. So yeah we definitely do that. Joe: Educate me. Make me sound smarter than I am. Is it LTL less than container load is that what the acronym is? Zack: LCL, less than container load. Joe: LCL. Okay, thank you. Thank you very much. Alright, I'll try to remember that. I'll get it wrong the next time we do this and people are going to go, God, Joe you just can't get that right. But I don't do what you do so it's okay. I don't need to know what you know that's why people. Alright, so the design aspect going back to that again, how does somebody approach you? What's the ideal situation; is it do you have a form on your website site, do they just come to you and they have a conversation with you, how does it start, how does it work? Zack: Yep. So we have a form on our website which kind of gives you just the basic Name, Email, Phone, What you're trying to make, and then we'll have a conversation with you about what you're trying to make and we'll start the conversation with understanding if there's patent issues or some like that so that we can have an understanding if there's any legal obstacles we have to overcome. After that, it's really just talking with our industrial designer to pull out every information from you that they need to do their job which is who's your inspiration, what's your end-user goal, all the stuff you want to have in terms of making an awesome product and then we go to work. I mean we try to make this process as simple and easy for anyone who wants to come interact with us. Joe: So when we do valuations at Quiet Light which I hope we're doing well in advance of somebody exiting their business so that they get more value. Oftentimes people say well I don't really want to share my information with you until we have a nondisclosure agreement on file. Will you send that to me? Do you start with a nondisclosure agreement on file because you've got an awful lot of information about somebody and you can decide to go into the e-commerce business yourself? Zack: Yeah. We won't have a conversation with you until you sign a nondisclosure because of that. It's mutual. We make sure that all the IP is protected; all the conversations are protected because our business is really secretive, right? So that we make sure that everything is completely sound in terms of legal and protection for the IP. Joe: So theoretically if I decided to work with you, do I really never have to go to China? Zack: Never. I mean we encourage you to because it's always great to meet the factory and our team. But in terms of like reality, no you don't have to. Because we have someone who's going on your behalf showing up at the factory doing pretty much everything that you would do and they understand the culture because they're locals. Joe: You know we had Dave Ryan on the podcast and he's from EcomCrew and a big part of his contribution to that is manufacturing in China and he's an expert at it and his wife is actually from China originally and he lived there for a long time. And he talked about the benefit of that relationship. I've heard people talk about it when they go over and they meet the manufacturers and they go out to dinner drinks and drinks and drinks and drinks as understand. It changes things. They're willing to give you perhaps better pricing, better terms, things of that nature. Do you fully replace that or should a business owner also; it's still your relationship with the manufacturer but should they get over there as well? I mean what do you; I mean you said you think that or you think that they should go over but truly they don't ever have to. What's the benefit of them going if it's your relationship with your manufacturer? Zack: Yeah there is a business culture called Guanxi in China which is exactly what that is. It's basically how they operate in terms of the business language and how they operate from the business culture. And what they enjoy is the face to face interaction. There's a lot more conversations that can be had. You can learn about their family. You can talk about what kind of food they like to have, all that kind of stuff. There's a lot of value that comes out of building the relationship and like you said they'll start to give more concessions. There's a ton of people going to them every single day on Alibaba or in person that wants to do business with them but they value the people who are there for the long term and the people who really make an effort. And that's because that's just how their culture is. So while you don't have to do that because we're taking care of that we definitely enjoy, recommend, whatever you want to call it, you personally as the business owner of your business going over there. Maybe it's not every year; maybe it's every other year, maybe if you want to go there every six months, whatever it is we help facilitate that. So if you show up we're going to take you with our team over there. So you get to meet both our team which is also a part of it as well going to the factory. So yeah we'll take you straight from the plane to the hotel you choose. If you want to stay in our place you can stay at our place. And then from there, it's going to the factories. Joe: I love that. That's great. Zack: So you get to meet our team, see our office, if you want stay in our apartment we're more than happy to but really we give that white coat service in terms of making sure that you again look like a professional and look great in terms of the culture aspect over there. So we're just bridging that gap. Joe: That's awesome. It's standard business stuff and that's why we do video in addition to the audio on these because it's; look we can't meet everybody face to face but it's great to be able to see the whites and odds and talk to them when we talk to people all over the world. Talk to us about what are the biggest mistakes; let's say somebody doesn't want to use Gembah but educate them, help them, what are the biggest mistakes that e-commerce product owners, and marketers, FBA owners, what are they doing wrong at a dramatic level? Zack: That's simple. I think the number one thing I would take away is going to Alibaba unprepared. And the reason I say that is because Alibaba did a great job at bringing the factories to mass market. But they don't do a great job of explaining how the process works. And so there's a lot of things that you can go straight to Alibaba and get wrong. So I'm sure you've experienced this or maybe people; your audience has experienced this. We go to Alibaba, you ask for a price quote or something, you get a sample and then they change the price. Or you ask for an iteration of something they give you a price and then they make the sample and it's completely wrong. Or you order a product and then it's completely defective before you come back. I mean again this is just a software platform into a process that has been going on for thousands of years, right? Software is not going to necessarily overcome the hurdles that exist continuously in manufacturing which is defective products, building that culture, and building a relationship. So those are the three things that Alibaba really doesn't fix. And so what I would recommend again is to hire someone locally to fix those problems because there is a culture gap. You do need to build a relationship and you need to make sure that your products are not coming back defective. So those are the three things I think that are the most important in terms of doing business overseas that most people overlook. Joe: And what is the simplest thing somebody can do to reduce their costs? Zack: It depends on which part of the process they are in. So if they're; if you're talking about building something from scratch it's going to the factories and getting multiple bids with an actual blueprint. Like I always use the analogy of building a house; you wouldn't build a house without an architect. You shouldn't build a product without a designer and an engineer. You're just going to cut corners. They're going to take their interpretation of what you're trying to make and their interpretation is let's make this the cheapest way possible and charge the most they possibly can. Joe: It seems logical when you put it that way. Zack: Right. I mean who wouldn't do that? It's the same thing when you're building a home. If you go straight to the builder and you say I want to build a 2,500 square foot house. Okay, I'm going to build my interpretation of that and I'm going to put it up as fast as I can and as cheap as possible. Why wouldn't they do that? That's the way that we approach it. Joe: Okay. Any tricks or tips or advice in terms of shipping which is a big cost to freight when people are shipping products from China to Amazon or to their own 3PL or whatever the case might be; any tips there? Zack: Yeah. I think again always get multiple bids for that and then always make sure that your compliance is in order especially if you're building a new product. These products have never been out in the market before. There's a ton of compliance measures that need to be taken to make sure that they're labeled correctly. Like for example if you're selling a children's product. They need to be tested. They need to have a CA Prop 65, ASDM testing, a bunch of other testing that needs to happen and be labeled a certain way. If it's intended for infants it need to be choke; make sure there's no small parts that can choke them. They need to be labeled on the packaging as well a certain way. So those are all things that if you don't do those correctly they can get flagged at customs and ultimately turned back. And the factory is not going to reimburse you for the mistake that you made in not going to your compliance in order. And so that is a business killer. So that is the number one tip I can give to someone in terms of logistics and compliance is make sure you have all that in order before you bring a new product into the market. Those are all things that we help do obviously. Joe: Good advice and you do that again but what the heck is Gembah? How did you come up with that name? What does it mean? Zack: In Japanese Kaizen manufacturing theory there's the word Gembah which means the place where value is created on the manufacturing floor. So that is where it's based off of. In Chinese gembah means let's do this. So it's kind of a dual meaning both from the Japanese manufacturing and then the fun side which is gembah. Joe: Very cool. I got it. You just mentioned manufacturing; I want to go back to something you said earlier which was your manufacturers in China or Thailand or wherever they may be you named a few countries. How difficult is it now in this economy and this environment with all the trade wars to find something that's being manufactured currently in China and get a quote on their factories in Thailand and the Philippines and so on that can do the same thing? Zack: Yeah that's a great question and we get that a lot now from our customers and I think there are some products that are more easily transferred to a different country. If you're talking cut and sew apparel for places like Vietnam, glassware you can get in India pretty well, if you're talking injection molded items it's starting to pop up in Vietnam. You just have to make sure that you understand they move a lot slower. Especially in places like Vietnam, Cambodia, Philippines, and the reason for that is because they don't have the raw materials that places like India and China do. So they're importing almost everything from places like China, South Korea, India to get into their factories. So that adds time to the lead time of you making a product. So most Amazon sellers for example don't have the luxury of waiting 60 to 90 days to get a product into their hands of their consumers whereas these big e-commerce brands who spend a lot more time and money on R and D and come up with new products maybe 12 months in advance they can take that luxury and move their production over to different countries. So that's what you're seeing like the Nike the Adidas of the world moving into Vietnam or moved a lot of the production into Vietnam because they can do that. They have the operational capacity to do that. Joe: So for the six, seven, eight-figure brands that we know and we talked to is it worth it time-wise and financially; are they saving costs in terms of cost of goods sold or are they just comfortable knowing that they're not going to have to deal with any trade war issues in the future? Zack: I think that's a true business decision. While I would say the prices that we've seen between India and China specifically are not competitive. China's way more cost-friendly in terms of like apples to apples comparison on the exact same products I've seen 5x in India. Vietnam is pretty competitive because everyone is starting to knock at their door. So I've seen garment and apparel prices go up by 4 to 7% just cost of good before you get to the shipping and logistics side of things. So they're smart. They know that everyone's trying to come to them and their production lines are moving at a high clip now. So I think it's really you have to understand the entire landscape of your true landed cost and lead time before you actually make that decision of moving production over to Vietnam because it's not as easy as it sounds operationally. Joe: Right. Makes sense. Are you renegotiating with any of your Chinese manufacturers to offset the tariffs? Zack: Of course. Joe: They're okay with that; what are they like? Zack: Yeah, I mean it's a geopolitical issue that's going on and they don't like it either. Whoever side they end up taking is on them and whoever side we as Americans take is on us but there's certain things you can do to help them share the tax burden. There's certain things you can do especially with molds that you can start recouping your mold costs if you want to create some injection molded item. That's the kind of stuff that we do and we're talking about making you look like a professional. These are the things that we are bringing to the table when we start the negotiation process. And so because of the geopolitical landscape that we have this is part of the conversation now. Joe: It sounds like a really, really important conversation to have. How do people find you, how do they get started, that kind of thing? Zack: Yeah. So the best approach would be to go on our website www.gembah.com G-E-M-B-A-H.com and fill out a form and we'll be in touch with you as soon as you fill that out. Joe: Geographically where are you located? Zack: So we are headquartered in Austin, Texas; the barbecue capital of the world. Joe: And all you have to do today is put it on your dashboard because it's; I've talked to people in August here right so it'll grow right there. Yeah, I love Austin; lots of folks down there that we work with. Zack: Yup, and then our office in China is in the southern part in a place called Dongguan which is close to the Guangzhou area; it's the manufacturing capital for the south. Joe: So you get the grilling capital and barbecue capital and the manufacturing capital. I think the folks here in North Carolina may argue with you about the barbecue capital but I'm for me. Zack: Yeah we all love your sauce; I've come to learn that it's a saucy type of barbecue. I prefer the sauceless more of a dry rub which fits me well in Texas but I still like the Carolina barbecue. It's great. Joe: I won't say I disagree. Alright man, it's been great having you on the podcast. I'm looking forward to hearing some great successes from some of your clients who I know. I know a few that are working with you; people that have bought businesses from Quiet Light and sold to Quiet Light working with you now too. So it's been great having you on the podcast. I look forward to having the audience reach out to you and work with you and learn and get better pricing and better products out in the future. Thanks for your time today. Zack: Thank you, Joe. I'm really, really glad I could be here. I appreciate it. Links and Resources: Gembah Instagram Facebook

The Quiet Light Podcast
Investing in a Web-Based Business: Mistakes and Best Practices

The Quiet Light Podcast

Play Episode Listen Later Aug 28, 2019 39:13


Today we welcome Chuck (iii) Mullins, we are talking with him about his background, experience, his algorithm knowledge, ask him our rapid-fire questions, and pick his brain about the business. Chuck built his first profitable website back in 1996 when he was an impressionable 18 years old. He studied computer software engineering in college, which taught him the skills to analyze search results and implement strategies. Throughout his career of developing, managing, consulting, and investing in internet-based companies, Chuck has developed a keen ability to spot opportunities and develop strategies that lead to growth and profitability. Episode Highlights: Chuck's background, entrepreneurial experience, and success stories Web-based business ups-and-downs The difference in long-term cash flow from web-based businesses and get-rich-quick cash businesses Chuck's favorite web niches Chuck's favorite audience member (who is also a buyer) Websites that are more/less desirable The importance of knowing your Profit and Loss Biggest mistake buyers can make Best practices for buyers and sellers The importance of understanding the business and doing your research Quiet Light's vision and how we can help you Transcription: Mark: Joe, one of my favorite things about working with team Quiet Light is some of the camaraderie that we have with each other. The fact that we get to tease each other a little bit, egg each other on, but also help each other out; talk about deals, collaborate on our transactions because everybody at Quiet Light has so much entrepreneurial experience that it's like having this built in board of advisors for every single thing that we do. And one thing I think you and I need to do a better job of; I know we've had each of the advisors on Quiet Light at the Quiet Light Podcast. I think we need to bring them on a bit more so that others can enjoy some of the experience that they have. You had Chuck on recently and grilled him a little bit in this episode. Joe: I did. I want people to get to know Chuck for the fun experienced entrepreneur that he is. And so I mixed it up a little bit. I had some fun with him we did some rapid-fire questions. I intentionally; just let me get this upfront and out there for the audience. I intentionally mispronounced somebody's name. I butchered it intentionally. Again I did it seven or eight episodes ago and I got some email saying I think the person you're trying to find is so and so. I did it again. Mark: Same person? Joe: Same person; yeah, if he's listening. Mark: He needs to start listening to the podcast especially my episodes because frankly, I've got a leg up on you. Joe: You have overtaken me for the most popular episode on the Quiet Light Podcast. I will overcome that because I've got some great ones planned coming in here soon. Chuck is a fascinating individual. I've known Chuck for a long time and he's really, really smart when it comes to his entrepreneurial acumen. It's almost annoying to be honest because with a model that we have at Quiet Light Brokerage; we don't have employees, right? No one's an employee of Quiet Light Brokerage. We have a lot of entrepreneurs who work together in sort of a collective group. Well, one of the benefits to that is all the advice and feedback I'm able to get from people. And one of the most annoying things is all the feedback and advice I get from everyone. And sometimes; Chuck especially, Chuck is so thorough. What's the term he gives to himself? Whatever it is he just hyper focuses on the most minute little detail and I fear asking questions sometimes because of the level of detail that he's going to give to me in terms of what I have to fix and correct in a document that I'm creating. Mark: But at the end of the day even though sometimes it can be overwhelming like come on you think I'm doing everything wrong evidently because I keep getting his feedback, it's always on point. And I don't think I've ever received feedback from them where I look at it and say this is not worth considering or looking at; so a smart, smart guy. I'm looking forward to it. What are some of the things that you discussed in this episode? Joe: Well we talked about some of; he's got almost three years brokering now and over 20 years as an entrepreneur now. And he talked about some of his experiences; the pros and cons of A. being an entrepreneur, some of the things that he's found that certain buyers do better than anyone else, and how he wants new buyers to adopt that style, and then the biggest mistakes that someone's selling their business can make as well. And it's fascinating as I just said he's got 20 plus years as an entrepreneur. I'm in the same boat. You're in the same boat. So collectively the team at Quiet Light I'd say what 250 years of entrepreneurial experience that we share with our team with our clients and I think it's fascinating. Chuck is just the tip of the iceberg here in terms of the experience. So it's exciting to share this with him and we had a lot of fun. So that's the key to this one. Mark: Fantastic, well let's get to it. Joe: Hey folks it's Joe Valley from Quiet Light Brokerage on the Quiet Light Podcast. And today we have the most special guest. His name is Chucky. Now that's not what we call him. It's Chuck. I use his personal email address. I'm not going to tell you at what you can all haul in the mail anyway. You know his e-mail address its Chuck@QuietLightBrokerage. Chuck Mullins, welcome back to the Quiet Light Podcast. Chuck: Thank you, sir. Thank you. For any that's specific it's actually Charles Clifford Mullins III. That's my D-I-I-I. Joe: You know I am from New England I can't talk with a British accent; it's something about us. Chuck: Well I can't either. Joe: Alright. Well listen you know the routine. Normally on the podcast we ask people to give their own background; who they are, what they're all about so that we're not sounding like we're reading from a script which we don't. We wing these things. You know that. Our audience knows that. But before we get into that I want to ask you a series of rapid-fire questions; the first one so that people understand and establish your experience here at Quiet Light Brokerage, how long have you been brokering at Quiet Light Brokerage? Chuck: About two and a half; almost three years. Joe: Almost three years. Okay. So let's start with…I've got a total of six questions. Number one; and you've got to give me a quick answer. Number one, who's your favorite broker? Chuck: Joe Valley. Joe: Good, good, good. Alright, if you were stranded on an island with me, Brad Wayland, and Jason Yellowitz and a rash floated by and they would only carry three of us; there's four altogether, who would you leave behind and why? Chuck: Jason Yellowitz, because he would be able to burn his stacks of cash to stay warm. Joe: And he carries it with him, is that what you're saying? Chuck: Inaudible[00:06:25.8] Joe: Jason I know you all listen to the podcast so everybody make fun of Jason. That's your job here. Alright, this is a really important question. Who is the better podcast me or Andy Youderainan; I mean in Andrew Youderian? Chuck: I would have to go with Mark. Joe: You are… Chuck: Hello? Isn't it you that people come up to the Booze and ask for or is it Mark that they come up and ask for? Joe: That's me. It's me. Mark doesn't go to Booze. Alright, sid you know Walker Diabel wrote a book; and a best seller book? Chuck: Have you heard about the second book that he wrote? Joe: No. He wrote a second book? Chuck: Yes. If you go to WalkerDiebel.guru you can check out the second one that hasn't been released yet. Joe: Okay, Alright. So this is a tough question. This is not a trick question. I want to know if you can answer this one. What's the name of Walker's book? Chuck: Buy Then Build. Joe: You got it. Okay. Alright. Chuck: How can you not get it? I've heard it at every conversation. Every conference I go to there's these three books that are just floating around that conference and I'm like wait a second how did that get there? Joe: And it's the bottom of every one of his e-mail signatures. One of these days you're going to dig way back into the archives when he was actually an actor and find a clip and we're going to change his email signature line somehow some way. Alright, so as you know historically Quiet Light Brokerage does not recruit brokers. I have conversations three or four times a week these days with people who want to join the team. But we, for the most part, don't recruit. We have as you know or Mark has as you know recruited a few starting with Amanda back in the day. She was the first. And I think Brad was also recruited. And yourself was also recruited. Of all of the brokers that Mark recruited; last question by the way, what was his best decision? Chuck: Probably Brad. He's been killing it man. Joe: Man and give yourself some credit Chuck. Come on. Anybody but you would probably be the politically correct answer but essentially you just threw Amanda under the bus. But fortunately Amanda doesn't really listen to our own podcast either. Alright, enough of this nonsense; let's talk about you and your experience. I know all about you but for the audience members, Chuck has been on the podcast before Mark had him on when he first joined the team two and a half years ago, three years ago. And the focus of that podcast was a tiny little bit about Chuck but mostly about Chuck's due diligence experience. And I think you had a list of was it 25 due diligence tools? Chuck: Who can remember? Joe: Yeah, a lot. And it's all; if you Google Quiet Light Podcast, Chuck Mullins, due diligence you'll find it. It'd be at the top of the Google search engine and it's great stuff. And I learned a lot when I did it. But I would say I refer most people out for due diligence; buyers that is to our friend Chris Yates at Centurica. They do a great job. Well, let's talk a little bit about who you are and your life experience and a little bit of your brokering experience now that you're three years into Quiet Light. So who the heck are you? Tell us about your entrepreneurial experience. I know that you started way back when you were in college, right? Chuck: Yeah. I graduated high school in ‘96 and I always wanted a computer but we couldn't afford one. So finally for college I needed a computer so I got a computer and started a free website on it's like Angel Fire or Tripod or one of these things way back in '96. And I remember just putting up some content and that is an online library for college students. And I remember somebody offered me like 10 bucks at some point to put a link on my website. I'm like $10 awesome, I'm making money and then somebody offers me like a hundred bucks and I'm like what $100? So then I was; this is before I even had a domain so it was like AngelFire/blahblahblah. I started thinking about okay we'll buy a domain and back then they were like thirty-five bucks. I was talking to my mom and I'm like mom I'd buy a domain and she's like you're crazy you shouldn't buy you know like you're just wasting your money and why are you spending all this time in front of the computer and then it just started growing and then somebody offered me a thousand bucks. And before you know it I was making about sixteen grand a month off of advertising back in the ‘90s. Joe: In college, right? Chuck: In college; yeah, and so I was just… Joe: That's a lot of Jägermeister. Chuck: And the Internet bubble ended up bursting in like the 2000, 2001 and all that money like dried up overnight. So I was like okay now what? So I had to figure out how to pivot and myself and two other guys; we had different businesses. We all pooled together and started a membership site. The first month with our membership site we made like 60 grand. It was just like mind-blowing like oh my God we're in college. I didn't have keggers I had like full bottle; like full bar parties. Joe: Everybody wanted to be your friend, right? Chuck: It was fun and we'd stay at like the Ritz Carlton for Mardi Gras and like just do crazy things. We rented like a ski chalet; it was like a 15 bedroom house on the slopes and I forget where it was bit we then brought all of like; we had affiliates at the time, all our affiliates to come and ski with us and so we had a great time. And at some point, I was making a lot of money and I didn't really know what to do with it all. I was definitely wasting my fair share of it. Actually kind of going back, my mom, the whole thing with her telling me I shouldn't start the business and this and that in 2003 I think it was about my mom and sister cars for Christmas. Joe: I wrote that down when you said it because I knew that. You told me the story about Christmas and your mom went outside and there was a big ribbon on a brand new car. I guess she's happy you bought that domain name, after all, isn't she? Chuck: Yeah. Yeah for sure and I do not usually tell that story so maybe we'll have to edit that out. Joe: No. No editing. Tell the story. Chuck: I made two giant boxes and I had my mom like a box of some keys and she sees them and it had Lincoln in it which I had a navigator at the time and she's like oh it's a scavenger hunt he put his keys in here and she walks outside and sees this giant box and just like; my mom doesn't curse and she goes oh shit and she runs outside gets ready to tear into the box. And I said wait, mom, hold on hold on there's a card on there you've taught me better; open the card. And so she opens it and it says to my sister and my mom is like inaudible[00:12:57.1] my mom's like…well my sister is like to me? And again I wiggle the keys in front of my sister's face and she's like what?! So she runs and dives in and my mom looks at me like what this like WTF and I'm like you're over there. Then she starts walking and then sees it like buried on the other side of the house in a big box and like runs over and dives in. We're in Georgia at that time at a family house and it was cold and she didn't have shoes on. It was a great time. I've got the video. One day I'll have to share with somebody but I don't know that I want to share it. Joe: What a great experience and a great thing to do for your mother and your sister did. Did your mother get the nicer car or was it equal to both? Chuck: I was actually going to buy them the exact same car and then I was talking to my sister trying to like make sure that it was the kind of she would want and I said well what do you think Mom would like? And she said well my favorite car is a Sequoia and I ended up; my mom a Lincoln Aviator and my mom's Sequoia. They're about the same price. I think my sister was a little more but I did get some grief about that. Also the night before or a couple of nights before we went to Walmart and I bought every single piece of cheesy add on part you could get and added it to the car. So I got like a fuzzy steering wheel cover, dice, a little light-up things that go on the rims, and just totally like made the car look as ridiculous as possible and told them in order to get it they'd have to drive it with that stuff on it. Joe: That's hilarious. So for anybody that's listening instead of watching if you look at my chin and Chuck's chin you'll see some gray; there're probably a little more on mine than his of course. His is more his cheek mine's dead on center of my chin that's because of age and life experience. So you had some amazing times Chuck out of college making more money in a month than most people in this country do in a year; all web-based business experience. It's not always wonderful though. Chuck: No, absolutely not. Yeah, entrepreneurship is ups and downs. We've gotten hit by Google so many times I couldn't even tell you. And most of them were just algorithmic. But I have on one of my big businesses, we had about 12 that were all doing the same thing and one of my partners had used the same email address in our Webmaster Tools account and somebody from the spam team I guess noticed and went in and just manually penalized all of our businesses. I think except for two because those were the only two that didn't have those email addresses. And just overnight it's like poof gone and it's just like oh it's heartbreaking. At least when it's the algorithmic type of penalties it's easy to kind of; well maybe not easy but you're going to recover from that. The manual penalties, we hired somebody who used to work in the spam team. They told us what to do. We did it. We just haven't been able to recover from that on those other sites. Joe: Yeah I know it's always hard. Google algorithm updates I think are getting a little better, a little easier to handle and manage I think ultimately. I always used to say this actually if you do the right thing the way Google tells you to do it, ultimately it's not going to hurt you; the algorithm updates. And I guarantee there are people out there shaking their head no right now because a good friend of mine, he built a great business, a great, great content site, and sold it and there was a an update recently. And the buyer, another great entrepreneur bought it and did have some negative impact. What they both know is that sometimes when Google casts a wide net some of the wrong sites get caught up in it and over time that does get corrected but it does sting initially, doesn't it? Chuck: Yeah. And I will say like the reason we got caught up in a lot of the updates wasn't because we were doing the things that Google tells you to do. We were gaining the system and we deservedly got caught for doing those things and we would adjust our technique and then regain. So like one of our sites had like 100,000 pieces of unique content that we were in Google index for like 30 million pages. Joe: Wow. Chuck: So like how does one do that? Joe: How does one do that? Good Lord. Chuck: Trickery. Joe: Well the grey in your chin has matured you to the point that I think you're beyond the trickery because you look at the long term cash flow and benefits of owning an online business now it's not just a quick cash anymore. At least that's the way I look at it; you too? Chuck: Yeah, absolutely. And you're talking about like the algorithm updates and I feel like there's been so many and that most of the really garbage sites have probably gotten taken out by now. I feel like, and maybe I'm wrong but now it's more of like just tweaking the knobs a little bit. So unless you're in one of these like fringe business models I tend to believe and I could be 100% wrong but I tend to believe that most of the major algorithm updates have been already done and then now they're going after I guess like medical websites and things like that. Joe: Yeah. The updates are far further I'm sure in between and in many cases not as severe. Alright so I'm going to throw a question at you. I don't know if I told you this story or not or if you've heard it. Some of the audience members might have heard it so I'm going to just test your algorithm update knowledge. And if you answer within two seconds then I know you heard the story. So I bought a business, I sold my business in November 2010; yada, yada, yada. People have heard this a million times, or at least tens of hundreds of thousands of times if they've listened to every episode and keep downloading everything. No we haven't done 100,000 episodes that's totally inaccurate. I can't do math by the way apparently. Alright so I bought a content site. I sold a great site. The content was amazing. And then I bought a piece of junk. I had 42 amazing days. I bought it March 1st, 2012. I had maybe 3 or 4 keywords on the first page of Google and then boom they fell to the bottom of page 1 and then page 2 and they were gone and I lost over a quarter-million dollars in the course of twelve months. What happened? What algorithm update was that? It was; again I bought it March 1st, 2012; I had forty-two amazing days. Chuck: Panda. Penguin. Joe: Penguin. Alright, you're close. We're going to have to throw that quiz out there. Everybody in the audience wouldn't throw that quiz out there for a price. Chuck's wearing a beautiful Quiet Like Brokerage…is that a polo shirt? Chuck: Yeah. Joe: We need to get some of those packaged up and give away prizes for that kind of stuff. Alright let's jump on to your Quiet Light Brokerage life; your entrepreneurial life, amazing ups and downs, a lot of great ups and you did some good things for family and friends. The downs, we learn from them and we try to take those lessons and make sure that we are really bringing great listings to market so the buyers are making good safe investments and the sellers of those investments can move on with peace of mind to their next adventures whether that's another business or retirement. In your history of transactions here at Quiet Light, is there any particular niche that you gravitate towards and enjoy more than another because as you said a ton of content and affiliate experience, but I think some of your larger deals have been physical product e-commerce sites. But is there anything that stands out for you? Chuck: Yeah I mean so my heart is in like membership sites. I love recurring revenue. I think everybody does and that's why the multiples are higher because of that recurring revenue and the predictability. So I would say that that's kind of where I'd like to be but my biggest sales have been around physical products inaudible[00:20:53.3] an outdoor sporting equipment one that was great. One that I really love that I sold like six months ago was a company that did custom-tailored suits. That thing it's like awesome. Who doesn't want to say they have a business that sells custom-tailored suits? Like it's just; I think it's got the cool factor. Joe: That's the amazing thing about what you do and what we do at Quiet Light is that we come to this role with a lifetime of experience that; I was talking with Walker and Brad about this recently that we didn't know it but all of our entrepreneurial life was preparing us for this role. And now we get to experience so many cool different business models. You come to this role with a ton of membership experience but custom-tailored suits and you're like that's the coolest thing. Who doesn't want to say they own a custom-tailored suit business? I need to buy a custom-tailored suit. I know who bought it and I can reach out to him. I know who he is too. Speaking of that I do want to ask a random question although its timing is not very random and you have to answer this. There's only one answer to this. This buyer listens to the podcast and he comments and he tells us about us sometimes when he's riding his bike. So do you have a favorite audience member that also happens to be a buyer? Yes or no? You have to say yes and you have to say his name now because he's a… Chuck: Sure. Mike Nuñez. Joe: There you go; Mike Nuñez, this is just a shout out to you. Thanks for listening Mike. Chuck: Well I'll tell you it shouldn't just be a shout out to him. If anybody wants to know how to be a good buyer and how to buy businesses they should talk to Mike Nuñez because he is 100% the absolute best buyer I have. And not like just in a sense of like the actual acquisition of the company. When he gets on a phone call and talks to the sellers he makes them feel like they are the only person in the world; the most important person like he's just so smooth and he's not doing it as like a ploy or a gimmick. He's just a nice guy and he really appreciates these people and the businesses they've created. And it's just he's really good on a call. Joe: It's the unknown secret that we tell all the time to buyers. Look, when it's a great business it's a great opportunity. There are going to be multiple buyers. And it's not always the most money or the most cash that gets the letter of intent. In some cases, it's the buyer that the seller likes the most. And being likable on those conference calls is critically important. Mike does it very well. Chuck: And one of my businesses; actually I think two of them that Mike purchased, the sellers actually said like I want to sell to him. Make him buy this. It doesn't matter; I mean within reason, right? The price; but they were willing to take less than somebody else because they liked him so much. Joe: Oh boy. Now if Mike's listening and he paid full price now he's going to be like inaudible[00:23:49.1]. Chuck: That is the problem because of course I did make him pay more than the other people but they were willing to take less. And what's funny is one of my sellers told him as much oh like I would have taken less from you and I'm like don't say that to him. Joe: In his heart, he was willing to take less but his checkbook and his head was willing to take the highest bidder as long as it was Mike Nunez. That's the key. In your experience both as an entrepreneur and as an adviser here at Quiet Light you've seen a lot of businesses that have come up for first they reach out to us for a valuation, they start thinking about an exit sometimes the day before they want to exit, sometimes months or a year or so in advance. What do you see being the biggest thing; most consistent thing that those particular entrepreneurs do wrong time and time again that there's just if there's one thing you could just like shout into the microphone right now to everyone listening even though some of them are doing it right, what are the majority of folks not doing that that you want them to do to bring more value to their business? Chuck: Silence question. Joe: Yeah it was a long one. I kept rambling on in my sentences because I could see you thinking. Chuck: Yeah. Joe: Maybe I should have asked a little more. Chuck: What's weird about at Quiet Light is we actually get so many great businesses to sell. People bring us quality things. So what are some of the bad things people do? Joe: Let me just get some stats behind that though; because it's true what we bring to market, it's great stuff. But the reality is Chuck if you look at my numbers I've closed 105, 106 transactions in seven years. People say well that's not very many but in order to close those transactions; I've ballparked the math and I've talked to 2,500 entrepreneurs. That's 2,500 valuation calls. Your stats are similar. What is that consistent theme that if you could speak to somebody that someday may sell their business what should they be doing? Chuck: Sure. So when we talk about like specific like product-level things like when people are just selling random shots keys that aren't unique in any way; those are really difficult to sell. When you have an actual unique product that's got some sort of a brand to it that's not easily knock off-able that there's a moat around it like that makes it so much more desirable to people and so much more valuable. One of the things I also see probably is just P & L's; having clean P & L's. Oftentimes people's profit and loss statements are just a complete mess. They'll lump, they want to save; I was just thinking about a specific one, but you see people are just lumping things in because they know they had a cost but they don't really know when it was or where it was and they just kind of guesstimate things and put them in the wrong ones. So then you'll see like really lumpy P & L's. And we always try to work with people to flatten those out and figure out where the real costs are. So that often takes a lot of time to just figure out what the true P & L is on a business. And for doing add backs; what's a real add back? We fight with people a lot on what's a real add back versus something they think they should be adding back. Joe: Yeah I want to just step in and shout out that there's no question I think that preparing your business for sale is the number one thing that people don't do. They decide to sell as I say instead of planning to sell. That means they work their tail off. They launch this business. They work like crazy against all odds. They succeed. And it's producing solid revenue and profit for them. And they just burn the candle at both ends and then the candle starts to burn out. And they're emotionally tired, they're frustrated, they're exhausted, and they wake up one morning I'm just not into this. I'm going to sell. I didn't know I could sell but it just occurred to me. I'm done. I'm calling Chuck Mullins. And at that point because they're tired; because they're emotionally worn out they need to sell because trends will go down. They won't do the things that they need to do to keep the business growing and strong and in great shape for somebody else to take over. And so at that point you get those P & L's and you're like yeah Excel is not really accounting software. Ideally Quick Books and Xero or one of the other so that we can run a historical P & L and do year over year trend analysis and look at the metrics. All that is really hard and then there's the commingling. So I'm going to just mention a podcast; not ours, somebody else's. EcomCrewPodcast247. Chuck as you know I sold Mike Jackness' business ColorIt last spring. And Mike is a bright guy. Mike knew exactly what to do as most people in this audience do. They know what to do. And the mindset that Mike had was simply I'll get to it someday. What happens is you end up chasing too many rabbits and that someday comes when you get exhausted and in his case, he had four brands under one LLC and three of them were really not sellable at the time that we decide to list the business. So what does that do? You've got four brands all in one LLC, tax returns commingled, and you're only selling one brand. What does that eliminate? Chuck: SBA financing. Joe: SBA financing; exactly. Is it required to get an SBA loan? No it's not to sell a business; absolutely not. We sold multimillion-dollar businesses without an SBA loan. But what it does do is it casts a broader net; buyers. And even some of those buyers; I've had it. Have you had buyers that have more than enough money to stroke a check for a multi-million dollar business but they use SBA? Chuck: Absolutely why not leverage if you can? Joe: Yeah, so that's I'd say number one. I'm in total agreement on the documentation. We always talk about that the risk, growth, transferability, and documentation; gets your numbers right, get those P & L's in great shape and it's going to help you learn about your business and set goals and then that passion may get reignited and you may do more in the business and grow it and have a bigger exit someday down the road. It's not that I don't love it when somebody calls me and says I'd like a valuation and part of that is okay, what's your timeframe, when are you ready to sell, right now. Not that I don't mind that; I love that if everything's in great shape. It's just tougher to sell it when it's not. They get a lower value, right? Chuck: Yup, absolutely. Having those four pillars and the clean books it makes a big difference. Joe: It really does. I think I'm in total agreement. Buyers or sellers of businesses, get your documents in great shape. The best way to do that, just call, email inquiries@QuietLightBrokerage.com, Chuck@QuietLightBrokerage.com. Reach out. It's a service that we provide. I mean what do we do Chuck? We help, help, help, and then keep helping, right? Chuck: Build value. Joe: Build the value. It's my; I've got a mentor that I talked to long and hard about all my business opportunities and in this particular one as we chatted about the model and what we do here at Quiet Light he's like well it just sounds like you're giving away all your knowledge for free in hopes that maybe they'll work with you. And I' like that's exactly right. We help first and we're entrepreneurs so there are times that we wish we got good advice and we were too young to listen or there was nobody around to talk to about it. And now we share that when it comes to business values and planning an exit. The number one thing you can do is just reach out to somebody. It's free. Talk to Chuck, he's got a ton of experience. Chuck: I'll tell you kind of in my entrepreneurial days if I wasn't going to be an entrepreneur I always wanted to be a consultant and help other people. And I never had like the actual desire to go out and build a portfolio and charge people to help them grow their business. But like you said I've been do this since '96. I've met so many businesses; a lot of focus on optimization and SEO and just so many things. And one of the things I actually like about is giving unsolicited advice. So when I'm on all these valuation calls I'm constantly asking people like oh have you tried this, have you thought about this? So even if they're not ready to sell I'm often giving people advice on how to increase their business. And even when I do have listings like I think of one and particularly like I give him so many ideas and then he did those and the business just kept growing. That actually came to bite me because the business grew so much that we ended up pulling it off the market after getting multiple full-price offers because it just had grown so much and he wanted to just wait a little bit and we're going to actually getting ready to relist that here soon. Joe: It's a good problem, right? I mean I've been in situations that you say it bit you but ultimately this is a long term play for us; it's building relationships and that person respects and appreciates you obviously because he's coming back for some of your entrepreneurial life experience and it's benefited them financially. It's going to grow the business and ultimately they're going to get a bigger value and tell people about what you did. So that was a little bit more about the sellers and the things that they can do and then number one I think we both agree, plan that exit; call somebody, e-mail somebody, get a valuation. It's not going to hurt. What about buyers; biggest mistakes that buyers can make? Chuck: Disrespecting somebody's business. So getting on a call and like; I'm trying to think of a of a PC term that I could use that's not a profanity, just talking smack about somebody's business, trying to negotiate them down in price, and like trash-talking the business. That doesn't work. At least not at this size but maybe it works when you're dealing with a couple hundred million dollar business or something. I don't know. But at these levels, people care about their businesses at least the ones we sell. Inaudible[00:33:38.9] and when you talk smack like… Joe: It's personal even at the 15 to 20 million mark. Mark just closed one just under 15 million. It's owned by an individual. When you're talking about a hundred million, yes somebody is up there at the top like their shareholders and the CEOs and COOs and all that and big-time attorneys are in there negotiating. It's not you're talking to the guy across the table that actually built it and owns it for the most part, right? So he cares about it. Chuck: He worries about it like he's had the baby. I mean you wouldn't believe how many people I've talked to; sellers that cry on the phone about their business like it happens a lot. People are deeply invested emotionally in their business. When somebody comes in and disrespects it for no reason other than they're trying to negotiate, it doesn't go well. You need to be nice. That's what Mike does so well. And I want to keep talking about Mike. Well like… Joe: Should we talk about Walker again? Chuck: He's about people and he's nice. Joe: Let's talk about Walker again then. Actually you're absolutely right. I remember being at the Rhodium Weekend Conference before you were a member of the team here at Quiet Light. Now he's up presenting and talking and I could swear in that environment and I used the word that begins with an A and ends with an E; figure it out, folks. Everybody's got one. And what's the secret to being a great buyer? And I said don't be one; as simple as that. I can see you out there in the audience shaking your head up and down. And that's exactly right. Mike is very nice, very kind. When I sold my business I had people that were well I remember one, in particular, ripping my business to shreds on a conference call; initial call and I'm like why am I even talking to this guy. I'm not selling it to him even if he gives me an offer over asking. And then, strangely enough, the last call, the person that ended up buying my business first thing he said is thanks for creating such a great site. Your products have helped people exactly like me. By the way I took stuff like this and I ran the Boston Marathon actually the Chicago Marathon last month and it's because of products like yours and I said cool. It was actually a really short call; 20-minute call. I didn't ask any great questions I had going on. That was really nice but I don't see he's buying my business and he almost; he bought it almost full price offer. Chuck: I'll tell you what you just mentioned something that is often overlooked. When you get on these calls don't just wing it; do some research, educate yourself before the call, and ask the right questions. It's so important. So many times I get on a call and the seller or the buyer doesn't ask any decent questions and the seller just writes them off and says let's not take any more calls from that person. They weren't serious. So make sure that you understand the business and you're asking good questions that a good buyer would ask, right? Joe: Yeah. They don't have to be the most intelligent questions the seller has ever heard but that you've done your research and you care. I mean yeah Chuck you put there together a great package and all the great questions are in there. They just have to dig into them and digest it a little bit and ask the same question in their voice and see if you get the same or similar answer from the client on it. I think that's great. I think you're absolutely right. Too many times there has been a few buyers that they're not prepared for. You can hear them walking down the street getting in the car and it just feels like a complete and utter waste of everyone's time including the person who's making the call and asking the questions. Okay, is there anything else; before we wrap up is there anything else you'd like to say about Walker Diebel? Chuck: Visit WalkerDiebel.guru to check out his new book that's coming out in a couple of months. Joe: Let's do this; actually everybody do is too. Go to IMDB and look up Walker Diebel the actor and watch some of the movies he's been in. Add a review, let's see if we can boost that one-star rating up to one and a half. Chuck: Inaudible[00:37:37.6] tomatoes maybe. Joe: Alright Chuck, you're a good man. I appreciate you coming on. We'll wrap it up here with time. Any last thoughts for anybody out there thinking about selling their business or buying one; any last pearls of wisdom and I know I didn't prepare you but any last-minute pearls of wisdom? Chuck: Yeah. I would just say that reach out early. We're not here to be high pressure as far as trying to sign you to sell your business. We're here to lead with value. We're going to offer some hopefully some wisdom that's going to help you sell that business in the future. So don't think that like oh I don't want to reach out because I'm not going to sell it for six months or a year. Talk to us now. Let us help you get the business in shape to sell it later. Joe: Great advice. That's Chuck Mullins folks. We will be back in the next podcast. See you soon. Thanks, Chuck. Chuck: Bye-bye. Thanks.   Links and Resources: Chuck Mullins Chuck's LinkedIn Walker Deibel's IMDB

The Quiet Light Podcast
E-Commerce Acquisition: Novadab's Journey

The Quiet Light Podcast

Play Episode Listen Later May 21, 2019 40:59


The purchase process for first-time e-commerce buyers is rarely stress-free. Today's guest is here to take us through his acquisition from inception to completion. He openly talks about the vetting, the financing, the due diligence process, and the seller/buyer relationship. We also discuss the wins and losses, and how they played off on each other in the six to eight months after the purchase. Finding himself near the end of his career, Rocky Cleborne was looking for something else. As an almost-retiree from the automobile industry, he decided to purchase his first business. Rocky reviewed numerous businesses and performed extensive vettings of fourteen of them before finally deciding on an e-commerce jewelry business. As we've mentioned before, surrounding yourself with smart, experienced people and being the right type of person yourself are often the keys to successful acquisitions. The highest offer is not always necessarily the one that wins the bid for the business. Episode Highlights: The vetting process Rocky went through before deciding on Novadab. How many offers he made out of the 14 businesses he considered buying. How using Centurica services helped Rocky through the process. The SBA lending process and how much Rocky had to come up with in his deal. Rocky's business model and where his e-commerce products are being sold (hint, it's not all Amazon). Mistakes he made in the early days of the transition to e-commerce and sourcing. The customer experience Novadab provides for their 12,000 orders each month. Rocky's email marketing strategy. The business's growth percentage since the purchase. How he's formed a partnership with a surprising partner and how that partnership is fueling growth both in Novadab and beyond. The losses and wins Rocky experienced during the transition process. Transcription: Mark: Joe over the past several years I have sat down and had coffee with people who are looking to buy their 1st online business and we talk a lot about what does that process like. How do you go about finding that right opportunity? How do you vet that opportunity? And then even afterwards what does it look like after you do the acquisition and are spending the 1st several months in there what you would be expecting as far as wins and losses. I love it when we have the opportunity to bring somebody on who has gone through this process and they're totally an open book willing to share what they did. You had Rocky on who you sold a business to to talk just about that. Joe: Yeah and actually I wasn't the broker. I had Rocky make offers on several of my listings and he wasn't the winning bid or the chosen one and eventually he bought one from Amanda and he openly talks about that process of buying the business, the successes that he's had, the financing that he did, some of his big wins and some of his big losses, and how they sort of played off on each other in the six to eight months after he bought the business. Mark: Well, it's great. Now we also have a really exciting announcement here. We had somebody guess one of the movie quotes from the intro Mike K. right? It was Mike K. Joe: Come on now. Mark: I can't pronounce his last name. I'm sorry Mike. Chris, our producer is in here with me; what's his name, Chris? Chris: Koregnept. Mark: Koregnept. Alright, so Mike Koregnept Big Short from the very first intro that we ran. Thank you, Mike, for doing that and hey guys if you're listening and you know the quote send us an e-mail. C'mon send it over. Let us know where it's from and if you use Google tell us; be honest because that's the only way I can ever guess any of these movie intros. I'm not going to at game at all. Joe: Let's do one more thing though Mike I want you to call me, leave me a voicemail message with the proper pronunciation of your last name and we'll air in on one of the upcoming episodes. Mark: That's a really good idea. So let's get back over to the actual topic let's talk about Rocky and the process that he used to acquire his business. Joe: I'm recording; you can see that in the corner. Hey folks, it's Joe from Quiet Light Brokerage and this is another episode of the Quiet Light Podcast and yes you heard me say I'm recording right at the beginning because I have Rocky on the line with me. Rocky pronounce your last name for me; go ahead. Rocky: It's Cleborne. Joe: Cleborne; so easy, spelled funny but so easy. Rocky and I have talked twice in the last week because yes I recorded the best podcast ever last Tuesday with Rocky but I didn't actually do what Rocky? Rocky: Hit the record button. Joe: Exactly! So we're back at it. In the podcast world, everybody has a story of at least one time forgetting to hit record and it happened to us last week. So I'm glad you're back; glad you had time but I think it's appropriate that we didn't do it two minutes after I realized when we were wrapping up that I forgot to hit record. Okay, enough babbling. Rocky Cleborne tell us about yourself; who are you what's your background? Rocky: Well, my name is Rocky Cleborne and after I graduated from college I ended up starting some businesses that I turned around and then sold. I got into the automobile business in the late '90s and became a general manager of a number of large automobile dealerships; some of which were selling over 600 cars a month. I've been doing that for over 20 years and then decided that I wanted to retire but knew that I didn't want to just sit around and do nothing because that's not who I am and so I decided that I would buy a business. At first, I looked at brick and mortar businesses and then I said I wanted to be more cutting edge than that and decided that I would look at e-commerce businesses. I did some vetting and some research. I came across Quiet Light Brokerage and the rest is history as they say. Joe: So you are an almost retiree that is in the automobile industry which is about as old school as it gets and you do what? You buy an e-commerce business and it's not only that but it's a jewelry e-commerce business. Rocky: Yes indeed and the company is called Novadab and I wanted to end up getting a business that had higher margins and that the jewelry business definitely has and I wanted to be able to end up operating the business with my daughter and so she has joined me in this venture and we really, really enjoy it very, very much. Joe: Well, good. So I want to take your life experience in terms of being in business and talk a little bit about the search process that you went through, the vetting process because I know you looked at a lot of deals; we looked at a few together, and then your financing; how you decided to pay for this business and talk a little bit about some of the wins and losses you've had along the way. But before I do that folks I want to say that you've heard me say it, you've heard Mark say it in the past that who you are as a buyer and how you behave as a buyer makes a huge difference in terms of getting the deal done not just with the broker. Well we're here to help both sides of the transaction no matter what and sometimes it does matter in terms of the likability of you the buyer because if we're in a multiple offer situation our client; the seller is going to say who do you like, what do you think, who are we going to get through due diligence with and all the way to closing, and they're going to say who do you think would be better to work with after closing in transition and training? And Rocky is that type of guy. You struck me … well, what you bought this last fall, in fall of 2018 and we've talked a few times before that and then lo and behold I hear you're under LOI and under contract with a deal that Amanda had and excited about it. I even got an e-mail from her and from the lender Stephen Speer about what a great guy you were; so good for you and folks this is what it takes some time. So again, alright Rocky tell us about your vetting process. How long did it take you to find Novadab and how many deals did you look at, and how many deals did you make an offer on? And I know you're going to come up with ballpark numbers because you probably looked at more than you can remember. Rocky: Well, that's true I did look at quite a number of them actually. I started the process February of last year and I looked at quite a few businesses. As a matter of fact, I did do some research and found out that I had actually in-depth researched over 14 businesses that I was trying to end up purchasing. I utilized a company called Centurica with Chris Yates. I actually did quite a bit of study for me because I learned early in life that you want to surround yourself with people that are knowledgeable of the businesses that you're looking to try to purchase and also know what you don't know and I certainly … and I was very, very glad to end up having Chris being part of this search process as well as helping me do the analysis because two heads are better than one and he provided me some great insight and as a matter of fact prevented me from … or didn't prevent me but certainly lend some insight as to why I wouldn't want to purchase certain businesses out there. So we did some due diligence together. I ultimately landed on Novadab and then through that same process and through a podcast I was introduced to Stephen Speer and Stephen really again if you want to surround yourself with really, really smart people that are hardworking and I give it back to you all at Quiet Light and also Stephen Speer and Chris Yates in guiding me to a purchase that ultimately I've been very, very happy with and have enjoyed as I say operating with my daughter. Joe: So you started in February 2018, when did you close on Novadab? Rocky: August 23rd. Joe: August 23rd, so just about eight months … no six months. Rocky: Six months. Joe: I always … I actually did this today, I talked to a buyer today and I said look man trying to find that perfect business is like looking for a needle in a haystack inside of a giant big ass haystack and he said absolutely. He's looked over 53 cases; he looked at 53 of our listings in the last I think probably 12 months, so a lot more than you've probably looked at. How many of the businesses that you looked at did you … you said you looked at 14 in depth; how many of those did you make offers on? Rocky: I actually only made offers on five of them and one of them actually was one of your offers where I was reaching for that brass rain if you will but because I hadn't been in the e-commerce business previously we felt that it wasn't something that we could end up doing and securing the financing ultimately with Stephen. So while I reached for it and wanted to try to do it I'm certainly glad that we ended up where we did in purchasing Novadab. Joe: Good. Alright so quickly and I don't mean to plug Centurica, we don't get any referral fees. They're not an advertiser but what I've talked about historically with Centurica is that once you're under a Letter Of Intent they will help you with due diligence. We give a great deal of information on our listings but no matter what you're going to want to dig deep. You're going to want to look at bank statements, vendor invoices, Amazon statements, credit card statements, all of that in due diligence and when you do an SBA deal like you did Rocky with Stephen at First Home Bank and they've got a 3rd party valuation team, they've got an underwriting team, and they're going to dig in and vet the business as well. So you've got lots of people that are helping but one of the things that Centurica did for you just to make sure if I understand it is that they didn't just help you with due diligence once under LOI, they helped you with the search process as well and it made sense in advance of making the offer and going under a Letter Of Intent; correct? Rocky: Yes, indeed they did. In fact, Chris and I took a look at a number of different businesses together and looked at the attributes, the positive things about the different businesses and how they might indeed tie into my skill set or not necessarily tie into my skill set. And by doing that he really helped guide me to purchasing a business that fit my skill set that I could then expand upon and ultimately grow the way that we actually have grown the business over the last six months. So he was involved from day one with the search for a business and really provided me that hand holding that when you're investing the kind of money that you invest in these businesses really gives you somebody to lean on and obtain incurred information. Joe: Cool. I want to get into the growth but let's hold off on that just for a moment because I do want to learn there. Stephen Speer of Bank United another great one that they're working with is Bruce Marks at Radius Bank for those listening. And if anyone listening has an amazing SBA lender please shoot me an e-mail at Joe@QuietLightBrokerage and make an introduction; the more the merrier. Bruce and Stephen though are top notch. I don't think you'd go wrong with them at all. Okay in regards to the SBA lending process we're not going to talk about the purchase price of the business here but generally, depending on the deal size the lenders are looking for something from 10 to 25% equity infusion and that can come from the buyer and the seller or from just the buyer. Rocky in purchasing this business how much percentage of the overall deal did you have to come up with? Rocky: I ended up coming out with approximately 20% of the overall deal including the inventory and there were some reasons behind that that I did not want to end up pledging my home is a security with the SBA which they looked to try to do and so in exchange for that I put up some additional equity in order to not have my home secure. And it was really quite interesting, the sellers also took back a note for 15% of the total deal and it was interesting in that when we did the interview as you mentioned previously on this podcast how important it really is to end up building a relationship with the seller. Everybody thinks that when they're a buyer that they're in the driver's seat and when you have as much demand for e-commerce businesses particularly the good e-commerce businesses that you really want to buy; you're the one that's being interviewed as a buyer to end up buying that business and you really should treat it as an interview because you are being interviewed by the seller. They've taken a lot of their hard work and really it's their baby if you will and they've owned it and brought it to where it is and now they're turning around and trusting you with it so you want to end up making a good impression and certainly during that interview process you want to make sure that you put your best foot forward. What ultimately happened for me is that I … like many others faced a situation where there were multiple offers on the business; mine was not the highest of offers, in fact, mine was about $50,000 less than the next offer. Joe: Wow. Rocky: He took my offer and it's great because the two of us are still talking with each other on a regular basis and in fact, we've formed another business that we could talk about later. Joe: Good for you, you found another business together in your retirement years. Rocky: Yes indeed. Joe: Crazy Rocky that's what I'm going to call you from now on. It's interesting being likable on those calls gets you … obviously, you got the deal $50,000 less than the highest bidder but also a 15% seller note. That's not standard. I think the highest I've seen and I've done a fair amount of SBA deals is 10% so good for you. This total 35% equity infusion is interesting; 20% from you, 15% seller note for the seller and it's news to me that the equity infusion that you brought to the table scratched the requirement by the lender to have your house as collateral on the business so that's fantastic, good news there. Let's talk about— Rocky: That was thanks to Stephen as well. He did the negotiation for me with that as well. Joe: That's terrific. Let's talk about the transition and training period here. You've got a physical product business, the business model itself is not your standard typical e-commerce business where you're selling on let's say a Shopify store and Amazon you're also selling on I don't want to call them daily deal sites, how would you classify Zoot Wulily; hold on let's just talk about my mispronunciation. I said Zoot and Wulily, I meant Woot and Zulily and Groupon, things of that nature. Okay enough, we can make fun of me all day long; it'll be a long podcast. Tell us about the model where your products are being sold so that everybody understands the business model itself. Rocky: Sure our biggest partner happens to be Groupon, and Zulily is our 2nd biggest partner. We only do at this point about 10% of our business on Amazon, the rest are on deal sites as you mentioned. We have a company called MobStub that we do business with, OpenSky and some of Walmart of course and some of the other platforms that really are great opportunities for growth for us but our … what's called a preferred vendor on both Zulily and on Groupon and it works out very, very well for all of us. Joe: We don't have enough conversation about deal sites like Groupon, Zulily, Woot; all of them and I think the key … tell me if I'm wrong and expand on if I'm right but the key to success on deal sites like that is SKU counts and new SKUs and being able to present new products on a regular basis. Is that right; is that what sets you apart and allows you to do business with them on a regular basis? Rocky: Very much so; they are looking for new products to list on their sites and what we do is we try to do three new products a week on each on the Groupon site as an example. And by doing that we can end up growing along with them and they can present fresh products to their customers on a regular basis. So we vet the products out, we put them on their site, and ultimately we get orders from their customers of course and it helps us grow our business on our home site because they'll order their initial product from say Groupon or Zulily but because we send our product out branded with branded boxes or bags they then could come to our website and we really have done quite a bit of growth through our website and our e-mails because of those different vending platforms. Joe: That's fantastic. So in this situation are you using a 3PL or are you fulfilling orders yourself? Rocky: We fulfill our orders ourselves. I've got a wonderful team of people here in New Hampshire. In fact, we moved the business from Texas to New Hampshire over the Labor Day weekend and did not miss any orders that were placed with those portals that were wired to ship within a certain period of time. And the women that fulfill our orders here do an awesome, awesome job and we're very, very glad to end up being able to provide not only jobs for them but also we take real care in presenting our product to our customers. And because we have control of it we really feel as though it gets into the hands of our customers in a timely fashion and also with it having looking its best. Joe: Did the company come with any outsourced VA's that transferred with the business or did you take it over with your daughter? Rocky: Well, my daughter and I took it over and she does the day to day operations but we ended up having a wonderful team in India. As a matter of fact, we're going through some of the mistakes that I made in why that team ended up being so very important to our ultimate success. When I bought the business we had just about 510 SKUs, during the last quarter of the year I increased those number of SKUs from 510 to over 800. Joe: Wow. Rocky: And it was … I thought pretty easy; you just go out, you source the product, you bring it in, you just get some pictures, put it online, put some marketing behind it and you're all good to go. Joe: Simple; I mean its e-commerce, that's all it takes right? Rocky: That's all it takes. Joe: So I'm sensing we're going to have a valuable lesson come out of this. Rocky: Yes very much a valuable lesson but out of a few mistakes comes your biggest opportunities as well and what happened was I would go out and I would source all of this product and be bringing it in and bringing in and it was a little bit overwhelming to our people at the warehouse as far as stocking it in; having the SKUs. You have to create those SKUs, you have to end up picturing them, get them on the website, and so our team in India provided us with all of that necessary grunt work I'll call it to be able to assign SKUs, to be able to get our pictures taken, to be able to help us with the marketing of the product, and ultimately our customer satisfaction as well because with this size of business that we have we ship about 12,000 orders on average a month. Joe: 12,000 orders a month; that's amazing. Rocky: Yeah and in doing that we certainly have customers that we want to make sure that are taken care of and so we have four customer service people in India, we have a graphics designer, we have a website developer, and a number of other people that help us really execute the plan. We couldn't be where we are today and have experienced the growth we've experienced without their help. Joe: Rocky, you're in 12,000 I mean that's 400 orders a day are you capturing e-mail addresses for every single one of those customers? Rocky: Almost all of them. Joe: Are you're doing any e-mail marketing? Rocky: Absolutely we have about 125,000 e-mail addresses at this time and we e-mail market every single day; Monday thru Sunday. Joe: What software are you using? Rocky: We're using Mailchimp. Joe: Mailchimp; you need to go to EcomCrew.com and listen to Mike Jackness talk about his e-mail campaigns that he does on one of his businesses. I actually just sold up listings of business of Mike's and it's that business that he talks about. He goes all around the world speaking about it. He doesn't use Mailchimp, he uses Klaviyo and the getting 400 new email addresses a day 12,000 a month is gold to somebody with the skill set to be able to send additional e-mails. And with the volume of SKUs you have I would think that that's a growth opportunity; a huge one for you. Not that I know anything about it, Mike knows everything about it. So EcomCrew.com for anybody listening that wants to do e-mail marketing and Klaviyo as well I think you should check it out. So I know you love listening to the Quiet Light Podcast but I'm going to point you over to EcomCrew too. Let's talk briefly about your growth, I mean 12,000 orders a month is great; how many orders a month was it doing when you bought the business eight months ago? Rocky: We've actually experienced about 60% growth overall. Joe: 60% growth and you used to run automobile dealerships; you had no … other than e-commerce websites for the auto dealerships, did you have any e-commerce business experience? Rocky: No, actually I do not. Joe: What is fueling that growth other than your wisdom and your brilliance Rocky? What is happening here; how are you doing this? Let's just say it's your daughter man because she's going to listen to this. Rocky: Yes; absolutely. It goes back to realistically I was able to purchase a business where the gentleman who sold me the business is still actively helping me run the business. And so that really helps quite a bit. It goes back to the relationship that he and I built when he was selling the business to me. Joe: Is he being paid for that beyond the sale of the business and the transition and training period? Is it a consulting deal or he's just a really nice guy? Rocky: No, he is a nice guy; I will say that he's not being paid to end up doing the consulting work. What happened was we ended up forming because of my mistakes of adding these 300 SKUs at the end of the year we formed some businesses; two businesses together and so he wants to end up helping me continue to run Novadab and the growth of Novadab and in turn the two of us are helping each other grow these two new businesses. Joe: I think this is a 1st where we sold a business and then the buyer of the business starts another business with the guy who sold it. I think that's fantastic. And it goes to the relationships and being likable and connecting. I guess it's not always going to happen for sure and sometimes people just want an exit. They want an exit; they want to be done. They go through that initial transition and training period which the standard folks is up to 40 hours over the 1st 90 days. And if you don't have a seller note like Rocky did there's something called a hold back; a certain percentage of the funds just reside in Escrow and then are released in 90 days after that transition and training period is over. Alright well, let's … you've grown it 60% is that what you said? Rocky: In the last quarter of the year, we grew at 60%; the 1st quarter of this year, year over year growth was 40%. Joe: Wow, unbelievable. Alright so … but those 300 and something SKUs that you added; the big win big loss, what was the loss and what was the win? Rocky: The loss was definitely that I overwhelmed the team. Again it's just to add that many SKUs in such a short period of time during the peak quarter if you will; a mistake on my part and it definitely was too much too fast. And while they were very, very helpful in trying to get them launched we actually didn't get them up quickly as what we would want to. At the same time three of the SKUs that we didn't end up launching I know it's not a great percentage but three of the SKUs ended up selling over 20,000 pieces during the month of December. So it really provided some real good growth to us and the other SKUs some of them are working some of them are not but you have to try. And ultimately we're going to end up having most of those SKUs work and retire some of the older SKUs. You have to refresh your product up on a regular basis. I just try to do it all too quickly that's all. Joe: Oh that's alright, that's just part of the learning process at least you know it's a product line that doesn't go bad and you can sell through them, discount them, and maybe retire a few but that's pretty awesome. The big win; let's talk about what you're doing with the guy who sold you the business. You have started two new businesses together, what are they? Rocky: We started two new businesses; the 1st one is called Profinac and it stands for Professional Financial Accountants. Joe: Okay, I just have to say that sounds like prophylactic; how did you pick that name? Rocky: You and my wife said the same thing actually. Joe: She's a brilliant woman let me tell you that right now. Rocky: I will have to say that's part of why we're partners. I did not pick that name, Ashish picked that name for me or for us but the reason it stands for as I say Professional Financial Accountants and so we ran with that and see we're having an impression on everybody just as this [inaudible 00:30:44.2]. Joe: It's now unforgettable to the thousands that are listening. So Professional Financial Accountants, you are doing online bookkeeping for e-commerce businesses? Rocky: Yes, we do online bookkeeping for e-commerce businesses. We also do sales tax management. We end up doing payroll services for people as well, income statements. We'll do anything that they need to in order to offload what I feel that many e-commerce and really small businesses don't want to end up doing. They get so bogged down in being a business operator they don't end up being a business owner and so by taking off the real necessary, you have to keep score somehow and if this way somebody else can do it it ends up being or allowing you to end up focusing on the growth of the business. Joe: And there's … in my experience I mean growth is important if and when … you know what it's really when; when you decide to sell the business and it may be 15 years from now, it may be passing it on to a family member but they're still going to want financials when you decide the business you've got to have good clean financials. You can't co-mingle it with other brands and things that you want to keep. You're just going to get less value for the business and the time to start planning that exit even if it's in 10 years is now by getting good clean financials. So I think the prophylactic company, the Profinac is a great business. I'm sorry I won't do that again. What's the other … is it Profinac.com I assume? Rocky: Yes, it is. Joe: Alright. We'll put that in the show notes. Rocky: Okay. I appreciate that. The other thing is that's what you and Stephen taught me as far as the businesses were concerned in the sense of being able to provide a clean settled financial so that when you end up wanting to sell your business you have those financials that can end up getting that SBA approval ultimately. Joe: Let me ask the question because I think it's probably on some folks mind in the event they need these types of services and are doing it a little bit themselves right now are you using Xero or QuickBooks? Rocky: We will use both. Joe: Really? Rocky: Yes. We'll do either one for them. The team is well versed in both. We feel though that Xero will end up providing them with much more in depth information. Joe: I agree; I hear that a lot. The one thing that I wish the developers of Xero would do is allow a Profit & Loss statement to be run with a longer date range than just 12 months. When someone sends us the Xero reports we have to merge all of the years together in order to get to a running P&L which we always want to present with Quick Books; it's easy. And also the Xero folks they're not US based, I don't think because all of the dates are reversed of what we do here in the States which is the reverse of everybody else in the world I'm sure. Rocky: Yeah very, very true. They're an e-commerce based platform and they were founded on the e-commerce platform or in the cloud if you will, that's one reason why we feel that it provides us with a lot of [inaudible 00:34:10.3] that way. Joe: Good, what's the 2nd business that you're starting with your new business partner? Rocky: It's called Supportab and that is S-U-P-P-O-R-T-A-B.com. Joe: Only one T? Rocky: Only one T. We don't know how to spell either. Joe: It's giving you support to your abs; that's what this one does. Okay, what does Supportab do? Rocky: Supportab basically provides again a lot of the necessary support that an e-commerce business needs. This is going back to my big mistake of introducing those 300 SKUs. I needed to end up having a team; a website developer, for example, customer satisfaction people, graphics designer, marketing person. That's what we provide to people that are in the e-commerce world. And what we do that's a little bit different than some of the other businesses out there is that we have it all and we call it omni channel instead of multichannel. And omni channel basically is the integration of all of those different facets under one roof where your customer satisfaction team or your customer service team, your website developing team, your graphics team are all working together and that way they communicate with each other and interact with each other as far as what the overall goal of the company is. Whereas if you do it multi-channel you might go out and hire a bookkeeper, you might go out and hire customer service people but they never talk to each other so they don't get that common feel of the business going forward. We have it all under one roof and we also provide the supervision and management of that team. So we interview the companies and we ask them what their goals are and then we then convey that and manage the team towards those goals, talk with the owner of the company on a regular basis, and then we make sure that we're doing what it is they want to end up doing and more to achieve their goals. Joe: Based upon my experience in doing thousands of valuations I would say it's a very needed service because a lot of people that sell their business sell because they're just pulled in too many different directions, feel like they're going nowhere, and just need to cash out and get some emotional satisfaction because they're not getting any. Because they're working in the business instead of on the business, so Supportab; support one T ab.com sounds great. But Rocky you don't have any e-commerce experience, you're an experienced business person who's been managing a very difficult niche in the automotive world for 20 plus years now you've got Novadab so I guess that brings that life experience to starting these two new companies which are essentially service agencies which are definitely needed. What about your business partner before Novadab, what kind of e-commerce world experience does he have? Rocky: Well, he founded Novadab and certainly brought it to fruition and then before that he works for AT&T for a period of time in website development and was doing a lot of computer work himself. So that's one of my partner's— Joe: So he's mature, he's not in his early 20's that started his 1st business sold and is doing more business with you? He's got some real world experience behind him as well. Rocky: Very much so and the other partner that we have is actually his brother who is located in India and is heads of the operation over in India for us so that we have someone who has experienced … he worked for Pfizer for a period of time and did marketing for them and spends the time building our team in India and sourcing all of our employees that we end up hiring in that area. Joe: Wow. Is he and his brother originally from the States or born in India and relocated to the States? Rocky: They were born in India and Ashish came over here. He came over here to go to college, graduated from college and wanted to stay for a period of time and has now located in Austin is where he is. Joe: Oh, that's great. That's great to have a direct contact there that is an owner of the business, a relative of one of the owners of the business as well so it's fantastic. Well, Rocky, this is a great story; we're running out of time here. I appreciate you coming back on and actually allowing the team to record this one. Thank you very much for your humor in that regard and your time. I'm very impressed that you've taken this and grown it to the level you have in such a short period of time just for your daughter's sake. He's given you all of the credit in case you're listening; Rocky is just showing up every day. I'm kidding of course. The next time we have you on I want another update maybe in another 12 months we can get you back on, maybe have a daughter on as well what do you think? Rocky: That would be awesome. I couldn't do it without her that's for sure. She takes care of the day to day operations and allows me to end up working these other businesses and really without the team that I have I wouldn't be where I am so I really appreciate all of their hard work without a doubt. Joe: And we appreciate the type of person you are, the type of buyer you are, and the fact that everything has gone so smoothly. I'm so glad to hear for your success. Thank you for coming on the podcast and I look forward to doing an update with you sometime in the future. Rocky: Thanks very much for having me, Joe. It's been a real, real lot of fun. Joe: Take care, you too. Links and Resources: Novadab Profinac SupporTab Centurica StephenSpears BruceMarks Austin Meetup

The Quiet Light Podcast
Acquisition and Transition: 18 Month Update

The Quiet Light Podcast

Play Episode Listen Later May 7, 2019 29:05


For our first entrepreneur acquisition update episode, we are speaking to Nathan Singh, a buyer who made a purchase through Quiet Light eighteen months back. Nathan is a great example of how a buyer can get a good deal and beat out other buyers just by being personable and investing in the seller. It turns out that it's not always the person who has an all-cash offer on the table that wins the deal. Having a Nathan was more appealing and likable to the seller, won out on a deal, and today we are hearing all about how the acquisition transition has gone for him. Episode Highlights: Nathan tells us all about the two WordPress plugins he bought and what each does. Any regrets regarding the multiple and the use of an SBA loan for the transaction. The company growth rate and any challenges Nathan's faced. Where the growth has come in and what he attributes that growth to. Staff retention and how the transition is going within the staff since the original transition period. Nathan's tips for an easier transition. The importance of involving the customer in order to create a relevant product road map. The biggest challenges and successes of the businesses. Things Nathan has implemented to ignite that growth. Way's Nathan keeps his relaxed disposition. Growth Goals for the next 12-24 months. Nathan's 3P's advice to entrepreneurs looking to strike out and acquire a business. Transcription: Mark: Joe, about a year ago you had Nathan Singh on the podcast. Nathan was a really good example of how a buyer can get a good deal, beat out buyers that maybe have a little bit of a stronger position with their offer or if they're a cash buyer just by being kind and generous and investing more importantly in the person that's selling the business. And I guess it's time for an update from him. Joe: Yeah, Nathan did a great job. His seller was Syed Balkhi. He owns Opt-In Monster. That's not the one we sold but we sold two of his WordPress plugin sites which are essentially SaaS businesses and Nathan beat out a full priced all cash buyer with a full price SBA deal where Syed agreed to carry a 10% seller note which was pretty substantial based upon the size of the business. And it's a story I've told often in the different events that we go to and here on the podcast so sorry for folks hearing it. I'm repeating it but yeah the first podcast we did with Nathan was all about that and the transition and training and things of that nature and we're doing an update. I think this is probably our first entrepreneur acquisition update. And he talks about what it's been like for the last 12 months; some of the wins, some of the losses, some of the challenges, the team and things of that nature. It's a great episode to see what people have done. I think really probably more like 18 months later. I think we sold it to Nathan in the fall of '17. Mark: Yeah, I get asked all the time like do you guys follow up with people that have bought these sites and what does it look like a little bit after. And frankly, we don't do enough update follow up with people who have bought so this is good. I'm glad that we are doing this with somebody we're doing on the podcast live so that people can actually hear how the acquisition has gone a year and a half later. Let's get right into it I want to hear from Nathan. Joe: One more thing I want to just shout out a reminder this new intro that we have, we've got some movie quotes in there. If you can figure out what the movie quote is for the intro go back and rewind, listen to it, put it down in the show notes and we'll give a call out to you in the next episode. Joe: Hey, folks Joe Valley here from Quiet Light Brokerage and today we have our first ever Quiet Light update or acquisition update. We've got Nathan Singh on the podcast; Nathan, welcome. Nathan: Hey Joe. Joe: Good to be back, good to have you back man. I tell your story often. I share the story that it's not always the person who has an all cash full price offer that wins the deal and that being likable is one of those intangible very, very important factors. And for those that didn't listen to the podcast that we did with Nathan, he … I want to say won a deal where someone was bringing all cash to the table at a full price deal and Nathan came to the table just being more likable. He happened to go to the same school as the seller Syed Balkhi. I know it's the Gators, is that … wait a second, hold on, I'm going to put on the hat because I have it. I have it. There it is. Nathan: There you go. That's the right one. Joe: And I didn't plan this I just happened to have the hat up in the cabin. It's been there since fall of 2017. So it's … I'm going to get it wrong and Syed he should … he sighed so loudly when I got it wrong. Is it Florida State? Nathan: No, I would have sighed again, real loudly. Yes, University of Florida. Joe: I'm sorry. Nathan: [inaudible 00:04:41.8] Joe: There it is. There was obviously a quick connection between you and Syed on the conference calls because you both went to Florida State. Nathan: University of Florida, not Florida State. Joe: Okay. Folks, obviously I don't pay attention to schools in Florida. I'm from the Northeast originally and we don't follow our college teams at all. Now for those watching the video, my hair looks great. Okay, I just took the hat off. You connected with him on the school but you also connected with him in terms of the way that you wanted to keep the staff in place and take care of them and that it becomes a family or an extended family. And that just really resonated with him and he didn't want to call the end with you whereas the all cash buyer it was all about the fact that he was all cash he could do a quick close and these types of things but it was a little rough around the edges. Syed believed in you, trusted in you, and actually took an SBA deal where he had to not be all cash, he got 90% and so he carried a pretty substantial seller note that won't be paid in full for … I don't remember the exact terms of the deal but probably a balloon payment in year five along those lines. Does that sound about right? Nathan: Yeah. Joe: Alright. So you bought Soliloquy and Envira Gallery. Can you tell the audience a little bit about both of those businesses and what they're all about and what they do? Nathan: Yeah sure. So both of those businesses are pretty similar in the sense that they are WordPress plugins. Envira Gallery is basically a gallery plugin. That's a really simplified way to put it but it's really a photo management system. And if you Google best WordPress gallery plugins you're probably going to see that in just about every result you see. Soliloquy same deal. It's a slider plugin. Essentially if you've ever seen sliding pictures and things like that in PDFs and videos that's what Soliloquy does. But essentially it just makes developers and designers lives a lot easier when they're developing this sort of thing. That's not something they really want to get into so it just streamlines the whole process. The whole gallery management system is there. And it can display multiple galleries in pictures and sliders in a very professional way. And especially for photographers, that's a big deal. And that's what Envira Gallery does. Joe: Did you have a lot of experience, direct experience in WordPress and plugins and things of that nature before buying the business? Nathan: Not at all. At least some people actually have worked in WordPress to some extent whether they've blogged or … I've had very minimal. I've looked at the backend years ago at one point I'm like no way. So WordPress has come a long way since then. A lot of people who have … who used WordPress and have been keeping abreast of that news, Gutenberg came out, what it did is essentially went straight for the head of Wix and Shopify and some of the really easy to use platforms for building websites. So Gutenberg is that which is a WordPress site builder. It's built in. It's made by WordPress. So that's the main thing for all users, now you can get in the backend. It makes it a lot easier. But no previous to that I was pretty new to it. I didn't really understand the dynamics and the market but the only thing that I had that was slightly close to that is I developed an app before in iOS. And so it was again it was being a part of this community and having some community standards when you have plugins that are uploaded to the depository. Joe: Okay. So you were an entrepreneur. You did sell a business. I sold it for you prior to buying this one but no WordPress experience. You bought it … this business with an SBA loan and it paid a what I would say is a fair multiple. A lot of folks might say I think it's strong. I won't say it. You're welcome to say if you want to. But do you have any regrets in terms of the multiple and the use of an SBA loan in the purchase of this business? Nathan: No I don't think so. Regarding the multiple, we did pay a strong multiple. I knew that going in but I also knew going in … I've gone through hundreds of business over the past few years, I talked to owner things like that. In order to get those businesses kind of like with Envira Gallery and Soliloquy where the churn was pretty good … it's essentially a SaaS business. It's been well maintained. It comes from a good pedigree by way of Syed Balkhi. So all those things played a huge part in me wanting to go ahead and stretch what I was looking to do in that multiple. But on the same end when you're doing an SBA it made that decision a whole lot easier as well. So given the SBA process, I mean I've talked about that in the last podcast that we did as well it was … it's come a long way. And so for me having gone through the trenches and years and years of trying to get SBA loans for businesses with no assets and getting to that point and seeing it streamlined with a guy like Stephen Speer and kind of what Bank United did, it's just … I mean it was like a dream to go through that really quickly. But yeah I mean we're here year later and I don't regret it. The only thing I will say that I kind of … was a thing I didn't sort of anticipate is how quickly the interest rate did change. And it does change year after year but it wasn't so drastic that it affected the business in any way. But it did increase just a bit there so. Joe: Your loan had a variable interest rate. Nathan: I think it was more as a result to the Fed increasing. Joe: Okay. Nathan: It was something that I was aware of but it was just political things happened and it increased a little bit there. Joe: Okay. Alright so why don't you tell us how things are going? Are you seeing the business … what, we closed in the fall of 2017 so it's been a little over 18 months, have you seen the business grow? Are you challenged by anything or is it growing year over year at this point? Nathan: Yes, so it is growing. It's a pretty healthy double digit growth. Joe: Double digit growth, okay. Nathan: So no complaints there. Challenges are really again coming and yeah I've been pretty much like industry agnostic every business I got into. Like I usually know nothing about it and I prefer it that way in some cases. And so coming in and learning it I've been attending the Word Camp. I went to Word Camp in US. I went to Word Camp Miami and really connecting with the people that are shaping where WordPress is going. And just some quick stats for people that like numbers, WordPress was around like 25% or so in all the websites in the world pretty much and now they're around 33 or 35% and that's continuing to grow. And just about every major web site that you probably visit is on WordPress. So the fact that that market share is growing there's … that's helped a lot with the organic growth as well. Joe: Is that US growth or a combination of US and international? Nathan: I think it's a combination of both it's like it's used in the world but definitely United States I think that WordPress has a pretty solid share there. Joe: You know it's interesting that's not something that we zeroed in on in the client interview with Syed in terms of WordPress growth. Is it something you thought about prior to and during due diligence prior to the LOI and due diligence or is it just worked out that way that you bought essentially a SaaS business on a platform that is growing? Nathan: Yeah, I think it was a little bit of both. So I understood that WordPress was … at that time the numbers haven't been released. The numbers are officially sold on Word Camp US or just before. So the actual numbers I didn't really know at what rate it was growing but I did know that just the nature of the open source WordPress community, the fact that they're building a bond and we talked about … a little about Gutenberg during the acquisition as well but just having seeing the route that they were going in relation to all these other paid sites, and what the paid platforms did to me it made sense that WordPress is going to continue to grow. It's got a foundation to expand on and so it did play a little … not a significant amount in terms of the actual business acquisition. Joe: Excellent. One of the big reasons why you and Syed are working together now was that you were going to bring the staff over, keep everybody involved and you worked remotely from a home office whereas everybody else I think does as well. How has that transition worked out in terms of the staff and you and are you still working together? Nathan: Yeah, great. Yeah, it's been great so we talked a little bit about this again in that previous interview but there was kind of a bumpy ride with the staff. Again full time they've been with the previous company for several years and they were part of a larger outfit. So there were some worry there that it's just going to be us, essentially four folks transferring over to a completely new owner; my smaller company, how is that all going to work out? I think that just … it was a trust thing and I think after a couple of weeks that they saw that I was in the trenches with them and I was really working to make their lives easier, making sure they're taken care of. You know we went on a retreat, we stayed in Austin, we stayed in a big house; an Airbnb together, really got a chance to bond and we're doing it again this year as well. I think those things all sort of helped build that trust. I mean from where we were to point one just like in any transition when you're taking people's livelihoods and basically giving it to this owner that's completely new and they've never met there's always that kind of anxiety and stuff. But we've come a long way in that time and I'm happy to say that pretty much the entire team is still in place. One person did move on to another opportunity but outside of that, the core folks are still there. Joe: Oh, that's great to hear. Syed is probably happy with that as well. As far as the training and transition goes I know that normally it's up to 40 hours over the first 90 days after closing is the standard in the asset purchase agreement, have you needed to reach out to Syed and other folks that are in the upper level management side or were of this business beyond that transition and training period so that you just reached out if you had a quick question that didn't come up in the first 90 days? Nathan: Yeah, I think it was that. It was the first maybe really the first month or two is the bulk of the questions and stuff. Syed was really good about it. We went through training together. Thomas the co-founder was there as well or actually the founder. And so we recorded those conversations, went through each one of the processes and so I had all that. That helped tremendously so if you are selling try doing that. Go through recorded conversations and go through the process of what you do day to day and that really helps for them to not have to ask any questions. They can just look at the video again. Joe: Oh, it's a great idea and we use a Chrome extension called Loom, L-O-O-M on a daily basis when a broker has a question for me or I have a question for someone else they often just record their screen and send that. What software do you use? Nathan: We use Zoom. Joe: Better. Okay. We're on Zoom now and we're recording. Fortunately, as you all will hear in an episode or two I just did a podcast this week. I jokingly said it's the best one I've ever done but I forgot to hit record. So we'll be doing it again next week but I'm sure the guest will bring that up in the podcast for sure. Alright, let's talk about the biggest challenges that you have had since buying the business back in the fall of 2017. Nathan: Yeah, I would say the biggest challenges for me just like with any other business is kind of getting on that horse and riding it. It was just that the day to day stuff, making sure there was no loose ends that I was missing. I think aside from that it was really that there was not a strong product roadmap going forward. So everything would have gone well until up until that point and I think the team was kind of like well we're just fixing stuff how long do we want to just continue just fixing stuff day to day? And so that was just like kind of shaving a product roadmap, again I'm coming in super fresh so there's not a whole lot I can bring to it in terms of this is exactly what we need to do to take us to the next level, right? But the great thing is since I run other businesses and you kind of get a process within yourself that you can apply to these other businesses and for me, it was like let's ask the customers. And that's exactly what we did. We went straight to the customers, put out a survey; short, less than 60 seconds to complete. What are the features you like most, what do you want to see, how are we doing, stuff like that and they let us have it in a good way mostly. Joe: In a good way, okay. Nathan: And so the great thing is that they were happy with this feature set and they provided some stuff that would make them much more happier. And so that is what we're working towards right now. Joe: So they gave you that product roadmap and then your team is working on that. You're not working on it, you're just visionary and they're actually doing the actual work itself, right? Nathan: Yeah, you're right the developers … you know what I did is basically help create prioritize the roadmap. And so the things we have to do first which is we got to rebuild some of our functions and things like that. That's the most important part; to keep … to build on that foundation. And then outside of that, it's going to be basically hitting those priority items and then doing those in truncheons as we move along based on that. Joe: What would you say are your biggest successes or triumphs? Things that maybe they were a challenge but you've overcome them and see that it's maybe something that kept you up at night but it's changed and it's a big part of your business now. Anything like that? Nathan: I think for me it's been a little bit of the marketing, kind of the way to take the market. WordPress is a little bit different in the sense that we have three versions that are on this .org repository. They've got somewhere in the range of 150 to 180,000 active users or active installs, probably more than that with Soliloquy. And so there's not a lot of data we can gather. And up until recently there wasn't a lot of … there's not a funnel that you can put them through to bring them over to the paid versions because again it's actively monitored and it's a lot different than if you have a trial version and you're moving them on to a paid version of the funnel. So I think the challenge was trading out ways to get around that and still playing by the rules. So again opt-ins we've recently put in opt-ins in the free version that wasn't something that we could do previously but things in WordPress community has changed. So that's going to be a huge boom for us. Aside from that kind of marketing directly to the WordPress base, a lot of designer and phyto developers that are used to a certain thing. So one thing they weren't used to was re-occurring payments, annual subscriptions and things like that but honestly, it's become something of paramount importance to anyone that's running plugins that they have to be running a SaaS type program in order to survive or else you won't be able to make it. Joe: Have you changed the payment system with these two products? Have you changed the way that the customers are paying for it? Nathan: The payments have stayed the same. I think a lot of it was showing them the value of continuing that. Joe: Okay. Nathan: Because again WordPress is a little bit tricky because once you pay for it once you basically own it for life. Joe: I got you. Nathan: So here that is really … is bringing in those value added updates and the value added support; the source support is probably like number two on our most celebrated feature of Envira Gallery and Soliloquy. We get it all and we saw it in the survey as well. So making sure that we're doing everything we can for that customer experience just from the support standpoint and not only at the stuff that we're doing as far as updates and things like that. Joe: So you really brought your marketing experience and expertise into the business and that's how you're triumphing in a sense. Is that what it is attributable to the growth that you've seen, the double digit growth or is it that it was going that way and you're just on for the ride and making sure you don't break it. Nathan: Yeah, I think there's a balance between those. So initially … mostly when I go into these types of acquisitions I'm looking for something that's like the first year I'm learning. It's not like I can insert myself and change things at day one like say if you got a content site when essentially you're dealing with software. So it's always very different, the base is different, and then the software base is different in terms of developers and things like that. So for me, it's applying the past knowledge of just making a great intuitive software, changing up the interface to what I believe is just a more … a better user experience, and outside of that applying some of those basic marketing things that just need to be done. In this case a lot of that, the basics have been done, but it's that out of the box stuffs that really needed to get taken care of. Joe: I love that first year just learning approach. I see lots of these businesses that are listed and sold. There's a certain amount of year over year growth and the goal is to at least sustain that. And I had a call this week with someone that blew up the SKU count dramatically and it was his kind of biggest failure but at the same time it turned out to be a little bit of a triumph as well because there are some SKUs that are now generating an awful lot of revenue. But there's also a great deal of loss there as well. So I like that learn in the first year process. And what kind of things are you working on now that were never done before in the business? Nathan: Yeah, so there's a couple of things that have also attributed to the growth outside of just again being a SaaS business with not a terrible churn. And the churn for WordPress businesses I think is probably a little bit above average of what other people see in WordPress. Again you buy one so you can potentially keep it. So outside of that, it's been growing. Our affiliate revenue, that's been increasing pretty tremendously. But we had a lot of articles that had been written that were getting pretty decent on the traffic, didn't have any ads on there, didn't have really any affiliate links things like that. So that's one of the things putting in those affiliate links, building more articles around those really high performing traffic. I think at the time this wasn't taken to do that and sort of nurturing that so that's … I've seen— Joe: Are these affiliate links for other plugins or SaaS products or physical products or a combination of all three? Nathan: So the shoe in for us really became the funnel editing tools. We did a lot of … there's been a lot of [inaudible 00:22:24.1] done, tools such as Photoshop and things like that. And so lot of traffic to that kind of stuff. And it just made sense to start saying hey if you don't have Photoshop and you want to do this stuff that you see in this tutorial here's where you can go. And that's pretty much it. And then building off of that and saying what are those Photoshop competitors are out there well there's Skylum Luminar, there is Capture One, there's all these different types of photo editing tools that are kind of riding on the coattails and maybe on the heels of Photoshop. So writing tutorials for those and the same type of strategy that was used and say hey if you don't have it you can go get it over here. Joe: That seems like such a logical thing to do, slow down and read the article, what are people looking for, what can we … Do you know what you're doing? You're helping the audience. They're reading an article about editing and you're then offering them the best photo editing tools right there within the article and you happen to be making money off of it as well. Nathan: Absolutely. And it wasn't the intention of just skyrocket the affiliate. It just made sense. I was like a rational person would mainly look at that and be like you know what this is already an article at Photoshop so you probably already have it. That's not true. There's a lot of people that wouldn't make something black and white and something color in the black and white picture but they didn't know they needed specifically Photoshop to do it. So they end up going … picking up the Creative Cloud plans 9.99 or 19.99 or whatever a month not three or $400 as it used to be. So it's just a lot more easier and accessible. Joe: How did you find the affiliate platform to use, those affiliate themselves? Nathan: Yeah. So share sell has already been in use in the previous ownerships so that's just one of those things. But in this case, it wasn't really even bad. It's just getting … just registering for the program and dropping them the wings and saying hey I should always focus on this some more too because it looks like to be growing. Joe: Pretty easy stuff then. Nathan: Yeah. Joe: Now you mentioned an e-mail list as well; you've historically had lots of free users, a huge e-mail list. Have you ever done anything with that and if not are you planning to do anything? Nathan: Yeah. So the free versions, there was really no list before because there's no way to collect emails from before. So we've started an opt-in for that which again I think is only … it's been a few couple of short weeks but already we're seeing the results come through. The only … the list that we do have is just essentially people that have paid the pro. But the great thing is we're able to cross sell with Soliloquy because generally if you need something like Envira Gallery you probably need something like Soliloquy. Joe: Yeah. Nathan: So that's continuing churn along as well. Joe: That's fantastic. Nathan you look so happy and relaxed and just chill, are you always this way or is it you're just in a good position in right now that you're running this business and see the trends and whatnot? I mean what's the deal? Let's get simple. Nathan: It's a little bit of both so I would be in positions where things were going absolutely terrible and so the short answer is I meditate every day so that I just accept things as they are so that makes life a lot easier for anyone listening. The second part is I think it is that I paid a higher multiple but I've got the security of if all else fails and I can't figure out what to do it will still follow some level of revenue that was expected. So outside of that, I was just building upon that success that's already sort of continuing as well. Joe: Excellent. What's in the works of … goal eyes what are you looking at in the next 12 to 24 months? Anything that if we come back for the second update in another 12 to 24 months what are you hoping to achieve? Nathan: At a minimum, I'd like to achieve that same double digit year over year growth. But I think again entrepreneurs try to go all triple digit all these different revenue channels. Again I opened up the affiliate revenue more and that's beginning to be more of a significant one. But a couple more like that I think would be interesting and just continued growth man. I mean the main thing is … this is one of the things we discussed earlier. It's just that focus on the customer; making sure they're happy, making sure that we're hitting all those needs and then the business kind of just takes off by itself if you're hitting all those things. Joe: That's it. A clear and simple plan; not too complicated. Focus on the customer makes a lot of sense. Any words of advice from one entrepreneur to others in the audience; people that maybe they're working in the corporate world and want to be the next Nathan Singh. Any advice that you can give in terms of running your own business and overcoming challenges and things of that nature? Nathan: Yeah, I would put it safely into patience, persistence, and presence; those three things. Joe: Alright. Patience I get that. Persistence I get it. Presence … meaning? Nathan: Meaning I think as entrepreneurs what we get into is too much looking around to see what someone else is doing or where they wanted to be in a couple of years and getting super stressed if they don't hit those goals. Remember that is just your perception of where you wanted to be, reality happens different things. And I think that if you're approaching everything in a present moment, I'm not trying to sound like a spiritual guru here. Joe: It's just natural though. I like it. Keep going. Nathan: If you're approaching everything in a present manner you're likely to focus on what you're doing at this point and not be so stressed about all those other stuff. Because essentially that's going to be what's going to mess you up; it is worrying about the future, worrying about how things are not going, things like that. Focus on what the problems are at the current moment and do those things at that minute, at that second and just kind of block everything out. I just feel like everybody is uniquely designed to run their own race. So don't look left and right just do your own thing and you'll get to where you're trying to get to. Joe: I like it. I like it very much. Nathan Singh thank you very much for coming back on and giving us the first ever Quiet Light update. I look forward to doing this again. I wish you the best of success. Nathan: Absolutely. Good talking to you Joe. Joe: You too. Links and Resources: Envira Gallery Solliloquy

The Quiet Light Podcast
How Happy Feet Became a Shark Tank Success

The Quiet Light Podcast

Play Episode Listen Later Apr 23, 2019 35:48


Can a plush slipper put you in a happier mood? Today's guest and Shark Tank dealmaker have been banking on that since buying the existing Happy Feet business in 2002. He is with us today talking about the wild ride that his kiosk, retail, and e-commerce business has been on with a single brand that now has licensing agreements with the likes of Disney, Marvel, and the NFL. Pat Yates is another serial entrepreneur and e-commerce success story. Pat has the broadest experience in physical product of almost anyone we've talked with here at Quiet Light. From his early start in a retail golf shop, to selling coffee out of a truck in a one-man distribution venture, on to kiosk retail with Happy Feet which now has a booming e-commerce presence, Pat has done it all. He walks us through the Shark Tank process, the deal he struck, the risks he took in his first licensing deal with a celebrity face, and how he managed the rapid growth and cash flow challenges his business faced. Episode Highlights: When the website for Happy Feet went live and Pat's vision to merge kiosk to e-commerce. The Snooki Story and how he took a chance on licensing for the first time when no one around him thought it was a good idea. His decision to apply to be on Shark Tank, the process he went through, and what his appearance did for the growth of his business. Rapid growth cash-flow challenges and how Pat overcame them. The importance of having good people around when growing. Ways to scale and grow creatively for success. Mistakes Pat made or was perceived as making in scaling the business. How kiosk business works and Pat's thoughts on the current kiosk climate. Pat's advice for those beginning as entrepreneurs and his key tips to being prepared to succeed. Transcription Mark: Joe, Pat Yates is somebody that has been a friend of Quiet Light Brokerage for a long time and might have one of the broadest experiences in the world of physical products of people that I know. He sold everything from licensing products on retail, a whole kiosk business, e-commerce, and he was also on Shark Tank and you finally had him on the podcast where he can talk about some of the experiences that he's had and what it's like to grow a business that's as popular as Happy Feet. Joe: Yeah I know. Over the last six or seven years I've probably talked to maybe a dozen people that have been on Shark Tank and Pat I think has had probably the most success. He got a deal with Robert. He talks about the process, the presentation, preparing for it, a little bit … he goes back into how he started in Happy Feet in malls, in kiosks; really his father bought the business and he tells some great stories about Jersey Shore and meeting Snooki and how he took a risk and did a licensing deal with her. And then really talks about the success after Shark Tank and how to manage cash flows. And then we dipped a little bit into the back side of it because I was at a Blue Ribbon Mastermind last summer and somebody that has e-commerce product talked to somebody that does retail up on stage and whether they should try mall kiosks and things of that nature. And because Pat has a great deal of experience there we talked about that a little bit at the end in terms of how to go from e-commerce to retail and whether he thought the kiosk business was a good option. Mark: I know every time I walked through a mall … a few years ago when I was walking through a mall I'd always come across one of his kiosks and his giant stuffed slippers which is what Happy Feet is right? Joe: Yeah. Mark: They're these ridiculously oversized slippers and they're super fun and I know people bought them for Christmas presents and everything else. So I've always been fascinated with what he's doing. I do have to ask you real quick just changing topics, do you have any idea what the movie quote was on today's intro? Joe: Not at all. No idea whatsoever so if anybody knows what it is rewind, listen to it again, put it down in the show notes, we'll give you a shout out and a thanks in the next episode. Mark: All right why don't we get to Pat and listen to what he has to say about growing an e-commerce business and also the chaos side of things too. Joe: Hey folks it's Joe from Quiet Light Brokerage and today I've got a Shark Tank alumni and we've had some on the past before but this one actually got a deal and has a great deal of entrepreneurial experience; Pat Yates from Happy Feet. Pat welcome to the podcast. Pat: I appreciate you having me on and I'm looking forward to it. Joe: Good man, all right so we don't do big introductions here. We want to hear a little bit of background on your story. Tell us about your entrepreneurial life, how you got started, and where you are today. Pat: Well it's kind of funny. I started my first business pretty much directly out of college. I was actually working for a gentleman in a … when I got to college I started working in a retail golf shop. It's where I've worked in summers and they put me on as the manager in that location which sounded like a really important job at the time. When I got at a college I thought I was going to change the retail golf industry. But in an event when I was working there I had an opportunity through one of the customers I had to get involved in a business in Columbus, Ohio and I lived in Louisville, Kentucky at the time and he basically told me about it and I decided right on the spot to buy into this franchise deal that he had for a coffee company in Columbus. I went home and my wife of three or four months I told her we were moving to Columbus and she'd never been there. So it was kind of an interesting conversation. My first ever business was basically a one man, one truck. I would get up in the morning and I would sell coffee accounts to restaurants and offices and put in vending and just go out and hump it and it was me and that was it. I did everything. Joe: Let me interrupt for just a sec for just a sec for those husbands out there that are newlyweds and still within that first year of that honeymoon, are you still married to the same woman and do you have children now? She actually wanted to go on it? Pat: Amazingly it'd be 29 years this June and yeah [inaudible 00:04:57.3]. So yeah I was pretty lucky and she just had an interesting ride. You should have her on the podcast to talk about me. That would be probably better. But yeah we started … I started that business and 2 ½ years later I sold it back to the company that was a long … it was a long story about a father and son in federal court over their ownership and it was out in the press and we sold ours back. We had a contract. It was exciting. I moved out to Tennessee and started my own company. I basically have a 200 mile non-compete and I looked at the map 200 miles away and my mom lived in Nashville; I've lived in Nashville. We moved over there and started the same kind of company right after I sold it. So at that point, I started working a little bit also in the winner's pawn specialty retail so I would use carts and kiosks for a couple of months and make extra income whilst I was building that company and that's what led me to e-commerce which led me to Happy Feet. So the short synopsis is my father and his wife are trying to work and sell on kiosk too and they were trying to find products. So when they went to a trade show in Atlanta, the Atlanta Gift Mart one time and ran across a guy who had these slippers and he had a patent on them and designed them and he really wasn't selling any so they agreed to buy a container of them. A small container of 4,000 units and put them in a mall here in Louisville. They sold out that season really quickly. It was a great beginning and then we went out and started sending … giving off 24 people to get kiosks across the country. And in 2002 I bought it out from my family and started going in a little different direction, a trajectory on retail that aren't kiosks that turned out to be really big but then really catastrophic with relation to the growth pattern and then started to concentrate more on e-commerce. And that's obviously led me to a Snooki deal which I'm sure you're probably going to end up asking about which is the funny part of the conversation typically. And then it led me to Shark Tank and it has led us to every late night show, morning show, TV show you can imagine. So the press around the company was incredible and obviously, I'm still here doing it basically 20 years later. Joe: That's an incredible story. So if you're focusing specifically on the e-commerce side of it when did you first open up the first web site for Happy Feet? Pat: Well the first one was actually opened up by my dad when they had the business in 1988. They were … they started in doing very little stuff. I mean I'm talking like we packed two orders in the basement one day. Joe: How much [crosstalk 00:07:08.6] 1998 is a lot of having, I think my first site was 50 bucks probably 1998. Pat: I could guarantee that my dad would not have spent $50 on a website. So I don't know how much he spent but it probably was somewhere south of $50. They really weren't doing anything. I think when I bought the company they were doing $22,000 in web sales. They just … it hadn't translated but what happened was I had a little different vision. And my vision was that if I can get it out to people in kiosks and grow that funnel sale it would get the brand recognized by people and then they would continue to buy it online. And since our business was seasonal, two months a year they were coming to me. Two months a year they were going to the kiosks. So if the kiosks can say osh kosh wherever or from like Milwaukee, Wisconsin closed down and someone went back to buy and they didn't have them they see the name on the back of the slipper and all it did was that distribution funnel continued to grow. So my thing was to try to get it to a lot of places for me to market very quickly and try to build the e-com via that. And we went from 22,000 to about 100,000 to about 400 and we capped a million and now we're well over three million and it just shows no signs of slowing down. It's a fun product. Joe: You know the way that you went about it is actually hard work and hustle. And that hard work and hustle got you in the right place at the right time which is not necessarily luck. It's because of the hard work and hustle but being at that trade show in Georgia where your dad was and meeting these folks and taking the risk in buying that half container load so good for you. But then there's a lot of work to do since then. And as we've talked and I've had a lot of people on the podcast and what I've experienced over the last seven years in the brokering side of it is that everybody has problems with cash flows. So I want to talk about that with you. I want to … first I want to hear the Snooki story and I want to hear a little bit of the Shark Tank experience but then I want to talk about how you've solved the problem of cash flow with a company that is growing so rapidly because everybody that's in the first 12 to 36 months of a business that's growing rapidly faces that challenge especially with the Amazon growth these days. But talk to us about the Snooki story did she just happened to have— Pat: Well it's kind of interesting. It's actually my most fun story of all these and actually from many standpoints; number one from a standpoint of growth, second of all from a standpoint of trusting my judgment. I've had done many podcasts before and I've talked to a lot of people about the biggest thing with me is if I always trusted my judgment on what I first had an inclination on I typically had success. Now it's not always that way. Not everybody gets it right the first time but the 80-20 every time I trusted myself it was good. Every time I didn't trust myself it was the same 80-20 but the 80-20 was the other direction. Well, I'm sitting in my house one night and this is 2009 maybe. I'm guessing. I have to go back and look. But my son comes into my bedroom and I've said this many times so I'm sure people have heard it and he said dad your slippers are on Jersey Shore. Snooki is wearing your slippers on Jersey Shore. I said I only have two questions: who's Snooki and what the hell is Jersey Shore? I really had no idea. I had no idea what it was. I've heard of the show but I didn't pay any attention to it and this was the second season on Miami so [inaudible 00:10:13.8] rewind it and I look and she's bent down cleaning something up with our pink slippers on. It turns out she was just a fan of the product. She bought them and took them down there and thought it'd be cool to wear in the house. So we get all these emails and orders immediately as soon as it starts hitting the air. And we sold out of those pink slippers in like three days. So at that point, I knew I had something. So I being a ford motion guy; that's one of the words I use a lot being a ford motion guy, I picked up the phone and I called her agent and it turns out one of the guys is selling license agreements for her because they figured they could capitalize on her fame at the time. It was in Chicago so I got my car and I drove to Chicago four hours the very next day and I sat down and had dinner with her agent and we offered her a license agreement to design her own slippers. I can tell you that there was not one person including my current partner at that time that wanted me to do it. Every person said this will be a complete travesty. Why in the world would you put her in front of your product? I said well there are several reasons: number one, I saw what it did when we got the press and second of all you can always deal with those things. I mean there's no bad press. What you want to do is get it out there. So to make the long story short we sound this license agreement, we launched our product. Her leopard slippers is still probably all-time the greatest selling product we've ever had. The first time she tweeted out about it with only a million followers she crashed our site. So we got to learn really quickly how we needed to scale. Joe: Wow. Pat: Then she took us to trade shows. We went … she was on Jimmy Fallon playing slipper golf which is one of the coolest. If you ever get the chance you can Google it. It was really fun. I was there for it in New York. We were on Good Morning America, on the Today show, so all that stuff came from it and it turned out it was one of the best decisions I've ever made because of the way that it helped to get the notoriety around the product. And I just trusted my judgment because not one person really believed it was ever going to be something good for us. And it was exciting and since then I'm still in touch with her regularly and her management. We still do a lot of things together. So it's been a great relationship for eight or nine years now. Joe: Wow that's fantastic. A fun story too. Is there any chance of Jersey Shore coming back on the air? Have you got any inside information? Pat: They did a rewind this year but I don't know how it did. I know that she has got some other things she's working on so she's always … I mean the thing is people just … really it's amazing in our society how people sort of make quick determinations on small snippets of someone. She's actually a really sweet girl. Some people look at her and think she's this hard core partier; she really isn't. When we were in Vegas is a great example, we went out … everything she gets she gets for free. We went to a restaurant, she took a picture for Instagram, probably a $7,000 bill and with all these people. We went up to this nightclub and it was roped off area, bottles, service, everything she wanted for free. Her life at that time was just immeasurable with relation to the benefits and things she got. But what we ended up finding out was is that she was just this really calm, young girl. We went out to dinner and out to a club and she never had a drink. It wasn't the Snooki they sell on Jersey Shore; it was Nicole Polizzi which is her name. She's an adopted girl from Colombia and she has a great family and she does … she has great young kids now. She's actually a tremendous person. That's the one thing people would really be surprised at next door. Joe: I believe it. Well, I know that you got connected with Quiet Light back in 2010, 2011 or '12. I know you had some conversations with Mark about doing a valuation for Happy Feet. And as Mark often did he probably gave you some good information and suggested you go and fix that or if you want X amount of money you got to build the business more. Not high pressure at all he did the same for me in 2000. I forgot, no it was 2010, maybe we called him about the same time. But at some point, you said okay this Shark Tank thing looks interesting I'm going to give it a go. Can you talk about your decision to apply to Shark Tank, what it was like being on the show, and what it's done for Happy Feet since? Pat: Well I applied on season two originally and it was … I mean if people hadn't done the Shark Tank applications, it's like 50 or 60 pages of disclosures. It's all handwritten. You can't type it. It's so non-technical, you can imagine. And I got turned down that first year. I went to the interview process. We submitted videos and got turned down and I hadn't really thought much of it after that. I watched the show and I was a fan but I remember it they were getting ready to finish casting for season five and I get a phone call. And believe it or not I was actually on a golf course and I picked up the phone and they said look we'd like to revisit your application. We're scaling so fast. We're doing so many new things. We'd like to revisit it would you want to resubmit this application? I said well it took me days to be able to do the application and videos and stuff and I said like okay if you feel like there might be some fruit from it let me know. So I resubmitted the application, did the videos, it comes right down to the end. This is like in September of 2013 they called and said Pat look we have four or five slots left and about 18 or 20 companies where we got it narrowed down to. We want to tape so what we're going to do is we're going to bring you out to LA and we're going to let you tape in front of the producers. If they like you they'll keep you if they don't they'll send you home. And I'm like alright. So I flew out to LA and actually it's interesting because Snooki was sort of involved in this in a pseudo way. I went out and I taped my test and I went that night to Dancing with the Stars and I sat with her family and her agent at Dancing with the Stars live which was really cool by the way and [inaudible 00:15:25.0] I was done I got a call and they said look we're going to tape you tomorrow so be ready. We're keeping you, we are going to go ahead and tape it. So we taped in September of 2013. It aired in April of 2014. And I was also told that probably 30% of people they tape don't get on air. I've heard the number is less than that but there was no guarantee I was even going to get on TV. And then in April of 2014 obviously it aired and it was an exciting episode. It did not go well for a long time in there. And the way that the production was set up and the way they showed it, it turned out to be what I think is one of the better endings and exciting. So it was a lot of fun and obviously, it was a real whirlwind and since then there's just been nothing but great things that have come from it. Joe: Well you got a deal from it. You're one of the first guys I've ever talked to that's gotten a deal from it. I've probably had conversations with five or six people over the last three years that had been on Shark Tank but you got a deal. Actually, I've got somebody else that got an offer but he didn't accept it which in hindsight he should have. But what was the whirlwind part? You were there for a long time it didn't go the way that you wanted it to but you did end up with a deal, how did it go? Pat: Well you're in there … I'm just going to estimate, I'm going to say I was in there probably an hour and ten to an hour and 20 roughly. You get no break rights. There is no break. If you have to go to the bathroom or you have to get a drink forget about it. You're standing on your spot and you're answering questions and they're grilling you. And probably for the first 15 minutes to an hour, it just wasn't going well. Barbara didn't like me which most women don't like me when they meet me the first time. Then I don't know how it went, then Robert— Joe: We'll do another podcast on that and again we'll have your wife on in that podcast. Pat: Anyway it just … everything seemed to be going negatively and then I got an offer from Kevin which was one of his royalty deals which wasn't going to help me. And then Lori I really thought was going to do something then she hitched her wagon to Kevin which was really tough for me because I did not want to deal with that royalty agreement and that was really all I had on the table. And then about an hour and five minutes in I decided because Mark had made comments I asked him if I could tell him a story versus you know asking him. And I talk about my mom who had passed away and I talked about my passion as an entrepreneur and how this is a single product and some people don't do that as a company but I was going to get up every day to make sure it grew. And he made a quick comment which I'm glad they didn't cut out and he said you're the real deal and you have a great business but it isn't a fit for me. At the time I wasn't sure why I mean obviously he has an NBA franchise, we had NBA licensing, I don't know if that got anything to do with it or he just didn't want that kind of product. But either way what happened was it changed more of them because at the end of the day Mark controls more money than most of those people put together. And you're in a situation where if he is saying something like that it makes people view it different. And I think my plea is exactly who I was as an entrepreneur; passion, excitement, and getting people engaged where they feel excited about what they're going to do. Then all of a sudden Robert came back in and made an offer and then Lori and those guys wanted to counter. I gave him a maximum we wanted and understand we only took at our web addition we weren't a consolidated company with relation to wholesale and then all of a sudden Robert said I'll take that deal and I wasn't going to hesitate. I didn't even allow Lori and Kevin to react to it. I just said done and it was over. And the deal changed after the fact. It wasn't exactly the same on the show. It really wasn't anything near that. Joe: There's lots of due diligence after you shake the hand I assume. A lot of verification and it takes process. Pat: For us, it wasn't even that. Robert and I talked and he said you told me you didn't necessarily need the money and he says why do you want to do this? Well I said, first of all, I could use some money but it isn't that important now but I really need the connections and I'd like you to help me grow this company. That's really what I wanted. He said look let's just do a small deal without the money. If you need something in the future I'll try to help you but I want you to work with my Shark Tank group. We signed a deal and we've been working with him ever since. And they're fantastic. They have a Shark Tank division that's run by a really dynamic young lady and she's really good and anytime I need him I can get him. I talk to Robert occasionally. I was in his office four to six months ago before the launch of the Disney line and we went over some stuff but he's just a great guy and it's a great group of people. And honestly, I'm happy it didn't close at what it was before because it would have changed for both of us. There had been a lot more expectations on both sides and other than that Robert has helped me with anything I need from soup to nuts with business including we have so much press. Obviously, it led us to DreamWorks it led us to basically every license we want in the United States and the world for that matter. So it's really a blessing for me and it was exciting, it was stressful, it was fun, it was really scary to watch because I couldn't see the episode. I wasn't allowed to see it. I had to watch it like everyone else. And I swear to goodness I had no idea how it was going to look. And I honestly [inaudible 00:20:12.4] and I don't really get nervous. I've played basketball in a small college, in high school and I've been an athlete. I'm a very competent high playing individual but that one I was sitting there to win. I just don't know how this is going to look. But it was great. And then the one interesting thing that most people don't realize they will usher you off to an airport immediately. As soon as you get off sound stage they take you out of the sound stage into another stage. You do your post interview. They have to sit with a counselor which is required for an hour because they're afraid that some people would be suicidal. So you'll sit with a counsel when they feel like you're in good shape to leave they walk you out the door. This is not a joke. They put you in a van. They drive you to a hotel. You should have your bags packed and they will not put anyone that takes in the same hotel. They don't want you talking. We were originally in the same hotel before we pitched and afterwards they spread you out and then you fly back the very next day. So it was a real whirlwind and it was exciting but it was stressful. But everything that's come out of it has just been fantastic and it made for good television. Joe: Okay I just have to comment on the counselor part and then we'll move on to your growth and then the cash flow challenges that everybody in the audience that's an entrepreneur faces, but does Mr. Wonderful have to pay for the majority of the counselor because he says you're dead to me more than anyone else? Pat: Probably Barbara would be. She has I don't know … it was … again that part was a little odd for me. I didn't know they were going to do that but then they just bring it on me. So I'm like no, I'm in a great mood what do we need to do to get out of here now? They make you stay for an hour. Joe: That's fascinating. Alright so how did it turn out and what kind of growth have you seen since 2014? And then we'll talk about how you dealt with that in terms of financial cash flow challenges. Pat: Yeah I mean we jumped up 40 to 50% over the period of time from where we were in the baseline during at the time. It led us to get passed by DreamWorks to do a license which at the time was a very good thing but it was my first foray into a big license and it was a little challenging. You couple the fact that they were sold in the middle of it in DC universal which became very difficult because they were moving those assets in and they get people assigned, people to work with me. So the DreamWorks thing was an interesting lesson in licensing and how implemented and I didn't do a great job at it but it was a good license and now obviously we're working with Disney and Marvel and all those things came from Shark Tank so it's a great thing for us. Joe: So when it comes to a business that's growing rapidly as many of the folks that I talked to on a regular basis are dealing with a lot of the physical product e-commerce businesses that we're selling, actually I'd say the majority of them are probably less than three years old. And the reason that I see that people exit, you know buyers always say well it's so great why are you selling? It's because for that three year period they're hardly taking any money out of the business. They bootstrapped it, they put it together, and then every penny that comes from the revenue of the business goes back into buying more inventory and trying to stay ahead of it and not have stock outs. What have you done in your business to overcome some of those challenges and what advice can you give to entrepreneurs that are eventually going to be in your position? Pat: Some of it is … there's an easy answer and there's difficult answers. So the easy answer is I think anytime that you're facing cash challenges you should address that either one of two ways. Obviously, they jump off the paper to anyone. Obviously, there's banking that you get involved in but I believe that is really important to find someone who can add value to your company if you decide to do a strategic partner. Some people believe don't believe in partners but if you can find the right strategic partner that not only gives you a leg up in some of the systems and other things that you're going to encounter as you grow but also can help in the financial thing that's premium. What I did as we started to try to grow it is I partnered with someone that could afford to help scale that growth and make sure that we had a position to where we would have the product. But I also started to get creative with vendor relationships. For instance, there's a manufacturer that I work with on licenses that is one of the biggest manufacturers of plush in the country if not the biggest. And I went to them because their margins were really low when we talked about and I said what if we could raise your margins by you going ahead and using your scale and your manufacturing abilities. You send the product in, we have the ability to pay for it as we sell it almost like a consignment deal but we can help you develop a division where your margins grow if it's not capitally intense then it would make sense for both parties. So what I tried to do is be very passionate with people I could put around me in vendor partnerships to try to get them to help me with the initial product I needed to do anything. We developed a brand new credit slipper called zlipperz; Z-L-I-P-P-E-R-Z. That was a collaboration with a company on being able to develop the actual design and to make the product and then we didn't have to put a lot of money on the pocket because we're putting a lot into the system side. I think you just have to talk to everyone you can possibly think of. It doesn't have to be an investor, it doesn't have to be a bank, it could sometimes be your vendors, it could sometimes be family, it could sometimes be a warehousing and distribution company. I mean I almost … I talked to a warehouse and distribution company one time and said look if you could bring your distribution to us we'll help invest in some of the product and we'll mark that back up to be able to help get the distribution business. So there's a lot of ways that people can scale businesses if you put the right people around you. And I think you just have to be willing to have those conversations and think creatively on how to grow your business. Joe: I think you're absolutely right. The more I've talked to different entrepreneurs in this situation it's being likable and it's working hard and it's getting lucky back to the reason you are in the business here and now. And again I don't mean to make light of being lucky because it only came from your hard work and dedication and being willing to take some risks by hopping in a car and drive four hours to Chicago just to meet with the agent of Snooki when you didn't really know. You didn't know what she was all about. So you got to do those things. Well, we had people on the podcast that sort of break the mold in terms of being able to buy internet based businesses because they use local banks because they've built relationships with them. They go and they talk to them, they shake their hands, they see them face to face, and they instill confidence in the bankers, other types of lenders, investors, family funds, family members, warehouse owners, shippers, whatever it might be their goal is to stay in business and to grow. And if you can do what you're talking about and make it mutually beneficial then they're going to help your business grow as well. We do that every day. It's not just brokering and trying to sell a business for the absolute maximum price, it's trying to achieve the goal of the seller. Sometimes they're trying to get it sold very quickly with a better set up and transaction. Maybe all cash close in 30 days other times they want to max it out. They're willing to take a small note on something and hold the business and deal with that emotional stuff you go through for a little longer in order to reach the goal. So I like the fact that you're talking about bringing in other people and talking to as many people as possible to make something mutually beneficial. Well, what would you say has been the biggest challenge and maybe the biggest mistake you've had to have made in terms of finances in cash flow and things of that nature? Just pull on out of your hat to— Pat: Well it's interesting because I can tell you I've made hundreds of mistakes but as I've talked about before there's … let's just say there's a hundred there's less than three that I would regret because the other 97 led me to something that is always better for business. So I'll give you a great example when I was growing the kiosk business my father and his wife Sharon who started it basically had … I don't think they had more than 25 kiosks at one point in any seasons which is still a lot if you're talking season November, December. When I bought it and started doing distribution I changed it up. I brought them into the warehouse because they use to sell only containers. They bring them in to container loads, they bring them in to Seattle or LA Portland and they'd send it to customers. They never touched a product. They didn't have a warehouse; didn't touch it. It was basically just an order company. It's like an FOB order. What I decided to do was get a warehouse and bring the product in, get the warehouse to scale, put people in there, break the containers and ship whatever they needed. So if they didn't get in the 4,000 or 8,000 pair of containers I could still sell. So we went from 30 to about 300 kiosks in about four or five years. So we were one of the bigger kiosk programs seasonally in the United States. We had them from every state. You know I had one guy that ran 20 of them. So what I couldn't see at that time were two things: one, how good that would be and two, how catastrophic it would be. And it's interesting that they're both. And the reason they were both is I started to get so much product and we were so seasonal that I was taking chances on buying product in case we added a few kiosks late or someone needed more or whatever and that was just that all that was doing was rolling the dice and eventually figuring out what year it was going to come up craps. That you ended up a year where you had a million dollars in products sitting on the floor for nine months to a year that you didn't have money to pay for. So I was sort of in a position to where I was betting on to come a little bit more than I needed to be with the kiosk business so it became catastrophic with relation to cash flow. And I ended up having to partner with someone to be able to make sure that I could hedge it and grow. But at the same time, it was the biggest blessing I did because as we put the slippers out there and our name and buy HappyFeet.com was on the back people learned about our brand and we started to build that same funnel I talked about. It's funny how my hands are always down here than they appear but— Joe: And if you had the video I can see that funnel, that visual that you're doing. Pat: I just let everybody know I move my hands we're not even on video. Anyway, my point in this is that it helped grow what we … the scope of the business. It looked bigger. It looked like a company. It looked like something you'd want to be involved with. So all these people started taking notice and we did NBA license, we did NCAA, we did NFL, we did all these different things and we really expanded the base of the product. And it's something that … you know the first container they bought was four styles in three sizes or four sizes, there were 16 SKUs and now we have over 5,000. Joe: Wow, incredible. Pat: So it was catastrophic to our cash flow because it nearly broke me and it should have and still trail the business for years after that because I made the decision. But it's hard to be upset about it because we were in a position to where we decided that we couldn't continue on that trajectory. So we cut the kiosk business back, we concentrated on the .com and what we found out was people were conditioned to buying a product and if the kiosk wasn't there that year they bought it from us for Christmas. So those leap years and those difficult things it's almost hard to be upset about it because it was almost like the lost that you would have taken or the aggravation tax. It was something that you really needed to be able to grow the company overall. So it's really hard to regret that. Every decision that I made that's been bad I always look at something and that thing could be better. The DreamWorks thing, I was terrible at it. I didn't understand any licenses but now I have learned some things about it that going into the Disney/Marvel deal that helps me really understand it better. So I don't regret a lot of those things. I just try to learn from them to get better and back to the point you talked about with relationship on scaling the cash, be passionate like I was. When I talked to people they get excited about building products, they're excited about doing businesses and doing all these things. If you go in and find people that have capital that don't operate businesses and you're passionate they'll put you in place to make you successful because at the end of the day that's what you're going to do for them. It's all going to come around and that's why I have to maneuver so I have to jump up every day and say I want to be passionate. Sometimes it's been hard for me to do that because it's tough but that's what I'm always trying to do. Joe: Yeah it can be exhausting for sure. Let me just pivot here, you've talked about kiosks a lot, it's what you know. You know very well. You're in the ecommerce world now and licensing and so on and so forth. I've been in a few events, Mastermind events where people have stood up and said hey what are your thoughts about me taking my brand and starting in the kiosk business and expanding in retail that way instead of a retail store? What are your quick thoughts on that for folks that are out there thinking of that now? Is it a pain in the ass? Is it worth it? Is it challenging? Is it too much, too late? What are your thoughts? Pat: Let's say … let me answer two ways: number one, for our product as big as it is and needing storage for a couple of months a year it's a very difficult sale. Because I think it's challenging, it's tough, it's a big investment, they want too much per square foot. I personally think that the kiosk and especially retail business is terrible. That's just my opinion. I just think retail, in general, is bad so when it falls down to that and what you see malls do is go away from branded products and good looking kiosks in the past to getting anything they can get in there. It's now like a flea market. So I really don't think it's a very good business unless malls turn around and change it. As far as retail goes you're making a huge commitment to what you're getting in front of customers. Right now I think it's very difficult to get in to retail and be able to scale. But if your product is small enough and you have the ability that you can get people to run them independently then yes I would not sign a lease all over the country as an independent company and then try to make it work for one hug and then have 25 or 30 locations. It's not a good business plan. I think some people have to go to retail. Luckily I'm right now knock on wood I'm not in that position to have to do that. It's not a tremendous business but it's not a bad place to start if you have to. Joe: Okay I got you. Alright Pat you've been an entrepreneur for 30 years, there a lot of folks out there that are just starting off on their entrepreneurial journey some of them are 20 years old, some of them are 50 years old and are quitting the corporate world any last minute advice for those that are just beginning that you can share? Pat: Yeah don't quit your job until you have a built business. I mean I talk to my sons, my sons don't work in my business because we know that I can … first of all, I need them to go and find their own way. And I want them to be able to go out and understand what it takes day to day to be able to work at this job and bride. If they were working for me then I know that they would get a little bit of a sense of complacency. But I tell them if you want to start a business start it while you have a job. Something that is not taking you away from a job, not like you're living and working for someone all day and then taking some of those money. See if you can make a run in whatever product or business you want to do, keep your income so you don't add that stress. There's a stress to starting a business you need to make sure you have an income. If you can figure out how to make that and navigate that as a new entrepreneur, then I think that you have an ability to have a good balance. Either way, you have to be ultra-excited about it and willing to do anything. I'll give you a great story and I know that some people may have heard some of the podcasts, I had a guy that was an entrepreneur here in Louisville that I work for at that golf shop and I told him I said I'm going to go start a business I think I'm going to leave this job is there any advice you can give me? And he said well you're moving from a meal ticket to a suit lot and understand that's not going to be easy. There're going to be days when you're going to worry if you can even have food on the table or whatever it's going to be and you're not going to have a fall back. You're not going to have that check coming on Friday and you better hope it shows up in the mail paying some of your receivables so you're not going to have anything. And it's stressful and some people look at the excitement of taking a product and taking it to market and say hey I can do this so I could really make this work but they don't understand the other intricacies to running a business and stress that comes with that. It's not easy so the biggest thing is just to make sure you're prepared for that. Number two, I'd like you to keep the job and then I would find some mentors to put around you. A board that is a pseudo-board; it may not have to be a board of directors, it's not that sophisticated but people that can help you understand and navigate the problems that you're going to go through. You're going to find them. Joe: Awesome, that's great advice. Pat Yates, HappyFeet.com thanks for coming on the show we'll talk to you soon. Pat: BuyHappyFeet, B-U-Y HappyFeet. Joe: There you go BuyHappyFeet.com I'm going to go buy some. Thanks, man. Pat: Thank you Joe. Links and Resources: Happy Feet Pat's LinkedIn Profile  

The Quiet Light Podcast
The Episode in Which Joe Gives Ryan Daniel Moran “The Goosies”

The Quiet Light Podcast

Play Episode Listen Later Aug 21, 2018 40:39


Ryan Daniel Moran was a preacher-in-training turned entrepreneur. He moved to Austin with little to nothing to his him name, and launched Amazon businesses that he eventually sold for over 8 figures. Ryan did us all a solid – really – by documenting and sharing his journey. The Freedom Fast Lane Podcast helps entrepreneurs at every stage of their business, from startup to exit. In this interview, Ryan shares his top three “mistakes”, or as discussed, things he wishes he did differently as he looks back. He openly shares his story and journey, in the hopes that other entrepreneurs do things to maximize the value of their business (and life). Through Ryan's conference, Capitalism.com, he helps bring like minded entrepreneurs and experts in the ecommerce space together to build brands and businesses that last. While he may be a preacher-school-dropout, Ryan still has a way of delivering the goods when it comes to advocating doing the right thing…so good things follow. Episode Highlights: [1:25] Who is Ryan Daniel Moran? [4:38] Is it better to buy or build? [6:43] Ryan thinks we're in a “seller's market” [8:05] What are Ryan's “mistakes” and what would he do differently. [11:30] Does it matter if you like your buyer? Does likability matter? [13:52] The likable buyer story…who won out over an all cash buyer. [15:12] Mistake # 1 – playing the short term. [17:25] Mistake #2 – telling people what to do and diminishing their talent. [18:51] Ryan shares his staffing team numbers. Inhouse and remote. [20:06] Mistake #3 – Ryan wishes he spent more money on advertising, customer acquisition, and brand building. [22:51] Why is a 100% Amazon business worth less than a Shopify store? [24:00] What channels would Ryan expand to – beyond Amazon.com [25:30] The first “nut you have to crack” [27:02] Ryan disagrees with Joe! [30:40] Brands last, product businesses don't. [31:06] Should you be thinking about a possible exit at all times? [33:05] What gives Ryan the “goosies”. Ok…he didn't say goosies, that was JLo. [33:58] Know what you will do with your money before you sell! [36:10] Should you plan your next brand before you sell, or stay focused? [39:29] How do you get more Ryan Daniel Moran Transcription: Mark: So if I could go back in time I would do a number of things different than I did in my entrepreneurial past especially before I sold my first company. And I have told you the story before that when I sold my first company I sold it for $165,000 only to find out that a year later the same person who bought the company got an offer for 350,000 without changing anything about the business at all. So … and there's a lot of regrets I have by not going back in time obviously I think anybody would like to have that ability. Joe: I'm glad it's that instead of saying you're bringing me on as a business partner. Mark: Well, you're here so I can't … I might not say that to your face. Only when you're on vacation and I have somebody else filling in as guest host. Joe: Well, Jason doesn't listen to the podcast, let's talk about him. Mark: Right. Exactly. Joe: Conversation … no regrets there. Yes and Daniel Ryan Moran was our guest and he talked about some of the regrets or as we called the mistakes because that's how he learns in life as many of us do by making mistakes and in trying not to make them over again. Fascinating … fascinating yes they're our podcast today Mark. I don't know if you recall … if you were there for his presentation at Smart Record over the last summer in Austin but he got up on stage and he spoke for 60 minutes with no script, no PowerPoint presentation and everybody was captivated. And the information that he has in it … volume of entrepreneurs that he works with and the velocities, and the approach, and everything about the way he does business and the way he literally … I mean not literally, preaches business. Okay, he's a … he was going to be a preacher so I want to say preacher school dropout. He chose to be an entrepreneur instead but the way that he talks about things is spot on with the way that we see the most successful entrepreneurs run their businesses. They focus on a number of different things and they implement those and maybe someday if they choose to exit they're in a great position to do so. Ryan talks about all of that including his own two exits that combined totaled over eight figures. Mark: Daniel Ryan Moran, same Moran that comes from Freedom Fast Lane right? Joe: Freedom Fast Lane Podcast where he talks about his story. You know five years ago he had a car and he drove to Austin, Texas and he decided he was going to launch an Amazon business and record his journey. And his journey is not over yet. It's on a new adventure, a different larger adventure but his journey kind of came to a new chapter after selling the last Amazon business that he had. But he talks about it all the way through on the Freedom Fast Lane Podcast. He got tired of seeing people do things the wrong way and learned ways to cheat at conferences and started to do his own conferences through capitalism.com and bringing good like-minded people together that build strong foundation long term value businesses and he talked about all of that today. Mark: Fantastic I can't wait to hear it. Let's go to it. Joe: Hey, folks, it's Joe Valley from Quiet Light Brokerage and today I've got somebody that a lot of you might know already. His name is Ryan Daniel Moran. Ryan, welcome to the show. Ryan: Joe thanks about having me in, let's make some magic. Joe: Listen I was having a barbecue last night we had some friends over and this is an absolute true story and one of them is an entrepreneur wannabe. She's in the corporate world and she bought some Amazon products and she tried something and it didn't work but she's going to go at it again someday and she's grilling me … she always asked me how things are with Quiet Light Brokerage and she starts asking about the podcast. I said yeah we're doing all right and hey have you ever talked to Ryan Daniel Moran just like that and here you are today we're talking to you. You're kind of a little celebrity I should say … little, you're kind of a celebrity; a rock star maybe for this … look it was a 50 year old woman. She's rather attractive and she knows who you are. Ryan: Well you know it's like my ideal market is attractive 50 year old women. We all know that that's the market I'm after right now. So tell her to give me a … maybe call me maybe. Joe: She loves listening and the fact that you're first and foremost helping people that's what she loves about it. She says someday she's going to get back to it but she loves listening and she's going to take that leap at some point in the future so good for you. And listen as I said prior to the intro we don't do fancy intros. So if you would … I know it's hard to talk about yourself but give folks a little bit of background about yourself; who you are, where you came from, and what you're all about. Ryan: Yeah. I invest in and I start physical products brands. And the way that I got to that point was actually as a pastoral student back in 2006. I built my first website and started my first business in between high school and college on my shared dial-up computer in my living room and hand coded websites using raw HTML in a software program called Dreamweaver. If you are old enough to remember Dreamweaver and you know it well. So what's funny is we hear a lot of people who are talking about building and … or selling businesses thinking about the good old or either like all the opportunity is gone now or the good old days have these … man, I was hand coding websites in Dreamweaver on a dial up computer. Do you realize how much more opportunity we have now being able to build websites on platforms and sell products on Amazon? So the opportunities are way way bigger now but I was just trying to find a way to supplement my … what I expected to be $30,000 a year salary as a pastor. Now fast forward a few years I did not finish the pastoral route for reasons that would be probably best left on a second podcast that you have Joe that's going to be called quiet skepticism. Joe: Yeah, some kind of … something where we're helping people, we're guiding them off that path right. Ryan: Exactly; quiet go to the light we'll call it. And I did not finish that route and I became a full time entrepreneur. So I was in really involved in the internet marketing space for many years until I really decided or realized I hated that crowd. I didn't like hanging out with those people. So I was like what a conference where those people hung out and I took the skill set that I had from Search Engine Optimization from Pay-Per-Click Marketing from Email Copyrighting and I applied it to physical products brands. And I've had a couple of different exits in the physical products world and now I'm an investor in physical products businesses because it's what I know. It's who I can help the most. And I think it's one of the biggest upside is in the market right now whether you are selling or building a business or buying a business, I think there's a tremendous amount of white space with the transition from big brands into more what I call micro brands mostly Internet based that's where I see the biggest opportunities right now. So that's a … I've had a couple of exits and the total over billed were eight figures in cash exchange. I still own a minority stake in a few of those businesses and have a portfolio business but my primary focus is investing in physical products brands and I have a media company for entrepreneurs at capitalism.com. Joe: Okay, so when it comes to investing people look at buy versus build. In fact, we had a podcast recently with our newest broker Walker Diebel who wrote about a book called Buy Versus Build and there's a really long subtitle and it was a … it quickly rocketed to the top 10 podcasts that we have. And you're talking about investing, do you think it's better to buy versus build at this point in your career or would you recommend somebody that's just starting out to scrape some dollars together and bootstrap something and start? Ryan: Yeah, it's better for me to invest but it wasn't better for me five years ago. In 2013 when I took my first sale on Amazon.com for a physical product I know business investing in physical product brands. I know businesses buying physical products brands now … back then I was buying a lot of websites. And you know what I was buying Joe? I was buying search engine friendly websites with email lists … social media followings weren't this big back then, but with audiences, followings targeting each market that sold affiliate products; because that was what I knew. Joe: That's what you knew. Ryan: I would have been a lot of people who are like looking for the system and that you are the system. You are the machine. And your machine is unique to you. So applying your machine to different opportunities is where value is created. So for me, I'm … at this point, I have more upside as an investor because I already have all the retail connections. I have the connections to sell businesses. I'm connected to other investors. That's my own skill set but the entrepreneur who I invest in is way better suited to start that company than I am and that's what capitalism is. Where I get the value that I bring in combination of the value that you bring and when we bring them together it's greater than the sum of our arts. And so for me yeah I'm … I have more value as an investor but to say like it's better I think would be a mistake. Joe: You know I think you're absolutely right. It depends upon the individual's situation without a doubt. I bought and I've sold and I've invested as well and I can say each were successful in their own way and each were very very difficult in their own ways as well. You'll learn along the way from the mistakes mostly. Ryan: If I could Joe I will add though, I mean globally I think we're in a seller's market. I think we're looking at buying versus selling if I give it a binary choice I do think we're in a seller's market right now. Joe: I have to agree with you 100%. When we have a good quality listing come … I had a conversation with someone this morning who wants to buy. And he's a referral from somebody who already bought and this guy is doing great so I want to do what he's doing. And the response is look when a great listing comes along you need to be prepared. So the more listings you look at the more you're going to know the right shit when it comes along. And you need to be able to act fast because you and a dozen other people are doing the same thing and they're going to make an offer on that business. So I agree it's a seller's market but at the same time, the multiple still don't get pushed too high. It's still the buyer to decide that. You and I as sellers, as brokers can pick whatever number we think the value of the business is but we don't make the final decision at the end it's usually the buyer. The seller's got a lot to say about it because they can say yes or no. But it's still the buyer makes the decision in terms of the value for the most part. But you just recently said you've exited a couple of different times in the last few years. What did you learn in that process if you look at the exit? Or maybe do you want to talk about the fact … the mistakes you made maybe building and what you can do to help the entrepreneurs that are listening or perhaps the exit and maybe a little bit of both. Ryan: Yeah well, there's one thing in particular that I think was on the stake if you will and it was thinking that the buyer had all of the control. By the way, this is C money right here or by a … my … he is the one who wants to make great on the Internet. Joe: For those listening and not watching somebody just walked into the background. Ryan: Yeah, so the mistake that I made was thinking that the buyer had all of the control. And if I could redo this Joe, the truth is if you built something, if you built a business you're the one with the asset. You're the one with the goods that money is chasing you, people want to buy you and so often the seller comes into market and is like the thing that I'm after is the check and I'm hoping that I get the check and that immediately puts you in the frame in which you're the after. You're the one who is not in the power position. So we share them with an offer and the seller is like thank you please oh please Mr. Money Pants I would like your money. And now they're in a position to beat you up over earnings, over … in the negotiations. So what I wish I had done was recognize the fact that I'm the one with the goods. I'm the one with the asset that people want. I'm the one courting the offers. People are making offers to me. There they want one I got not the other way around. So if you're in that position and you're willing to say no and you combine that with the turn ship that says here's what I'm looking for, that to me puts the seller in the frame of mind repair and the negotiating position. I didn't do that. I discovered that after the fact and I really could only have learned that by going through the process. I learned … I personally learned by making mistakes and paying for them later. Joe: We all do. Ryan: Yeah but that's a mistake that I wish somebody had told me before I went to market. Joe: Or is it … the buyer that you're referring to is it a strategic buyer or did you have your business officially listed and people came to you? Ryan: Yeah, we had it listed and we were acquired by an equity group. I still own a minority stake in that company and I'm in great terms with the equity group. I'm really happy with the buyer. I have become friends and obviously business partners at this point. But had I gone to the market with terms that I wanted I probably would have ended up in a more favorable financial position when it came to closing. Joe: Well, the next time you have a transaction you'll know that and you'll be able to make adjustments. Ryan: Right. Joe: Really I think like you said the check isn't the end all, it's more about … I think almost in many ways what your next adventure is going to be. I know that a lot of folks that I work with and myself included when I exited I was just … I sold too late. I was emotionally tired and I think that's the absolute wrong time to sell. You should sell … you should plan to sell, just don't wake up and decide to sell. But when you're emotionally tired you're not doing everything that you can to maximize the profits of the business and that's going to drive down the value. And you're going to get beat up at the end if you're so committed to that check that you can't negotiate a little bit more for something else and be willing to walk away from that buyer if they're if they're not a good buyer. And correct me if I'm wrong but just tell me how you think here, I always find that it makes an enormous difference if you like the person that's buying your business or the one … if you're buying a business from. It's not just about the check. It's not just about the money. It's the people you're doing business with. And I think that as a seller you can get more value if you're respected and professional and likable and the same as a buyer, if you're a buyer and you're professional and likable and complement the owner on the business that they built that you're going to get a better transaction out of it versus all the hard core raw street negotiations. What are your thoughts on that? Ryan: I don't know if you are right or wrong because I intentionally don't do business with people that I don't like. [crosstalk 00:15:45.7] Joe: So, therefore, anybody that wants to buy a business from you if you don't like them then you've got to do that to work with somebody you like. A classic- Ryan: I don't think everybody has that mentality though. I think I would even go as far as to say the majority of people are buying and selling based on numbers or like the deal and very few entrepreneurs get to find every purchase as a person. And so I think most people are approaching it by numbers and logically rather than is there a connection here. I personally … just like for the protection of my own lifestyle am willing to say no to anything that I personally don't like. And what that does is it always puts me in a strong negotiating position because if I don't like somebody I have no problem walking away. And the person who has … the person who is most willing to walk usually has the upper hand in the negotiation. Joe: I agree 100%. I find that from a buyer's perspective one of the questions I get a lot from buyers if I'm up on a panel or speaking or something like this is how do I negotiate up against an all cash buyer, somebody that's got more money than me? And the tried and true answer is really is be likeable. It's … you don't necessarily have to have more cash to get the deal done and I … the classic example is I sold a business last fall. It was about two and a $2.5M and the guy had two full price offers within the first 10 days. One was from an all cash buyer who was a little rough around the edges and was hard to work with. The other was from a really likable guy who was buying with an SBA loan and actually required 10% seller financing in that. The entrepreneur, the seller of this business had the choice; you could go for the all cash or you can go for the guy that he liked. He actually chose the full price SBA buyer and chose to carry a 10% seller note versus working with somebody that he didn't like. So in that situation, I think it makes a difference in terms of … buyers that are listening be likable. If you're working with a broker you absolutely have to be likeable because they're … as you said it's more of a seller's market. And there's a lot of buyers out there. There are buyers that are competing for that same business and when they're likeable they're going to build rapport and when you build rapport you sometimes learn about things before they hit the market as well. Ryan, talk to me about some of the mistakes you've made in your own business. Maybe two or three of the biggest mistakes that comes up at the top of your head. Looking back and learning damn I screwed that up if I ever do that again I'm going to it a different way. Ryan: Well, every time I've made a mistake it was because I was playing the short term. So when I have made short term decisions I usually make bad decisions. I like to say that the longer term that I can make decisions the wiser I am and the better decisions that I make. I said before that people forget that behind every purchase is a person … that goes for customers too and all relationships are long term relationships. Or the best relationships are long term relationships. So if you are aware that behind every transaction is a person and you play it like it's a long term relationship you end up building the better company. Sometimes in spite of a short term decision, meaning … for example as we're recording this there's a … in the Amazon there's a thing we're calling review gate where Amazon is coming in and hit them onto your businesses and removing their reviews. And it's been a bloodbath. It's been absolute bloodbath. And the people who are soaring through it are people who have been doing of the right things the right way for the longest. And the people who are being hurt the most are the people who are the most profitable over the last couple years because they played the tactic game. And like there's absolutely room for tactics inside of every business but those who have been building really solid brands and building audiences and building followings they're going to soar right through this and capture a whole heck of a lot of market share. So the mistakes that I made were always in saying what's the Band-Aid solution here rather than building for the long term. So we take a rule now in the business that we're building, we say okay here's the situation that we're in rather than talk about how we're going to fix it let's say what do we wish we had started doing 90 days ago and that would have made today a lot easier to get through? That's the decision that we need to make today which is a really hard conversation to have when you're in reaction mode. But we force ourselves to ask that question because it usually addresses whatever the root cause is that we need to fix rather than going for a Band-Aid solution. So that being mistake number one, mistake number two would be as a leader telling people what to do. There's a great book called Multipliers that really morphed my brain in terms of how I can affect [inaudible 00:20:52.9] people. And what I realize after reading that book was that I have been diminishing the talents on my teams by telling people what I wanted them to do rather than casting a vision and inviting people to build their piece of that. Now that seems kind of a nuance and maybe overly simplistic but I couldn't emphasize enough the accountability that this book brought me on how much I was diminishing the people that I was working with, And the difference in energy and growth that happened once I started correcting those issues. So as an entrepreneur, we often have like our baby that we're bringing in to our team and we're telling people how to build the baby when reality if we're working with smart people they'll probably own that area of expertise better than we can even if we can't see it. And the big distinction of that book highlights is someone who diminishes their team is usually the smartest person in the room but a real leader makes the rest of the team like they're the smartest person in the room. And that was a huge shift in my overall happiness and with the growth of my companies and it's something that I wished that I had done before I was building companies to sell them. Joe: What kind of staffing do you have just out of curiosity? Ryan: Well, the company that I just exited was a team of four. The portfolio of companies … of brands that I have is a team of five. And my media company capitalism.com is a team of six. Joe: And are all of those people in-house or do you do some … or the VA's are they working remotely or they come to the office every day? Ryan: I'm only counting in-house people so that does not count freelancers. But no not everybody … we have … there's, we are a distributed team. So like I'm recording this in my office right now, one of my team members is just right here my side. But people will come in and out. Some people … like we have a team member in Canada, we have a team member in Germany, but they're all full time dedicated to [inaudible 00:22:47.0]. Joe: Good. I asked that because you know most people that are listening would probably be considered lifestyle entrepreneurs and they have to outsource staff and VA's and people working remotely. So it's good to know that even though they're not coming into your office every day this is really important [inaudible 00:23:02.3] get their short term vision don't have that long term vision so that you don't have major major stomach aches with algorithm updates we'll review gates in that situation and then over managing of the staff you know let them be their experts; anything else that comes to mind? Ryan: As far as big mistakes that I've made … I mean we talked about the mistake in selling and as far as building the business I'll say I wished that I had spent more money on cold advertising. Like always like there's never been a business that was like ah you know I think I spent too much on advertising. I've only ever said I wish I'd spent more on advertising. Joe: Yeah, where would you have spent it because these are primarily Amazon based businesses correct? Ryan: The businesses that I personally built, yes. Joe: Right. So where would you spend that money? Ryan: So we just identified the problem because you said they were mostly Amazon based businesses so had I done things even better I would have doubled down on non-Amazon advertising. Because what … if you're an Amazon business which is like nails on a chalkboard to me because it means you're dependent on somebody else. Joe: Right. Ryan: It means that you're dependent on this channel and you've got to go double down on building a business has a different leg to the stool and that when you combine those things together magic can happen. If you've got an email list of 100,000 people that you've built from cold advertising or from buying tripwires and now you're combining that with the power of something like Amazon.com that's really really powerful. Most physical products sellers never make that [inaudible 00:24:32.6] or they get so myopic into one channel that they never spend the money and the time to go develop the advertising for another channel. I wish I had been comfortable losing my rear end on other advertising channels until I figured out those systems. It's interesting Joe, it's true that every channel you will lose for a while and then you figure out the systems and then you start to grow through it and you get profitable. The strange thing is that most people once they've figured it out and get profitable they're unwilling to go do that hard work in another area. So the way that Amazon worked in 2013, '14, and '15 was if you spend until you grab long enough you could outrank everybody else and go win but I never … I lost that hustle when it came down to Facebook Ads or influencers and people start looking for the immediate ROI. In what business is there immediate ROI? When you're building a long term brand that has sales potential … like buyers are buying the systems; they're buying profitable systems because you've already gone through that hard work of developing the systems that are profitable. But it requires you to go build them so I wish I had spent more on advertising, been more willing to lay it on the line, rolled more back into reinvestment. So I'll call that mistake number three. Joe: So for buyers and sellers that are listening, entrepreneurs that are listening it's that one legged stool, two legged stool, three legged stool. If you're 100% Amazon business it's riskier than if you also have a revenue channel from Google Ad Words and driving traffic to your Shopify store and you might be doing wholesale or B2B things of that nature but right away as I've said before if you've got a business that's just at within $100,000 in discretionary earnings that's 100% Amazon same business $100,000 in discretionary earnings but you've got 60% Amazon, 25% Shopify, I guess that would be 15% percent [inaudible 00:26:36.4] my math here, another percent of B2B that business on the other side is going to be worth 15 to 20% more. So you might be breaking even or losing a little bit of money on that land grab trying to grab more customers but if you can turn that into even the same discretionary earnings that business automatically is going to be worth 15 to 20% more because the buyers will pay more for a risk averse business that'll be around for the longer term so very very good advice. What channel would you go to first? Because there are so many options these days and building a channel off of Amazon is hard as you know. You've got to learn a whole new expertise. Where would you go first and what do most of your successful folks do? Ryan: Yeah and I'm actually going to cue on very creatively sidestepped this question because the obvious is Amazon. But where I would suggest is actually people double down on where the audience is. To me, this is the nut has to be cracked if their building a sellable company. And what that means to me it is for some people their audience hangs out following influencers. For other people that is they follow blogs or they have a blog where the audiences are already hanging out. Or some people they've got a Facebook where there's an audience. Now what most businesses, especially like a million dollar businesses, are doing is they're going channel first and trying to extract as much of it as possible. Like I'm going to go to Amazon try to rank and pull as much out of this pie as possible. Only a few people can win that game but if you switch it and you say where are my people who is the ideal buyer and where are they then the channel where you collect the order can always change. And that makes Shopify, Amazon, B2B a whole lot easier. The first nut that you have to crack isn't where the buyers hang out apart from the sales transaction and then you bring those buyers to the transaction. So the transaction to me … Amazon, easy no question. Put your product on Amazon the credit card is already there, people are already looking for it. No question, easy, done. The nut that needs to be cracked is what happens one step before that. And if there is … like if you don't have the influence, the list, the following, the traffic, the pay-per-click strategy that some way to go get those people and bring them into your ecosystem I think you are struggling from the get go and that's the primary question that I ask the entrepreneur. Joe: Yeah and I think depending upon as you say the product and what they're offering some of those different channels will make more sense. You know I had a conversation with someone this morning that has several brands and one brand has incredible numbers with email marketing and that same expertise applied to that different brand doesn't do as well. Ryan: Right. Joe: They're driving people to their Shopify store though Amazon keeps growing and out phasing everything else. So I understand identify where your customers hang out and then you've got to go find those customers. To own that list though you need to send them to your own store, not to Amazon. So are you sort of balancing between sending them to Amazon because it's all there or? Ryan: No, I just disagree. So I think that the loyalty to the brand is the customer experience. And you give the customer the ability to give you money wherever they are most comfortable making the purchase. I heard Brian Lee say where it's … Brian Lee is the founder of the Honest Company, the billion dollar brand with Jessica Alba, and I heard him say once that he considers it a win when the product is in the customer's home. That's when you've wo, not collecting it online e-commerce site, not getting into retail. It's when the product is in the customer's home. However, they get it and you want to release as little friction as possible getting the product into the customer's home. You will own the customer experience when you have their data. You have the ability to communicate a message in front of them. So if you've got the email list and you send them over to Amazon, Amazon rewards that and your conversion rate is probably going to be higher sending them to Amazon that sending them to your Shopify store. So there's a balance [inaudible 00:31:12.7] I know that I can get a higher immediate customer value sending them to my own web site because I can put them through upsells and cross sells to get their immediate data versus sending them to Amazon where I am going to have to work to get their data. I don't have any upsell experience. They might see a negative review. And so the entrepreneur is going to have to play the game of where the numbers make the most sense over the long term. But I think that the actual customer experience happens in when you communicate with them. And that's in the email message, that's in the outside of just a transaction, not just where their credit card is being added but words being communicated. Joe: Okay, I get and I'm just going to repeat it for those that are … well not smarter than me; let's put it that way. So it's capturing the customer information up front, building that relationship with them, and then simply send them to the place that they can buy the product and experience the brand with the least amount of friction and get it in their home. Ryan: Nailed it. Joe: Okay. Ryan: That's my opinion. Joe: And it all goes back I would say and it's kind of almost unspoken that the brand has to be pretty amazing so focus on that first. Build a great product, a great brand so they have a great experience and then do all that other stuff as well. Ryan: Yeah and let me address that because that often brings up the question how do I identify a brand? Like what exactly is the brand. And the brand is the way that trust is communicated to a very specific customer. Most Amazon sellers have no idea over their customers they know what their product is. If you know what you sell and not who you sell to you do not have a brand. Or you might have a brand but it's really lousy whereas if you know who the person is, it makes the product really really easy. I was just meeting with one of my team members today; we were expressing the frustration over one of our brands in our portfolio. Because when we acquired it, it sold a lot of product but it had no target market. And so we've had to do a lot of work to convert that brand into an actual brand where people are not just buying a product but they're buying something and it says about them sells. Those businesses last, product businesses don't because they're commodities. You forget about commodities and the minute that there's a better price or better customer experience their loyalty changes. But when you've got the brand people are very stingy with their trust. I want to give it to you, you have them for as long as you keep their trust. Joe: Very important message right there. Ryan, any thoughts in terms of whether someone should be building this business and always think about the future and possible exits; do you try to instill in them that they should know the value of their business in the event they wake up some day and want to move on or do you just focus on building that brand and when you're ready the time will come? Ryan: You know the real … the temptation for me is to say that no, you shouldn't be necessarily thinking about selling but I know that I'm in a different spot than everyone who's listening. So I would say if you are building this to make money, be building it to sell from day one. Because the very act of being in it for the money means that you will burn out, you will wake up and want to do something else. It's going to happen. So if that … and like let's just be real about it, if you're in it because of the payday, build it to sell because that's what you're in it for and the payday is the cherry at the end of the rainbow here. If you were in it because you've got a product you want to bring to the world then still develop the systems and processes that will keep you in the position to be in your zone of genius. And that will make you more sellable one day but I don't think it's necessary for you to know what it's worth or be making decisions based on that. So these are different goals. Now I build companies that I'm excited about and I am building them in the same way that we make something valuable because I want to be in a position where I'm just in my zone of genius. But it's a different mindset than if I'm building something because it's going to be profitable. Does that make sense Joe? Joe: Absolutely; excellent …excellent. Hey listen I know we're running out of time here I just want to say that last summer I was at the stock market conference and you got up and you spoke as did another dozen or so very very successful entrepreneurs. Each and every one of them had a PowerPoint presentation. You got up there with nothing. And you talked for an hour and the audience was captivated as was I. You have a gift thank you for sharing it. I appreciate it. Ryan: I just got goose bumps. Thank you so much, mate. I really appreciate it. Joe: How do more people get to experience that and listen to you and hear what you do share? Ryan: You know I'd love to answer that question, can I offer one more piece of advice before we go? Joe: You can offer a dozen more pieces of advice. Ryan: Wow, awesome. I'll leave it to one but if you are in this to please have a plan of what you're going to do with the money when you get it. Entrepreneurs are magicians. We remake things up here on thin air. We create value out of thin air. We create a bigger pie. We make money show up. And we also make things disappear. Joe: Isn't that true? Ryan: And if you do not have a plan of what you're going to do with the money it will slip through your fingers. I know you think you're the exception. I know you think all I have to do is invest this at 8% and I'm [inaudible 00:37:11.5]. I know you think that's how it's going to be. You will ball the money. I … right now I just heard you think “no I won't”, yes you will. So if you don't have a net for catching the money and allocating the money for your lifestyle you will be back in the grind very very quickly. I promise you, I know you don't believe me. I'm here to tell you that's the case. Have a plan for what to do with the money once you get the money. It's actually my favorite conversation to have. At some point, I'll probably have more chops [inaudible 00:37:45.3] about investing once you have a big windfall. But for now, it's like have a plan like a plan is better than no plan. And that plan would probably be best done after you sat on the money for about six months and you've gotten used to that money being in the bank account. Your second question or actually your only question was- Joe: Can I interrupt that? Ryan: Please. Joe: I definitely want to get to that but in terms of having the plan to exit, I'm always telling people look have your next adventure planned. Because entrepreneurs like you say they blow through the money, it goes through their hands like saying. I'm often saying maybe get that other opportunity started and launched long as it's not competing to get the ball rolling. So that you got some working capital maybe you're going to put it in … some of it you're not as bootstrapped although you'll be more successful probably if you are. Do you think maybe they should 100% focus on what they're doing on that brand before they sell it up until the day they sell or maybe when it gets big enough and good enough and they've done enough right they can take some of their attention and start Brand B while they're selling off Brand A? Ryan: Wow, Joe. The reason I'm saying wow is because my experience is pretty unique and that was I took about a week off and then I immediately went back to workaholism and it was the worst. It was a horrible experience. Now full disclose like at the same time I was going through separation and I'm going through a lot life changes. I threw myself into work right after the sale. I celebrated by reading books on my patio for like eight days and I was immediately back to workaholism. And I like … I roasted my body, I mean I so needed a break and I did not give myself that break. I don't know if every entrepreneur was as burnt out as I was. I was more burnt out than I [inaudible 00:39:40.5]. Joe: Most ideal [inaudible 00:39:42.8] they come to me tired, exhausted, ready to move on. Ryan: Joe, it's been over a year. I wouldn't even say I'm back now. You know I'm probably operating at 75% of capacity because I never really recovered. So should you go right back into it? I don't know. I think it depends on the level you're at and your own wiring. I make really good decisions when I'm relaxed and creative. I make terrible short term decisions when I'm stressed. And when I'm in that workaholic mode I'm a terrible entrepreneur. I wish I had just blissed out for like three months; I didn't. Joe: I don't know what the folks that listen to you every week would do if you would disappear for three months though. Ryan: Well here's the thing though Joe. I kind of did. Like my podcast sucked for like three months, three to six months and I was trying … like I'm sitting in front of mic trying to come up with things to say and I was uncreative as heck. So I sort of did disappear it was just a different way. And now I'm getting back to it and it's a completely different experience. But I actually think I did my listeners a disservice by not taking a break. And if have been just really upfront and be like guys I just got an eight figure check I am going to the beach and I will call you when I'm ready. My audience would've popped but instead, I was like operating from this place of like I'm so … oh my goodness I'm so tired and I turned off a lot of people. I know it's not the answer that you expected it's not the answer I expected to give you. Joe: No, I like it. Ryan: But I think it's true. Joe: I think sleep and rest and meditation or whatever it is to focus on is absolutely necessary. So back to that original question and you know finding out what they do with the money after they sell. How do they get more of Ryan Daniel Moran? How do they experience what that audience down at Smart Market and myself experienced where you just talked and everybody listened and took notes and all that? Ryan: Well, thanks so much, man, my media company is capitalism.com. My podcast is called Freedom Fast Lane. And I say things into a microphone and we hold events at capitalism.com that are specifically for entrepreneurs. And we're actually … we just rebooted the Freedom Fast Lane podcast. I feel as though- Joe: With fresh energy. Ryan: What's that? Joe: With fresh energy right? Ryan: Well yeah, I think you'd probably feel it from me. Five years ago I started this journey as a boy and I was … I just put everything I owned into my car, drove to Austin, Texas, started some new companies, I documented the whole experience from startup to sale. And then I kind of grew up while documenting the journey. And now there's a new journey and it's a much bigger one and so we just rebooted kind of the entire audience, the whole experience in the podcast. And my podcast is called Freedom Fast Lane. My company is capitalism.com. Joe: Okay. Well, I'll make sure those are in the show notes. I'd love to see you be more successful on this new adventure, this bigger journey. Ryan: Thank you. Joe: Let's stay in touch. I think I may see you at the capitalism conference at the end of August; let's see. At the very least we'll be to as many as we can be over the next few years. Ryan: Good to see you man, thank you so much for having me. Joe: Thanks for your time, I appreciate it. Links: Capitalism.com FreedomFastlane.com

The Quiet Light Podcast
What the Supreme Court Decision on Sales Tax Means for You

The Quiet Light Podcast

Play Episode Listen Later Jul 10, 2018 41:29


Similar to outsourcing fulfillment, today's podcast guest says for many entrepreneurs, it may be best to outsource the collection, management and disbursement of sales taxes with the new Economic Nexus ruling by the Supreme Court. In this podcast, first we cover what the decision means to online entrepreneurs, and how it will impact the average business. For some no action needs to be taken. For others a lot of action must be taken. And ignoring the details is not really an option. Sometimes the least interesting subjects and work as an entrepreneur bring the most value. Well-managed financials are one such thing. Held within the broad “financials” umbrella is now sales taxes. While the answer to the questions, “should I collect” used to be grey. Everything is fairly black and white now. And the subject is never going away. Episode Highlights: Don't geek out on Sales Taxes. Outsource it. See SALT experts below. If you have Nexus it means you have an obligation to potentially register and collect sales taxes or income taxes in a given state. Physical Nexus is where you are, where your business is, where you are storing inventory or where Amazon is storing it. Economic Nexus is the change with the Supreme Court decision. The states could define other ways to define Nexus. For instance either $100,000 in sales or 200 transaction in the last 12 months – and you could be required to collect sales taxes on those revenues that occured within their state…regardless of Physical Nexus. Economic Nexus takes effect immediately for the 24 states that already have them on the books. (Links below will lead to finding the 24 states) Notice and Reporting are other ways to determine Nexus. It's really confusing! You MUST register to collect sales taxes. If you collect and do not remit, it is CRIMINAL. Hire an expert to register to collect sales taxes. There are 45 states that require it. Only register where you have to if you are a small seller. But if you are doing 10-20 million in revenue, “suck it up” and register everywhere. SALT experts can handle almost everything for you. See notes and links below. SALT is an acronym for Sales and Local Tax Experts Use www.WhereStock.com to determine where Amazon is holding your inventory. Seel link below. Taxjar is a good option if you wish to take on managing this yourself. Scott & his outsourced accounting team at Catching Clouds use Taxify (but recommend both options) The Supreme Court Decision may not increase a buyer's liability in an asset sale. Transcription: Joe: So Mark Jason got an e-mail this week and he had a question and it was “What makes Quiet Light different?” And Jason gave it an interesting answer and I want your feedback on it. It says “Well the formal answer is that we're all entrepreneurs but that's not really it. The difference is that Mark … you Mark Daoust is one of the best human beings on earth and that permeates everything we do. As a result, he attracts good people that are always doing good work with the best interest of others even if it's painful for the broker we ignore our own incentive to do what's right.” Did you pay him to say that? Mark: Yeah … well, I'm not going to say exactly how much but he got paid for that. I think it's a little over the top. I mean really. Joe: But he didn't write that down. He said it to someone and someone wrote it down and shared it with me. And I … look I shared this to put you on the spot. You look by the way very much like an internet entrepreneur today. You've got a t-shirt with some ducks on it, a little duck, duck going on there. Mark: Duck, duck, gray duck. I'm from Minnesota and I [inaudible 00:01:53.2] I'm going to put this out there, it's a more sophisticated game. All you parents out there stop this duck, duck, goose crap. It's all duck, duck, gray duck; that's what we're doing here. Joe: Don't know if we have time to go into what the heck you're talking about with duck, duck, gray duck. Well just … I thought you were going into hockey or something like that. I wanted to touch on one more thing you know Jason talks about that and you and the environment that you've created here and the caliber of entrepreneurs and advisors that you brought on. I listened to a podcast last night with Chuck Mullets and for those that are the buyers in the audience today, if you have not listened to the 27 tools for due diligence I think it was, listen to it. Because some of the tools in there were just amazing and I've been doing this for a long time and I haven't heard of any of them. I have to take my hat off to Chuck and give him some compliments for the job that he did there. I was really really impressed. He's a … I'll say it, he's a lot smarter than I thought he was. Mark: Ah, you know the bar was pretty low, to begin with. Joe: But I want to just raise myself up a little bit and show you something. Mark: What's that? Joe: I have on- Mark: Oh you have on Chuck's shirt that he made for you. Joe: I have my Quiet Light logo shirt on. So there you go. Mark: While I'm wearing ducks. Joe: Oh I didn't shade you there. Okay, listen this podcast is about something that's really important. It's about the Supreme Court decision to change the way that sales taxes are to be collected. Let's not get into details, let me just tell you that we had Scott Scharf on again. We specifically talked about the problem and the solution. What does this mean to e-commerce entrepreneurs and how do you solve it? I can tell you right now when you get three quarters of the way through the solution is … if you are up for it just like you outsource your fulfillment to a 3PL you can outsource your sales tax collection and distribution and management. And if it were me that would be my recommendation but it's absolutely there and you don't have to deal with all that little detail and there's a lot of it. Mark: Yeah and I like to say a word to people that share a person holiday with me, and when I read and hear about some of these red tape sort of restrictions that are coming down, I have a tendency to plug my years and go la-la-la-la I don't want to hear it. Joe: Right. Mark: I like the days of the free open web when it was just easy to do things. But the fact of the matter remains this is the direction we're going. Joe: Right. Mark: Restrictions, regulations are going to come into play more and more frequently and these aren't necessarily bad things we just needed to understand how to navigate them. And so an episode like this is timely, I'm glad that you got Scott on the line to do this episode because this is the [inaudible 00:04:34.0] time the episode given that this decision just came down a few weeks ago. Joe: Yeah some of the things that we talk about here on the Quiet Light Podcast are painful as entrepreneurs. Particularly those that don't love this detail, they love the excitement of driving revenue and the marketing aspect of it. These painful things when you pay attention to them will make your business more valuable if and when you ever decide to sell. So again listen to the whole thing. Get through it, he talks about it in detail point by point. But I try to keep him on track so it's not … he doesn't geek out too much. Scott loves this stuff. Mark: Scott? Never. Joe: He calls it geeking out himself. So we try to get on track to … okay how do … how does a guy like me, how does a guy like Mark, like an entrepreneur listening, how do they overcome this giant massive ball of red tape? And really, I think the answer is, outsource it. And we're going to give all of the ability to do that down there in the show notes. Mark: Sounds great. Joe: Let's go to it. Joe: Hey folks it's Joe from Quiet Light Brokerage and today I've got Scott Scharf on the line with me from Catching Clouds. And we're going to talk about the Supreme Court decision that's come down regards to sales taxes, define what the problem is, and then give you a solution to it in the second half of the podcast. Scott welcome … welcome back actually right? Scott: Yeah it's great to be back. Joe: All right so you know we don't do fancy introductions. Tell these folks who you are and what you do at Catching Clouds so they understand what level of expert you are here. Scott: Yeah at Catching Clouds we're e-commerce accountants who are really experts in the accounting e-commerce businesses and of course sales tax management; which is why we can talk about this topic. We've been doing this for the last seven years and we love solving problems for e-commerce, sellers, anybody that we interact with it. And this Quill decision is definitely one of those things. Joe: Quill decision, that it that's the name of it? Q-U-I-L-L. Scott: Well, yeah so Quill was a decision from what 26 years ago that the Supreme Court overturned their own finding that really delimited what states could do to go collect sales tax from small businesses that are selling across state lines. Joe: Good. Okay, so they overturned it. So, folks, you heard Scott say that they're e-commerce accountants and I just want to reiterate … and you know my little soapbox here. E-commerce accounting, accounting, good financials, clean documentations, it's one of the four pillars to get maximum value for your business. So if you're using anything other than Xero or QuickBooks seriously consider talking to Scott if you want to get maximum value for your business. Because Excel spreadsheets for a 20 million dollar company or if you're doing a half a million in revenue doesn't matter, you're going to lose value in the sale of your business if and when some day you decide to sell. So there's my little pitch, definitely- Scott: [inaudible 00:07:24.7] Joe: these services. Okay so if I understand this correctly this is no longer physical nexus which I think everybody that's listening knows the definition of it; what it means. Is economic nexus, can you tell us what the heck that means for these folks? Scott: Yeah so actually physical nexus still applies so it's not that they got rid of physical nexus it's just not the only consideration deciding if you have [inaudible 00:07:52.0] of fancy. Joe: So let's say what physical nexus is anyway then, go ahead. Scott: Okay. Well, physical nexus … well, first nexus is if you cross a threshold and you have nexus based on some parameters means you have an obligation to potentially register and collect sales tax or income tax or other things in a given state. So if you don't have nexus you don't have to do these things. Okay, that's the first part. So there are different types of nexus, the first one is physical. It's been around for quite a while. It's where you are, your business is, your business is founded, you have employees, you have property. Okay for an e-commerce business, it's wherever you're storing your inventory. If it's at a 3PL on either coast you have a nexus where you're storing your inventory. If you're an Amazon FBA seller, when you send inventory to three or five warehouses they'll move it to up to 26 states that's your inventory and it creates nexus. There are a few other ones out there but from a physical perspective … I've been around for a while, there's like affiliates and other things. But the main thing it's where you are and your property is. Joe: Physical nexus, okay. And now we've got economic nexus, what is that? Scott: So economic nexus what states have determined and the brakes were taken off with the Supreme Court decision that they could define other ways to determine nexus to basically either require your business to do reporting and other function or register and collect sales tax in those states. So what they've done is said hey if you're doing over typically in the standard is based on the Supreme Court decision $100,000 in sales or actually more importantly 200 transactions either in the last calendar year or in the prior 12 months and that would mean that they're expecting you if you're a larger business to register and collect sales tax from there … of any consumers buying products you're shipping to into that state. Joe: How many transactions do you say? It was 200? Scott: 200. Joe: So if it's a $20 sale it's only what 1,000? Scott: $1,000. So $100,000 people see the $100,000 and think that oh God there's no way I didn't know you'd do $100,000 in any states last year, but it's totally based on your average. So if you take your average sale price and multiply it times 200, if you've done more than that revenue in any states that have these laws you're over that threshold. Joe: Okay so economic nexus passed by the Supreme Court, when does it take effect is it immediate or is there-? Scott: It's immediate for the roughly 23, 24 states that already had these laws on the books. And the only thing that was holding them back were these court cases that were just … was decided a week and a half ago. Joe: Okay so there's 24 states, not all 45 that collects sales taxes but that is 24 of them. And for folks listening, we will add a list of those 24 states but there'll be a lot of resources in the show notes that we'll give you that through their software as well. Scott: Well and it's not just economic nexus, you have to remember there's now notice in reporting states that aren't doing economic nexuses but have set thresholds for doing notice and reporting. They're basically two different new ways of determining nexus and they're both in effect now and there are other states that have them starting later this year and more. So it's multiple ways of nexus that might impact your business. Joe: Okay so I'm just going to say a few years ago I did a presentation at Rhodium Weekend all about e-commerce selling and part of it was sales tax collection accounting. So I wanted to say to Yana if you're listening I was right. She came after me after that now that's never going to happen. It's right. So really just don't even worry about the 24 states I think physical nexus, economic … basically get prepared to collect and remit sales taxes everywhere and use a special service that can allow you to do that. First though … and we'll get to that but first do you have to register to collect sales taxes? Scott: Yes. You have to if you are not registered you don't have a license and a number from the state, it's criminal to collect sales tax and not remit it and not have a license. It's also criminal to collect sales … have a license to collect sales tax and not give it to those state. Those two things have additional penalties and they'll come after the business owner's criminally. So you need to have a license before you start collecting sales tax and then once you start collecting sales tax you have to give it back to the state either monthly, quarterly or annually; whatever they say. Joe: Okay just to clarify, you used the word criminally three times. That's a little scary. Scott: Well it's … but unfortunately both Amazon and Shopify and these other sites, I mean literally there's a button in Shopify that you can click that says collect sales tax in all states. And it's easy to start collecting sales tax in the 45 states that have sales tax. So technically it's very easy to hit these buttons and not realize and you just want to be careful. And in difference between criminal is there's additional by jail. Everything else related to sales tax is expense and cost which is more likely to happen but maybe not as painful but can be pretty painful based on penalties and interest and other things. Joe: Right. Okay, so first and foremost let's just define and answer this simple basic question that some folks have been asking, does this mean … and I know the answer to this thus do you, does this mean quote unquote I have to start collecting sales taxes? The answer is yes. The answer is you should have been collecting them before, you had to before. Correctly? Scott: Well correct, if you have physical nexus that goes back in time. Okay, most of these economic nexus laws are new. And the way they're currently written is if you pass the threshold then the expectation is you register and start collecting sales tax going forward. So there's going to be nuances and changes but in general, if you exceed most of these thresholds for economic nexus or notice in reporting basically the expectation is you go out, you register now, and you start collecting forward. And there's no … depending on the state but for most states, there's no real risk of you owing money or have not done whatever in the past, you can go forward. But when you have physical nexus because of Amazon FBA or a 3PL then you need to consider if you register and collect going forward where you still have a risk of any previous outstanding liability which I know within a sale you're very aware of to make sure you know both the seller and the buyer are aware of any business liabilities or do you go back in time and pay anything that you didn't collect in the past; which isn't fun. Collecting sales tax or paying in sales tax you didn't collect from the consumer on each individual sale. Joe: Yeah because that's directly coming out of your profits now instead of collecting and just passing it through. Scott: Yup. Joe: Okay, so let's jump to making this easy for people that are listening. The bottom line is that they need to start collecting sales taxes and remitting them. Obviously, get registered to collect sales taxes. There're software out there that does this right? Because you're talking about you need to do this, you need to do that, and for me as a former physical products e-commerce seller, my eyes would roll into the back of my head, I would [inaudible 00:15:15.0] more and I'd never wake up again. Can't … Can I just pay somebody to do this for me and if yes what are the options and how much would it cost me annually or monthly? Scott: Well the first part, so you don't pull out your own hair, is there are multiple services out there that will help you with the registrations and register you in multiple states because it will drive you crazy. Every state is a little bit different. On average I'll pay about $100 per registration plus $20 to $50 in registration fee for some states, that's the first piece. So if you've decided to register in two, five, ten, whatever number of states you need to get registered first and I suggest … it'll just drive you crazy, is would be to get registered and there are a number of services out there that can do that for you. Joe: Okay and we'll put those in the show notes but why Scott only five or ten whatever you decide to get registered? And why wouldn't you register for every state that requires you to collect sales taxes? I guess maybe because you never sell any … somebody in the state of- Scott: So one it's just that overhead in the cost of doing business. So the first thing there are 45 states that have a sales tax and we are all heading sometime … I would have said three to five plus years that we're going to collect sales tax on every e-commerce sale, it's now probably two to four years or two to three years. It's going to happen a lot faster but there is a cost even on the low cost tool or outsourcing it … and I'll talk about some of those numbers in a minute, but you really only at this point want to register for sales tax where you have to. You shouldn't have to if … now if you're already a 20 or 30 million dollars e-commerce business just suck it up and go to all 45. Joe: Right. Scott: Anybody else below there, you're paying more money for compliance and tools and registrations. And in some of these states when you register for sales tax nexus you are in some ways volunteering to pay income tax. Potentially depending on the state and the situation; minimum franchise tax like in California which is $800 a year, and then additional fees, and not only the sales tax cost but paying a CPA to file and deal with franchise tax returns and income tax returns. So you want to as a small business or even a medium sized business minimize that overhead and only do this in the states you need to but you definitely want to start the big states where the population are. California, Florida, Texas, and those other bigger ones is the basics to get that going but you would want an easier way in. So figure it out for the first batch that you're doing and then do another batch and another batch. So you just can't stop your whole business to do sales tax and you just have to balance those things out. But at the same time, you don't want to show this huge [inaudible 00:17:52.3] selling and talking to Quiet Light. This huge compliance overhead and its overkill and it's going impact your own profitability and the money you're taking out of the business. So just want to find a balanced approach as you get there. Joe: How do you determine that? Is there a tool or process inside of Shopify or if you're an Amazon Seller that tells you that you know what sales you have by state? Scott: Yeah so there are two … for sales price there's a couple of ways to do it. So the first if you're an Amazon FBA seller there's a great tool called wherestock.com you pay him $30 and they'll log in … we'll get you the link, and they'll connect your Amazon site and they'll … it'll take them about a day and they'll give you a report showing you all the warehouses where you have inventory and when it started. How far back in time if you had inventory in the Michigan warehouse and if you go through that list and you don't see North Carolina or some states because of the type of your products it'll tell you, you might have had or five of these main states that you've never had inventory in and you don't have nexus there; which is great news. The next piece is really a matter of downloading all of your orders out of Shopify for the previous 12 months or the last year and then just pivoting the data or doing a total if you know how in Excel to show you your sales; both the number of sales in each state and the total dollar volume in each state. So you want to know your own numbers and any that you're over $100,000 in sales or unfortunately $10,000 in Washington State, Pennsylvania, and Oklahoma starting on Sunday I think. I think it just started Sunday. I think it was July first and it's happened right before it. Those are $10,000 in sales which is really low, everybody else is 100,000. So that'll … you'll go through those states and add up the ones that you have, look at the ones that you have the most amount of sales and income in and start with those. You want to know your own numbers and work through your own list. The other option is and I can provide a link to our tax calculator that we have in there … bunch of other people putting them out there that basically take your average sale amount enter it and it will total all those things up. But those are the two things; one, all of your income across all of your sales and then this Amazon wherestock report to let you know what's going on in FBA and that'll be in your information and then you just build a list and you work your way through your own priorities on how many you want to do; all at once or a few at a time. Joe: Okay so just to dumb it down a little bit. If you're doing 20, 30 million dollars just suck it up and do all 45 states. But if you're doing maybe just a million dollars in revenue, which is fantastic, do this report because you don't want to have to register in 23 states that instead of all 45 if you don't have to. Scott: Right. Joe: Someone else talked about it in this way. I mean that registration alone is going to cost you $100 to $150 so maybe $3,000 or so for 23 states that you don't have to register in. But if you're only doing $1,000, $2,000, $3,000 in revenue in the state of Montana it doesn't make any sense to register because a. you're not going to hit that threshold and b. realistically Scott is if someone in the state of Montana that works in- Scott: Montana is a bad example they're not on sales tax. Joe: Okay. Scott: So pick one of the few states that doesn't have one but Nevada or however else- Joe: How about Maine? Scott: So it's always a risk man, your question is so should you or not you … are you going to, can you fly under the radar- Joe: Yeah. Scott: Are they going to find you tomorrow and what's going on? So it's a risk management decision between the cost of compliance to your business versus the overhead and the cost of compliance and then the chance of being caught. There are four million Amazon sellers, there's between five and ten million businesses doing e-commerce these days. The states just had their handcuffs taken off and they're all going to go woohoo let's go get this money from out of state sellers. It's going to take them a while to ramp up and the chances of getting caught are very very low and they have been low and they're still very very low okay? But there isn't really no ambiguity now; there's no more well, maybe, or there's this court case, or whatever else. Joe: Right. Scott: So until now and whenever possibly the Congress does something or more lawsuits happen which take time this is the way things are today and you just have to make that decision of a risk management. So you never want to mess around with the IRS when it comes to payroll taxes or W-9s and contractors but for sales tax, you're going to have to balance those out. But the chance of being audited or being notified by the state is significantly higher than it's ever been in the past. Joe: Okay let's talk about the services that are out there; as in the software or services that you recommend for listeners just … you can do your download calculator that I'm going to provide in the show notes to determine the revenue by state and things of that nature to decide where they want to register. But what softwares or service programs do you recommend that folks check out that you have seen people use consistently that make this a whole lot easier? Scott: Yeah for people doing it themselves I would start with TaxJar it's by far the easiest to use most straightforward they … not only do they pull in all the data but they process the filing for sales tax and the payments in all 50 states. It's both the easiest and I, from what I've seen the lowest cost. They're a great tool. They have a great blog and a ton of information and support and it's the best way to do it yourself. The next one that's a little more powerful- Joe: Hold on a second. Scott: Yeah? Joe: In terms of a TaxJar thorough cost ballpark if someone's to put in all the states what would the overall cost be to … and do they do registration or just compliance? Scott: Okay so TaxJar does not do registrations. Joe: Okay. Scott: It's only the sales tax data aggregation to pull it all together from channels. Pull everything together. One note is if you have sales that are outside of Amazon, Shopify, or BigCommerce you have to import that data into TaxJar so that you have the complete thing. From all the sales so your filings are accurate. But in general, you're going to pay a monthly fee between I think 29 and up to 500 depending on the number of sales. Whether it's a thousand per month, 5,000 you know … in larger apps you're going to pay a base monthly fee no matter what; totally reasonable wherever your SaaS thing. And then you're going to pay a per-filing transaction. So if you're paying filing quarterly you're going to pay four times somewhere between $21 and $30 per filing. I don't have their pricing memorized. Joe: Sure. Scott: So if you're filing quarterly your costs are going to be lower. If you're filing annually it's going to be these monthly fees. So if you're a smaller seller the pricing can work out to be fairly affordable. They also have kind of an unlimited filing piece so if you get over a certain level … and I haven't done the math whether it's 20 states or 30 states but there's a certain point where you can pay it for kind of an unlimited plan and get to a max price. I think that's in the 4 to $6,000 for the year kind of total. But you can using that tool max that out and really lock that compliance cost in. Not counting your time making sure it's being done right. Importing data, dealing with notices, and just making … keeping an eye on it, it's not a set and forget process. Joe: So, on the high side it sounds like maybe $500 a month and your maxing out the services there, on the low side $29 a month so it all depends upon the size of the seller and how much you do. Okay, you are about to mention another- Scott: So the next one I would say is Taxify and that's what we use because we're doing hundreds and hundreds and hundreds of returns every month. It's a little more powerful in certain ways. They have integrations. It can handle a wider range of different businesses and there's … it's just they're really kind of head to head but for DIY most people go with TaxJar just because it's easier to use. TaxJar is more powerful if you have a more complex business. You might want to consider it or compare the two. Pricing is pretty similar between those two and- Joe: Those using TaxJar you said TaxJar, not Taxify. Scott: No we're using Taxify. We are using Taxify. Our accounting practice for us to file we use Taxify but I've known the TaxJar guys for six years now and they really do have a great solution. And any of our stuff we talk about those two is really the primary ones to consider third one is- Joe: Hold on I want to just interrupt again sorry. On this option, you're saying you already use it which means that with your accounting services for sellers of a certain size I assume, the collection, the management, and remittance of the sales taxes are part of your services as well. Scott: Correct. Joe: So I don't have to learn the software, I can hire you guys to do it. Scott: Correct. Joe: Okay. Scott: Well and I'll talk about some other … outsourcing is absolutely a viable, just like you outsource fulfillment to a 3PL or to Amazon FBA, sales tax is something you don't want to geek out on. I've done it for the last six years, it drives me crazy but I geek out on it. It just … it will distract you from listing products and buying products and designing new products and all the front end stuff to generate more income. That is absolutely something you want to … you might like that we look at here's how you do it yourself and you should understand anything you outsource but we do that. We offer the service but we also do notice management. The states send all kinds of notices. Even if you pay on time they'll send you a notice but if you don't respond to the notice they'll fine you for not responding to the notice. So there's more to it than just a set and forget tools. These tools are phenomenal as they deal with the complexity. Because every return is different, they have 50 different fields. They really aggregate the data and reduce the complexity of filing and paying which is awesome which is why we use automation. But then there's there is more to it. Joe: Okay, you're about to mention a third option for folks. Scott: Yeah third option is Avalara TrustFile. Now if you really are already a 20 or 30 … so Avalara has two products, they have a smaller and a lower end one which I don't think is as powerful as TaxJar or Taxify called TrustFile which you can use. They've cleaned up their pricing but it's still a little confusing but they're a viable tool. If you're already let's say five or really 10 million and you're doing more than just e-commerce you can consider Avalara AvaTax which is their higher end tool which will give you more control automated. If you have an accounting department it is definitely a tool you would consider. Quite a few CPA's and accountants use AvaTax as well to do more complex larger sales tax across multiple businesses. So those are really the key players, there are other smaller players out there but those are really the key players that are really focused and understand what's going on out there. Joe: Okay. I was listening to your better half Patti on your YouTube channel. She does a great job, by the way, great Q and A's there. I think she mentioned SALT experts and what they do and what not. Can you define what a SALT expert is and why someone listening might want to consult with one of them? Scott: Absolutely so a SALT; Sales And Local Tax expert, these are people that will do one, they can do a nexus study which tells you where you have nexus and it'll tell you whether your products are taxable or not, are they a food, are they a candy, do they have flour in them, are they clothing or … they can go look at all that. You can all interpret what the states say but these are people that do it all the time and will contact the state anonymously or you. The next thing they will do is what's called a voluntary disclosure agreement. If you owe a state tens of thousands of dollars of back tax and you want to come clean because you want to clear out your liability to sell your business and just make sure everything's done right, they'll go to the states anonymously and say I have this seller and they'll represent you. And in some cases get penalties, sometimes interests, and can potentially get a payment plan if you're cleaning up historical sales tax. And you want that person representing you a SALT expert, not your CPA. Unless they've done it multiple times in their own state you really want to talk to someone that's an expert. They're the people you want to call if you're audited to represent you and help you get through an audit. So those are the unique things we haven't talked about but the main thing is you can outsource your sales tax compliance to them. They will do the registrations and most in almost every case they will set things up. Most of them are very technical … in our case we at Catching Clouds we're really great at setting up Shopify to collect sales tax right and Amazon and eBay and in the more technical configurations. So we're very technical accountancy but they will help advise you on those things. They're all over it. They talk to me about the technical stuff, we're really good friends. It's a great community. I'll try to just solve this for sellers but then you can pay them a monthly fee or a per-state fee to take care of the data collection which you have to give them. The filing, the payments, notices, and kind of provide a complete service to outsource your sales tax. You can go to one person, pay them to take care all of your sales tax that's going on and advise you and then they're the ones that are keeping tabs on all the changes that happen every week; every month if that's the route you want to go. Which is a good way to go, in general, I'll give you a safe number, you really want to budget at least $50 per state per month. So you're looking at between $600 and $1,000 per year for this to not be an issue to worry about but you need to budget the right amount. Plus you want to have that same space because everyone's … Arizona's awful that they'll come back the second year and hit you with hundreds of dollars additional fees per county and everything else that you didn't count on and you can't get around and they'll deal with these random issues. Joe: Okay, great. I have a list of those from your website for those listening again in the show notes SALT experts will be available. Sounds like a one stop shopping place to go and just outsource all of this. Of course, some people that want to do the work themselves will have those calculators that you talked about there as well Scott and the links to the Taxify and TaxJar and Avalara. A couple of quick questions before we wrap this up, and maybe they're not quick questions but historically when someone sells their website … their physical e-commerce business in this case, the question of liability for past sales taxes that should have collected is really really gray, right? Scott: Yeah it is. Joe: And only once for those listening how do you solve that problem as a buyer? In most cases, most buyers don't worry about it. They really never have and these are people that are a lot smarter than you and I combined. They don't worry about it; pretty high level folks. In one case I had and think about this as a seller, I had someone that it was … the business sale total value was around $758,000 but they did the math and they said look in the 24 months that you've been around you should have collected X amount of sales taxes and let's call it $50,000 in that purchase price, in that $750,000 in the asset purchase agreement $50,000 was set aside in Escrow for potential sales tax liability purposes. And when the buyer went out to register to get their sales tax in the state of California, Texas, whatever if that state said yes, of course, we'll register you but we know that you owe us from this brand, you didn't own the company but from this brand you owe us $17,000 then that money would have come out of that 50,000. For the record, the buyer was able to register in all the states that he wanted to register and not a single state said okay great but you owe us money hence all 50,000 was released. How does this Supreme Court decision in economic nexus change that liability moving forward for the buyers of these businesses? Scott: I don't think it … I think it only increases the chance of the state contacting you and having to either answer the questions or go through an audit and all of these things are moot until you're actually audited. And you're at that point where you're dealing with an auditor and then then they ask for historical records and financials and everything else. Up until then, it's not really an issue. Unfortunately, though it's the decision of that state; are they going to hold the new business and whoever bought that Amazon seller account? They want to attach the liability to the Amazon account where it was being sold that you buy a continuing Amazon account which is what most people do or is it tied to the prior business and the business owner? The people selling you need to be concerned when you get that big chat to set some of this money aside if the states come after you historically because if you've spent it all, it really … in most cases tends to tie to the original business owner of the business. So I would say that there's … it's really if you're buying [inaudible 00:34:44.4] sale you have to be worried about it more than anything else. If it's an asset sale you're buying this asset, starting a new business, you've got to register fresh and move forward. There's a small risk but only after you've been audited. So it's just a couple of nuances there. Joe: So very very small risk and only after you're audited and the odds of being audited again, incredibly small. Scott: Correct. Joe: Okay. Let's talk about those out there that are wholesaling. They're buying products and wholesaling them, they don't have to collect these sales taxes is that correct? Scott: They don't but you have to follow the rules. The first is and what really does this finding really change is instead of collecting tax exemptions certificates; so for every B2B sale you have to get a tax exemption certificate and it's not just a picture of the sales tax license on the wall of someone's cell phone. You have to have something that has your business name on the top that other companies who you sold it to their tax licenses whether it's one state or multiple states. And it doesn't matter which states they are and an owner or a business manager an approved person of that company signing at the bottom saying they're responsible for the sales tax. Okay? Joe: Is it on a form? Is it an official form that they would fill out? Scott: There's a form per state and there's a great multi-state form. I can get you all of the links and if you want to have a process that you have them and keep in mind that they pretty … a lot of them expire every year. So you want to have all of these forms from your five or 10 or 50 or 500 B2B customers on file. And if you get audited by any given state then you need … then you have these to say hey I didn't have to collect sales tax but if you don't have the forms or they're expired or you're missing them that … then they can say all of that was taxable and you owe the sales tax. Even if the other company sold it and collected sales tax they can double dip and come after the information. What this decision really changed was two things related to B2B sellers. But first, as most people tend to collect tax exemption certificates for their own states where they're filing where they would expect their own business to get audited. Now that it's kind of every state can look at all this information, B2B sellers should start collecting tax exemption certificates on every sale. And if you have your top five or ten B2B customers, go back and get them from those ones and … to make sure you've got this filed. And then just set it aside in case you're audited. The second big impact of this for B2B sellers is now your B2B sales, number of transactions, and dollars volume count towards these economic nexus thresholds. It's all of your sales. It's your B2C sales and B2B. And even if you're 100% B2B and you have no tax you're still going to cross this threshold. And the states are still going to expect you to file a return. And it is going to cost you the same amount in compliance for you as it does. Even if you give them no money like every number is zero. Joe: That's really important for people that are doing both B2C and B2B. I was thinking just wholesale B2B but we have a lot of clients that they'll sell to let's say for instance chewy.com they're selling their own website but they wholesale to Chewy. They need to pay attention to this stuff as well. That's great information. Scott: It's all of their sales. It combines both and it's looking at all of your sales. Because what the really the states are doing and all these laws are meant to do is to get to the point where every transaction is taxed and they get a sales tax from every sale. That's what they're trying to do so pretty much most of the pain goes away if you register and collect in a state. You don't have to worry about different fines and fees or other unknowns, you can start defining your cost of compliance but that's really where we're going. Joe: Okay. Do you think this Supreme Court decision is good or bad? Overall for the individual states that are going to be applied this collect and collect is what I'm saying. Scott: I think it's bad for e-commerce sellers. I really do. The compliance costs just went from an unknown maybe I can avoid them to … and we're heading that way so I think it's bad for e-commerce sellers. Of course, it is great for the state bureaucracies that are going to go out and collect a bunch of money from other states until something else changes to back it down. I think it's going to increase the risk for smaller sellers and even mid-range sellers of having more unknown's that could impact your business. From us, as consumers, we're really getting to the point as a company … a country since we're so consumer based, it's all about products and services and things along those lines that we're really heading to the point where we're going to pay a sales tax on everything. It's just that the cost and the complexity and potential risks to all small businesses, not just e-commerce businesses, anybody that has a product and ships it out of state or does anything else now has to be concerned about that much more in running a business that you know e-commerce businesses are 24/7, running really fast, the rules are constantly changing, you just didn't need this additional in my opinion large overhead of cost of doing business to really impact them. Joe: Right at the end of the day hopefully it would be great for states and the roads and highways and schools in the state in which you live. But for now, it's a major complexity that you as an e-commerce owner have to deal with. Scott, as always you're fantastic. These details are great … for me personally they're overwhelming many times but that's the point of the show notes and simplifying it and really … perhaps hiring that SALT expert to do the vast majority of this work for those listening that choose to go that route. Scott before we depart any last thoughts or recommendations for people that are listening; both buyers and sellers? Scott: Yeah. Just take a deep breath plan out time once a month or a quarter to focus in on this. Add up your numbers, decide your risk tolerance, and then move on. And then don't worry about it for that month or quarter. And then when you decide to do it, think about what it is you're doing and make a decision and move on. You don't have to stop all your business or sales or everything else. Just take a practical approach. This is one more thing that has to be on your regular process; like checking your insurance or other things that you're validating. And just keep moving; keep selling and growing. Balance the risk and then just move on. Joe: That's great thanks, Scott. As always appreciate it look forward to seeing you at the next event and hopefully lots of folks will reach out to you here. And be at peace of mind here with what you've shared. Thanks so much, Scott. Scott: Well, thank you. Links: Catching Clouds eCommerce Accounting Patti's Q&A about Sales Taxes and the new SCOTUS Ruling Catching Clouds Academy Fox News Supreme Court sales tax ruling: The winners and losers MSNBC Supreme Court Rules States Can Require Shoppers To Pay Online Sales Tax Internet Sales Tax | What Online Retailers Need to Know Sales Tax Nexus Threshold Calculator Sales Tax Permitting with SalesPermitted.com Get your FBA stock locations summarized and delivered to your inbox. Sales and Local Tax (SALT) Experts – Outsource Everything Cathie Stanton and Lauren Stinson, Cherry Bekaert ► http://cherrybekaertsalestax.com/ Michael Fleming ► www.salestaxandmore.com ► https://www.salestaxandmore.com/chart… Diane Yetter ► www.salestaxinstitute.com ► https://www.salestaxinstitute.com/res… SaaS Sales Tax Apps: TaxJar ► https://www.taxjar.com/ Taxify ► https://taxify.co/ Avalara ► https://www.avalara.com/us/en/index.html

The Irish Nation Lives
POIH Cathal Brughas Expedition To London

The Irish Nation Lives

Play Episode Listen Later May 30, 2018 21:54


In May of 1918, as Ireland reeled from the arrests of many leading nationalists and as the threat of conscription seemed to grow, Cathal Brugha departed London and took up residence near Regents Park for 3 months. In this episode of Pages Out of Irish History I look at the reasons behind his expedition to London. Joseph Good: http://www.bureauofmilitaryhistory.ie/reels/bmh/BMH.WS0388.pdf#page=40 Bill Whelen: http://www.bureauofmilitaryhistory.ie/reels/bmh/BMH.WS0369.pdf#page=6 Sceilg: http://www.bureauofmilitaryhistory.ie/reels/bmh/BMH.WS0384.pdf#page=1 Richard Walsh: http://www.bureauofmilitaryhistory.ie/reels/bmh/BMH.WS0400.pdf#page=36 Ernest Blythe: http://www.bureauofmilitaryhistory.ie/reels/bmh/BMH.WS0939.pdf#page=131 Seán Matthews: http://www.bureauofmilitaryhistory.ie/reels/bmh/BMH.WS1022.pdf#page=8 Séan MacEoin: http://www.bureauofmilitaryhistory.ie/reels/bmh/BMH.WS1716pt1.pdf#page=2 https://thecricketbatthatdiedforireland.com/2015/05/17/the-ira-big-gun-and-the-death-of-matt-furlong-1920/ Also referenced: "The Republic" by Charles Townsand and "Enchanted by Dreams" by Joe Good.

The Quiet Light Podcast
How to Set Up VAT When Expanding to Europe

The Quiet Light Podcast

Play Episode Listen Later May 30, 2018 36:17


Alex Lyon from Avask Tax Advisors works with over 2,000 eCommerce and FBA clients. Her role is to help them understand, register for, manage and comply with VAT registrations and payments. Did you know that when selling online in Europe the taxes (VAT) are included in the purchase price? Did you know if you don't increase your list price your margins shrink by the VAT amount? Did you know that if you have a UK company there is a minimum total revenue threshold amount you can reach before you have to collect VAT? Did you know the biggest mistake made by US companies is not registering for VAT, but that you can sell on Amazon prior to having the registration number? If you answered “no” to at least one of the above questions…and plan to expand to Europe, hearing Alex's explanation of the VAT process could be critical to your expansion success.   Episode Highlights: The biggest mistake Alex sees is not registering for VAT, and it is costly! You can sell before being registered, but it'll cost you if you don't increase your prices to account for VAT. You do not have to set up a foreign corporation to sell in Europe, regardless of your overseas location: i.e. US, Singapore, etc. You only collect in countries you are shipping from (there is a caveat). Amazon does not show VAT charges separately in your seller account. The PanEU program makes sense for some, most only register in the UK and Germany. If you don't pay VAT…your Amazon account will be suspended and/or closed (eventually). “Import VAT” is charged on the inventory shipped into the country and paid immediately. “Sales VAT” is charged on the retail price of your goods, and paid quarterly. The UK and Germany are the two largest markets for selling online in the EU. The UK is the easiest to expand to from the US because of language and the challenges of shipping to Germany. Wiring VAT payments can take 4-5 days and a currency account in Europe shortens the wire times. Using an intermediary bank, or currency account, can save 1-3% in exchange rate fees. With Avask, the costs to register for VAT in the UK is about $200 USD, and then about $1200 USD per year. Caveat to costs: “Distance Selling Thresholds”, if met, require more than $1200 per year because VAT is required in countries you do not store inventory in. Transcription: Mark: Good morning Joe. How are you? Joe: I'm good Mark. How are you? Mark: I'm hanging in there. I'm enjoying the weather lately and getting outdoors a little bit not working as hard but we're still recording podcasts. And you recorded one on an interesting topic and something that I think more and more people are having to face that have Amazon businesses and that's some of the tax implications going overseas. Joe: Yes. Actually, anybody who has a physical products business that wants to sell in Europe and it's on value added taxes, oh my God not exciting at all. But did you know real quickly that you know obviously here in the States you buy something and then the tax is added? When you buy something online, or in Europe, UK, Germany, France, Italy, etcetera the price is built into…I'm sorry the taxes are built into the price. So if it's 120$ the item might be 100 but the taxes are 20. And a lot of buyers that ex…by sellers that expand overseas don't quite understand that concept initially and they could immediately start losing margin by not increasing the prices for the value added taxes. A great conversation it was with Alex Lyon from AVASK Tax Advisors they have over 2,000 FBA clients and e-commerce clients throughout the world that sell and need value added tax compliance so really informative stuff. And anybody that's considering expanding overseas should absolutely listen to this because it's not that complicated once you listen to what she says. Mark: What are the consequences if somebody is not taking care of the value added tax? Do you know by any chance? Joe: Yeah absolutely. So they're very-very compliant over there. It's not gray like it is here in the States, its black and white. So the problem is that if you sell in let's say the UK and you're not registered, you're going to be determined. Amazon has to share the information with I think it's the HMRC. They have to by law; they share the details of everybody that sells on Amazon. So the HMRC has access to your sales information and therefore can force you to pay the value added taxes that you should have collected. If you didn't collect it you're going to pay for that out of your pocket simple as that. So you've got two choices: pay for it out of your pocket and lose that 15 to 20% margin and probably make no money at all or walk away and be banned from selling in in Europe on Amazon. Mark: That's significant. I think moving across the ocean to selling in different countries is a huge opportunity for anyone. Buying an e-commerce business that wants to ship overseas that you need to start taking advantage of that opportunity but you also have to go through some of the understanding of what sort of regulations are in play. I think this you know isn't…this is not exactly an exciting topic but you know and I think it's a really important topic for anyone to listen to, to possibly unlock an opportunity that your competitors are not taking advantage of. Joe: Yeah and before we say let's jump into it let me just say this that I've seen explosive growth with people moving and expanding their products to the EEO, explosive growth in particular France. I mean the UK and Germany. And the cost associated with it using someone like AVASK and they're not the only ones who do it, it's not all that expensive. You're looking at maybe 1500 $ to get the ball rolling and get it done right. And you can you can start selling immediately as long as you're registering and then you pay from the date you started selling. It's really not that complicated. There's a lot to it but it's really-really important that if you're going to sell overseas which I think everybody should if they have real growth plans that they listen to the whole podcast. Mark: All right with that I will say let's jump into it. Joe: Hey folks it's Joe from Quiet Light Brokerage and today I've got to Alex Lyon from AVASK Tax Advisors with me. She's an expert on VAT which I believe is value added tax. Something a lot of folks trying to expand their e-commerce businesses over to the UK and beyond really need some help on. So Alex welcome to the Quiet Light Podcast. Alex: Thank you. Thank you, Joe. Hi everyone. Yeah as Joe has mentioned my name is Alex. I am Indirect Tax Client Manager of AVASK. So I've been working here for three years now just helping e-commerce sellers expand over into Europe. So we've got over 2,000 Amazon sellers that we work with. UK companies also companies based all over the world as well. So yeah that's been us. Joe: That's fantastic. Are they all FBA clients (Fulfilled By Amazon) or do they you know sell off FBA as well (off Amazon) with their own e-commerce businesses? Alex: It varies so a high majority of people are FBA sellers just because it's a lot easier to hand everything over to Amazon and kind of let them do fulfillment. But there are quite a large number of Amazon Sellers as well such as shipment from your own country which obviously makes a lot of things easier in terms of the VAT because you don't have to actually declare the sales in Europe because you're not fulfilling from his countries. So yeah it's kind of a majority FBA but we do have MFM sellers as well. Joe: Okay, good. Good. Good. So let's talk about the basics, get things straight here for our listeners because a lot of people here in the states are expanding their Amazon.com accounts beyond Amazon into the European countries and seeing explosive growth. But the big mystery is how to set up the VAT's and how to find an agency like yours to handle it most of the costs associated with it are. So you can start am I getting it right is it Value Added Tax and tell us how it works? Alex: Correct. Yes, it's value added tax. It's the same principle across the European countries but they have different rights and different filing frequencies. The easiest way to explain it would be that it's similar to the sales tax you have in the US. But the main difference would be the way which you include it within the price of your product. So this is kind of the biggest hurdle where people fall over on where they don't actually include the VAT amount within the price of the product which means that you're not actually collecting the VAT from your customer but you still have to pay it to the revenue. So you're essentially paying it out from your pocket if you don't include it. So in the US for someone like myself when I come over I don't realize it works like this when I go to the checkout in sell sites because I didn't know and I'm kind of how…where is this amount coming from. Whereas in the UK you don't know that it's already there in the price of the product so yes its essentially the same as the sales tax but it's more hidden. Joe: So Amazon is collecting that 20% for units built into the purchase price of the product. So if it's 100 $ if the VAT is 20% for instance, 20% is something set aside to pay your VAT…your taxes? Alex: Yes. Joe: Okay. Alex: So you need to list in on Amazon for the straight 120. Amazon won't do that for you. Joe: Okay and do a lot of people make that mistake where they just list their business without bumping it for the value added tax? Alex: Yeah there's a large number of that do. Without getting kind of proper advice on how VAT actually works. So it is…see it's hard enough to in taxes in your own country let alone I'm kind of working out how to do it in a foreign country. So yeah that's a big hurdle where quite a lot of people fall over on. Joe: Okay. So you're located in the UK. AVASK is located in the UK. But I think I saw offices around in different parts of the world, is that right? Alex: Yes that's right. So we've got an office in London and I'm on based on in Winchester which is about an hour south of London. And then we've also got offices in Shenzhen and LA. We try to come over to the US as much as possible as well just because oversea it's kind of US sellers that we've [inaudible 00:08:19.0] work with. So yeah we try and get over to the events as much as possible as well and get that travelling. Joe: So the vast majority of clients as you said are US based clients and they start selling and Amazon.com and then expanded to the European countries? Alex: Yeah, definitely. Amazon is oversea, it's huge in America and it's just kind of been taking off here in Europe as well. So it's a massive market in Europe and I think if you're product is successful and you've been able to make it successive there in the US then there's absolutely no reason why you shouldn't also be able to do in Europe. Joe: Okay. So let's say I own an Amazon.com account, I want to reach out to you what…and I want to sell in the European countries, step one two three can you walk us through that? Alex: Yup sure. So step one is to work out where you're going to be shipping your products from. So most people go with the UK or Germany just because they're the biggest markets, UK is obviously a lot easier because you don't have to translate any of your products. So whichever country you decide you're going to fulfill from you then have to get a VAT number in that country and also an EORI number for all of your shipments. So those two numbers you have to have those before you make a shipment. If you make a shipment without those numbers you're going to get charged import VAT and then you won't necessarily be able to reclaim that back whereas you would if you have the numbers. So that's very important. In terms of the registration process, engaging a UK agent is really helpful because you've got someone who can communicate with tax authorities on your behalf. And that also means that we know exactly what documents are needed for each of the registration. We'll process all of that for you. Once the application has been submitted and you're waiting for the numbers to come through at that point you should start getting your listings up. Working out some shipping quotes and kind of working out all the details on actually how you're going to get your product there and what the listings are going to look like. Joe: Okay. And I just had a conversation with someone that is buying an Amazon business and they were confused about when the VAT was going to be applied. Is it to the amount of products being shipped into the country or is it the amount that's sold? Alex: It's both. So if you're doing FBA you're making a box shipment to an Amazon warehouse. That box shipment you're going to have to declare at customs. So any shipment that's out into a warehouse is going to have import VAT at UK customs charged on it that's assuming of course that your shipment has come from outside of Europe, so most people ship from China or from the US. So import VAT is going to be charged on the cost of your goods. When you put together a commercial invoice of that shipment, that's the amount of the import fees then we charge on also with freight charges and things. Joe: And then what time do they pay that import VAT, when it arrives? Alex: Yeah correct so usually depending on what shipping company you'll go for usually they'll pay it for you and invoice it back to you. But they still have to do your kind of clearance number to create a shipment. Joe: And then do they have to…then they collect that VAT when it sells and they keep it or is it a different…are we talking about two different things? The import VAT versus the VAT that's charged to the customer on the Amazon account is that two different things or it's the same? Alex: It's the same tax but it's computed in different ways. So import VAT is non-cost whereas VAT on your sales is on the retail price of your goods. And they're also kind of declared differently so with the VAT when you [inaudible 00:11:35.18] you pay that in your VAT within each quarter. You don't pay that immediately when you make the sale. Whereas the import VAT, you pay it immediately at customs. And the way that those kind of…they tie in together although they're separately you…it's within your VAT return. So you do your VAT filing every quarter. So every three months you declare the amount of sales you made and then obviously you're declaring the VAT that's due on your sales and then any import VAT that you pay you can get that refunded and it's used as a credit within your VAT return. Joe: And how easy is it within the Amazon seller account to see that money that you've collected and have it match up against what you're going to owe? Or is it not as black and white as I think it would be or is it really relatively easy? Alex: It's gotten a lot better, to be honest. And so Amazon have got a specific VAT report that you can now download so you can see the breakdown. But in terms of the actual…when your customer purchases an item they won't be able to see the breakdown of VAT and the amount that's going to the amount that's going to the revenue. Another kind of stumbling block where a few Amazon sellers fall over where they don't get the kind of proper…do the proper research before is that's that although Amazon take their fees from the money you receive in terms of your sales, the VAT is [inaudible 00:12:49.6] on the total sales price. You can't deduct Amazon fees and then the amount that you actually receive from Amazon is what you pay VAT on it's the total amount that you're costumer is paying you pay VAT on. Joe: Why is there any calculation at all that the seller does? Doesn't Amazon calculate it for you it seems like they would since they know the exact sales? Alex: Yes so, unfortunately, it doesn't work like that. You have to include it. You have to price your product you have to do your pricing matrix. If you're expecting to move due your pricing and then Amazon add the VAT on it…that's not going to happen. You have to make sure you're including them. Joe: Well then I was thinking in terms of Amazon that in your pricing you would say this is my price and then this is my VAT amount it's not done that way you just simply mark it up to 120$ if it's a 100$ item. Alex: Yeah, exactly. Mark out straight away. And you can tell Amazon with the VAT calculation service you can let them know if you've got any kind of reduce rated or zero rated items which will reflect on the actual sales report. But it's not going to affect what your actual retail price is on Amazon and what it's listed as. Joe: Okay. Let's talk about volume. Here in the States, there's a lot of question about when should I start collecting sales taxes and [inaudible 00:13:58.6] and all these different [inaudible 00:13:59.8] unfortunately not black and white yet. It's still very-very gray. I had a situation where I listed a business for sale and asked about collecting VAT and he said well I'm not…I haven't hit that threshold yet in the UK. And I think it was a UK corporation as well, can you talk about thresholds and when and if you have to collect. In different [inaudible 00:14:21.4] what if you're a UK corporation or a Hong Kong Corporation if you're someone at the LOC or corporation here in the States? Alex: Okay, so if you have a company that's incorporated anywhere apart from the UK then you have to register for VAT immediately so that's sale number one whether it's going to have 1$, 10$, or 100$ it's straight away so no threshold whatsoever, you have to be registered. If however, you have a UK company there's a threshold of 85,000 Pounds and that's in terms of a turnover over a 12 month loaning period. So if you hit that within three months you have to be registered if you hit that in 11 months you have to be registered but that's just for a UK company. So if you've got an overseas entity you have to register straight to it there's no threshold. Joe: As far as buyers go, when you and I talked about this and have conversations with buyers when they buy an Amazon account that has a European component to it there's always questions about TMI not going to be collecting during a certain period of time, how do we sign up, how do we get that registered, what kind of danger I'm going to be in. I think you said the other day in a call separately in preparation for this that you can start pricing your products right away while you register and you're not going to…you're not going to lose any grounds or sales while you're registering and then paying VAT down the road a bit. Can you talk about that again a little bit so that…and talk about it from a buyer for perspective. If say someone is buying an Amazon account and taking it over and would reach out to you to register how do they ensure that they're collecting from day one of ownership and that they're not going to…not get themselves in a little bit of trouble? Alex: Well, first of all, I want to make sure, well check whether the Amazon account has already previously been charging VAT. So what we've discussed in terms of the pricing, obviously if you're taking over an Amazon account you're buying that account. And if they haven't been including VAT in the prices, you obviously then need to…the first kind of goal is to straight away go ahead and increase everything by that 20%. Joe: Let me just jump in here for a sec. So that's a consideration when someone…this is for the buyers that are listening, correct me here Alex if I'm wrong but when someone's buying an account and the owner has UK corporation, if they're below that annual threshold of 85,000 Pounds in revenue they're not charging VAT. But if I buy it and I'm not a UK corporation I immediately have to increase the prices in order to collect VAT or leave it alone and I'm going to lose 20% of my sales to the VAT. Is that correct? Alex: That's correct. Yes, so you because you're an overseas company you have to charge VAT on your sales even though they haven't been charged previously. Joe: Okay really critical for buyers to understand that when it's a UK corporation. Okay sorry to interrupt please continue. Alex: Okay so once you have then kind of taken over the company you can actually back date a registration. So say I'm talking over…I'm buying an Amazon account under my US company from a UK company we'll stick to that example. From the 1st of May you know going through the whole process it's taken a couple weeks to actually get everything set up. When if it got to the 1st of June and you still hadn't registered you can then back date that to the 1st of May. So as soon as you know that you're going to be buying the Amazon Seller Central, I would make sure that you're charging VAT to your customers because although you may not be registered you can backdate the registration. And it means that you have to pay VAT in all sales you make previous even though at that actual moment in time you weren't registered but you're back dating registration. Joe: Okay just to summarize. Don't change a thing in terms of prices assuming it's a…let's go with back to the it's a non UK entity so that they're a US entity buying a US entity but they have a UK account to it. If they're charging 120$ now and they're collecting VAT you don't have to change prices at all. Alex: Correct. Joe: You're going to register with a firm like yours and then when it's time to pay for the first time you're already collecting those and you'll go back dating and calculate what's due. Alex: Yes, exactly. Yeah. Joe: And how often do you pay? I think you said was it quarterly? Alex: Yes quarterly so every three months yeah. Joe: And is it the same every three months? Is it the beginning of the 15th of the next quarter is when you have to pay the taxes or is it depends upon when you register? Alex: So you got one month and seven days to actually do the filing and make the payment. As you can fall into different stagger groups in VAT quarters so it's not necessarily you are January to March you can be February to April or March to May. So there's three kind of different groups of VAT filings you could fall into. Your VAT advisor should obviously let you know and would be contacting you when everything's due. In terms of the frequency yeah it is quarterly. Joe: Listen, Alex, as you can see I'm an old guy, got some gray hair here. I fell asleep in accounting class in college. I honest to God I did fell asleep, the next class came in and I think I've told the story again so I won't go to much detail. I don't like this stuff. I don't like this level of detail because of what I do for a living it's absolutely critical as an entrepreneur and know how important it is. Do I have to really…if I'm the guy that's buying an FBA business and it's got European components to it, how much do I have to really know or can I just rely on you guys to do the work for me? Alex: You can definitely rely on us to kind of advice you and let you know. But it is…I do think it's good to know kind of the basics of what you're doing. In terms of Amazon, you've got two different programs so European Fulfillment Network or Pan-European Program. Pan-European Program is great you get to move your stock around to seven different countries [inaudible 00:20:03.1] you're stock is close that your costumers time are positive reasons to do that. But if you just kind of turn that on on your Amazon Seller Central and you'd haven't done any prior research, you won't know that you then actually have to get [inaudible 00:20:17.6] registered in seven countries. You have to do filings maybe month in more than half of these countries. So everything that you do in terms of where your stock is located, where your sales are going will have an impact on your VAT registration, your VAT applications within Europe. So yes it's good you should have [inaudible 00:20:36.6] in there. We'd let you know but don't be completely ignorant to what you're doing and where your stock is going. Joe: Hey it sounds like you just touched on being able to shift from seven different countries in a penny you…there's a lot of potential savings in terms of the shipping costs and fulfillment costs that you're closer to the customer. But you talked earlier I think that if you've got your inventory in the UK or Germany in the two biggest centers that you register for VAT in those countries what if your inventory is spread around seven different countries so you're closer to the customers do you then have to register in all of those countries? Alex: You do. Yeah, as soon as your stock is in that country and you can sell in from there you have to be VAT registered in that country. So VAT is basically payable to the country and is being done close at supply. So if your stock is in a Czech Republic warehouse the place of supply VAT sale when it's going from the Czech Republic to the customer in Italy is going to be in Czech Republic. So being VAT registered in the UK is completely useless. Joe: Okay. Alex: So yeah- Joe: Very much like nexus here in the States if there's 15 Amazon centers theory is that if you have 15 different locations of inventory you have nexus in those states and that's where you collect sales taxes. Not as formal as where you are. Tell us about the biggest hurdles and biggest mistakes that you've seen people make…well that you have in been bringing people to the European countries and selling an FBA. What things are really obvious? What mistakes are really common that people can avoid? Alex: So first one is to not get registered at all. So with that threshold, quite a few people get confused that the 85,000 threshold is applicable to them; sounds really appealing and really lovely so they just don't register full stop. And then when you do get registered you just do it from today's date because [inaudible 00:22:27.3] realize but now I know that I'm going to do it from today. There's a huge amount of compliant checks going on with the revenue in the UK. They are hurdling through every single Amazon account and doing tax investigations. You know we've had to help clients where we're going all the way back to 2012 when the legislation came in that they have to register. So that's kind of six years of taxes you're going to have to go back and pay and if you don't your Amazon can get shut down. So the first kind of hurdle is actually getting registered. It's kind of what you'd think is the most simplest part just to do the application. Joe: Six years of VAT taxes you've had people in that situation? Alex: Yeah. Joe: I would think that in some situations people will just throw their hands up in the air, close the account, and walk away, and not pay the taxes. Alex: Yeah. Joe: Is that something where if you're a US resident where you're going to be found and have to pay those taxes in some way shape or form? Alex: Well you spent a nice six years building up your Amazon account. You've got all of your reviews you know you've built up that kind of brand in the UK so to kind of just throw your hands up and walk away is a big thing to do in the first place. Because even if you opened up a new Amazon account you're not going to have all of those reviews and obviously the name of you as a director of that company when you do a VAT application in the UK you have to state that information and you have to kind of give all of those details of yourself anyway and yeah so you'll have- Joe: So if you're going to walk away there walk in away forever. Alex: Yeah. Joe: Unless they cheat and get around the system somewhere. Alex: Exactly and unfortunately like in the US…so as not like in the US there's now amnesty in the UK so if you think that you're going to be negotiating and kind of say that oh I'll make sure to pay everything going forward so I'll pay a percentage you wouldn't get that and you also have to pay mass penalty as well so it do not kind of sound all that great if you haven't done the right thing to start with. Joe: Okay. So I've talked to a lot of Amazon sellers. I've seen their financials. Some people tell me you know I've done the analysis Joe and it's just not worth the effort for me to sell in Germany and Italy in France and in the UK. It's just not worth it. And I think they're completely and utterly wrong because I've seen the explosive growth. You've got 2,000 FBA clients. What country are you seeing people get the most bang for their buck? What's growing rapidly over there and what country should they pay attention to the most? Alex: UK and Germany definitely. They're just the two biggest markets. France is…does follow very closely but yeah 100% they're the biggest. Joe: Okay. And the easiest of those two might be the UK because you don't have to do translation? Alex: Yeah, exactly. And I'm shipping direct into the UK is a lot easier than it is shipping to Germany. Joe: Okay. Okay. There are a lot of concerns about money laundering. I've heard people talk about this and how complicated it is and on the German side and German FBA accounts. Am I just hearing people with sort of the chicken little mentality that the sky is falling and being really paranoid or is there something to that? Alex: I think sales in Germany in terms of my money laundering and everything is all going through Amazon. So amazon are collecting the funds and sending it to you. You don't need for some representation in Germany so payments go directly to the tax authorities whereas in France you've got to pay to your French advisor and then it goes to the tax authorities so yeah I'm not sure of what grounds. Joe: Do you even know who Chicken Little is or what that theory…okay, I see you just- Alex: No sorry. Joe: Okay. It's a cartoon character here in the States disguised- Alex: Okay [crosstalk 00:25:55.9] Joe: I used that terminology when there's so many people online talking about all the horrible things that can happen when you're own an Amazon seller account as opposed to the reality of how many great things are happening and it's changing people's lives. Alex: I think that's like when you go to a restaurant or you go anywhere, you're more likely to leave a bad review if you've had a bad experience whereas if you've had agood review you probably leave any review at all. I do notice that happen. Joe: A hundred percent, you're absolutely right. One of the things that I see often and I know you guys are AVASK tax advisor so I want to talk about that advisory part and the tax part. But one of the things that I see happen is that sometimes when sellers expand overseas they just take the easy route and they'd let Amazon handle making deposits directly to their US bank account. Whereas other people that take a little bit of time, do some research, still use World's First Bank or somebody else to be that intermediary and the money will go there at a lower exchange rate saving them tens in…tens of thousands of dollars annually. Do you find that to be the case, do you would advise folks to do that and if so what world banks do you suggest they use or look at or is that a service that you provide as well? Alex: Yeah, definitely. So if you kind of first of all from a VAT paying perspective there's…most people have to pay via wire transfer. And if you're getting kind of close to the payment deadline it can take for to five working days for that payment to clear with HMRC. They then if any payment is received late they will give you a surcharge with subtentiative liability and that can go up to 15 cents. So if you've got a currency account located here in Europe the time that it takes for the funds to actually clear and consider the payment to be made is a lot quicker. So that is a big benefit of getting a bank account over here even just a currency account. Joe: Can you define what a currency account is and how it differentiates from a bank account, please? Alex: So it has kind of all the benefits of a bank account and they're very similar but I don't think I mean don't 100% take my word for this. Obviously, it's better to speak to a currency account provider. But you can't hold large amounts of funds in that account. It's kind of like an intermediary way. You're basically doing a transfer and a transfer to your local account. You can't also do things like direct debits and buy out checks and things like that. Joe: Okay. And as I understand it just for people listening that currency account I think Amazon, for instance, may charge you if you are a…may charge you 4% currency exchange. Whereas the currency account you may only be charged 2%. And so you might be…and these are ballpark numbers so you're saving 2% on whatever amount of money is flowing through that. And if it's a million dollars, you do the math on that. If it's 10,000 $ you do the math on that. So I see a lot of people do that as well. That's what a currency account is right? Alex: Yeah. And especially with kind of making payments in Europe in terms of VAT you're going to be transferring your money from Amazon to the US and then back so the UK again so you're kind of transferring it a couple of times and to make that payment. So if you want to incorporate a UK company [inaudible 00:29:08.3] you could have get an actual high street UK bank account which is obviously a benefit of that UK company. You could just kind of grow the funds and leave it in a high street bank account in UK. Joe: Well, let's talk about that for a minute. Maybe I should have asked this at the very beginning and listeners I apologize because this is a question I get offset. You know I'm expanding to the UK, I'm expanding to Germany do I have to set up a UK business with a UK address or German company? Do I have to set those up or can I simply be a US based company selling products overseas? Can you explain, you've got 2,000 clients what are they doing? What do you recommend? Alex: You do not have to incorporate a UK company. It's the majority of people use their overseas company just because it is a lot easier and has less administration in terms of the accounts that you are drawing up each year. It's all just falling onto one company. You've got your CPA in the US. He's doing everything for you. You don't have to hire a CPA equivalent in the UK so ask accountants to do your [inaudible 00:30:03.9] paying your kind of all those tax due filings. In terms of what's actually best is really hard for me to say because it is on a case by case basis. It's you know do you want to build a brand, do you want a UK bank account, do you want to take advantage of the VAT threshold, there's so many factors. It's not one, it's one size fits all, unfortunately. Joe: Okay but the simple answer is for anybody listening if you're US based with a US bank account a US corporation, you do not have to set up a European company a UK company or in Germany that's misinformation. You don't have to do that. You can register for VAT and start collecting and paying and still have your one CPA here in the US. Is that correct? Alex: Yes. Joe: Good. Of your 2,000 plus or minus clients, what are their sizes? I mean you have you got people that are doing you know a million, two million dollars a month in revenue and those that are just doing five or 10,000 $ a month? How does it range and how does it flash out [inaudible 00:31:01.5] so we just know more about you guys. Alex: Yeah, exactly that range I don't [inaudible 00:31:05.4] information but- Joe: Maybe I should have said a half a million a month. Alex: Yeah there's a huge range there is. And that's for the UK companies and also overseas companies. You know we've got a lot of Chinese clients as well. We've got kind of a whole Chinese department [inaudible 00:31:20.6]. So yeah the range is massive. We can help you whatever size. Joe: Okay. Let's say that I'm doing a quarter of a million dollars a month here in the States and I decide I want to expand overseas and I'm going to start with UK and Germany. Aside from my inventory costs and getting the product there, what are my costs for someone like you in setting up VAT and getting registered and compliant and all that stuff? Alex: Well it depends which country you're going for. If it's just one if it's selling- Joe: Say I'm gonna start with two. I'm going to start with the UK, actually I'm just gonna go with one. Let's go with UK. Alex: Okay 150 Pound registration one up fee and then 870 Pounds a year annual compliance and that doesn't depend on turnover. So whatever your turnover is it's the same. Joe: That's pretty cheap, if I'm doing a quarter million a month, 150 Euros a couple of hundred bucks tops and then maybe a thousand US dollars a year simple as that. Who calculates what my VAT is owed each month? Is it me and my CPA or is that part of your 870 5,000- Alex: Yeah we do that. We calculate everything. And you can give us limited access to your seller central we'll go in and download all the reports directly. You don't have to be a part of that process. Your sole responsibility is to make the payment. Joe: Can I just have you make the payment for me if you have access to funds or you just tell me what to pay and I pay it? Alex: No we don't do that. We will tell you what to pay and then you have to make the payment yeah. Joe: This is…okay I'm a little [inaudible 00:32:47.2] I haven't talked to anybody about pricing but to me, this is so incredibly fair and reasonable. Are you guys…is this the standard fees? I mean this is normal cost or you're really expensive or really cheap? What's the situation? Alex: I think that's about average. We pride ourselves over the service that we give kind of in comparison to the actual fees to other providers and things. We don't get too hung up on what the actual charges are in terms of that. What I would say though, I don't want to be [inaudible 00:33:16.2] in terms of that 870. Because if your turnover was in the millions you will be breaching distance selling thresholds to all of the European countries. Joe: You'll be what? Say that again. Alex: Breaching distance selling thresholds, we haven't spoken about that so- Joe: Distance selling threshold. Alex: We'll go into that really quickly. So if you've got all of your stock in a UK company…country sorry company the UK country, UK warehouse and is going to customers in Germany. So UK from a warehouse going to a customer in Germany, if their sales go over a certain threshold to Germany you then have to register to VAT in Germany even though you're not fulfilling from that country. Joe: Okay. Alex: Makes sense? Joe: Yeah, all right. This is the part where Joe doesn't love this level of detail but thank you for that. Alex: It's just that I don't want to be misleading in terms of 870 Pounds you know whatever your turnover is because that's all UK fee. If your turnover is massive you will have an obligation to register in other countries as well. Joe: And if the turnover is massive to probably going to be shipping from those countries to save that fulfillment cost anyway. Alex: Yeah, yeah. Joe: And that's something that they would do the math on and you guys may help them with. Alex: Yeah. Joe: Okay we're running out of time. We're about 30 minutes in which is actually a bit long but this is a fascinating subject, a critical one, and I'm sure some people just they fell asleep because it's also not their favorite which is a shame. Because the number one thing people can do to make their business more valuable is get the books right. Get the details like this absolutely correct. It's going to help with the transition of the business as well as well as the value. Alex thank you so much. Any last thoughts that you can share with people listening? Whether they're buying and selling in terms of what they should do and how they should do it other than just do it and do it right. Alex: I honestly I would just say to speak to someone you know we do free consultations [inaudible 00:35:07.0] if you just give us a call then we can just run through everything with you. There's you know all though we've covered a lot in half an hour it's a lot of information, there are still some things that haven't been mentioned so yeah I would just speak so when I mention we've got all the information for before you completely just jump start in. Joe: Okay. Well, we'll make sure that all of your contact information is in the show notes. Alex: All right. Joe: But for those listening that can't see them there it's AVASK tax advisors that's A-V-A-S-K tax advisors and they do free consultations. I think it's really important as a buyer or seller if you're planning on selling over in the UK. Alex thanks so much for your time today I really appreciate it. Alex: Okay thanks. Thanks, everyone. Links: Alexandra Lyon Indirect Tax Client Manager Skype: alex.avask Email: alex@avaskgroup.com T: +1.213.330.4904; +1.213.256.0537 https://www.linkedin.com/in/alexandragrant4/ https://www.avaskaccounting.co.uk/   James Shayler International VAT Technical Officer Skype: james.shayler16 Email: james@avasktax.com T: +1.213.330.4904; +1.213.256.053

The Quiet Light Podcast
How To Plan a Strategic Exit: A Podcast with Ryan Tansom

The Quiet Light Podcast

Play Episode Listen Later Apr 25, 2018 37:15


What are the different aspects needed to grow a sustainable business that is transferable and valuable? Today's episode is all about planning a successful strategic exit plan when selling your business.  Whether it be online, offline, or hybrid, how you lay the foundation for your business is the key to a smooth transaction even before you start the process of selling. We are talking with Ryan Tansom, a fellow podcaster, consultant, and successful business seller all about how he turned his sale into a springboard for helping others accomplish a great exit. Episode Highlights: How a strategic exit compare to a financial exit. Figure out how to align growth strategy with exit strategy in order to get what you want out of the deal while taking into account the financials, the company culture, and the potential legacy involved. When an offer comes to the table it is important to weigh all the variables. Think about any way that the buyer can do to add to his profitability. Show them all the things the things they can do and package it up for them. Network early and often with people who align their motives with yours. Make sure you know what the buyer's business continuity goals are. From knowing their goals you can come up with ways to fill their strategic plan. Understand the industry on both sides of the transaction so that you can design how the business can look for a strategic exit. Prepare early for the sale of a business so you don't get any nasty surprises during due diligence or negotiation. Ryan lays out the framework of a strategic sale. When strategic exits work and when they don't. Transcription Mark: Joe, how are you? Joe: I'm good, feeling old and tired but pretty good how about you? Mark: You are old and tired and I'm catching up quickly. Joe: But I'm not cold it's 63 in North Carolina today and you going to get snow this weekend right? Mark: Stop it, Stop it, by the time this episode airs it's going to be a beautiful year and I will no longer be recording episodes, I'll be outside enjoying it. Joe: Yes. I mean 36. Mark: Something like that, alright when we talks to people that want to sell their business, pretty common scenario, they're looking for a strategic exit or maybe they'll say, you know, we go to the whole valuation process and then they come back and then say “I've got a couple of companies of mine that might be really good fits to acquire the business right?” Nothing about strategic. I'm sure you get the pretty often on your side. Joe: Sure. Yes. Mark: Yeah, right. So strategic, how do you actually do them? Are they worth it? Do we actually get more money from them? That is the subject of today's interview. I sat down with Ryan Tansom. Ryan has his own podcast which we talk about a little bit, but he's got a really cool story, he and his dad were in business together in a traditional offline business. They are selling copiers and had all sorts of contracts there. And they went to the process of merging that company with another one. They first try to sell the company, and found out how difficult it was, then they spent some time retooling in and really planning their exit, and after they've retooled and planned their exit they were able to do a deal in just a few weeks. So his whole thing right now is to help people plan their exit and build value on the business at the same time, but I wanted to talk to him about how do you plan an exit if you want to do a strategic sale? Does that make sense? That you actually get more money from it and what are the chances that's going to happen? This is a fascinating conversation. Joe: Good. One thing that most people don't do, and that's plan their exit. They usually just wake up one day and decide, “I'm tired I want to sell the business I'm ready to move on, So you know I've talk to Ryan a number of times and I think He's life experience, what he went through  with his business with his father trying to sell finding, it was difficult and then actually putting a plan together and deciding, when he executed that plan and he'd sold the business very quickly and I think to a strategic buyer. He learned a lot and he's sharing that with people now. So It's nice that he's got the first hand experience in the sharing with people and I think he does a really good job at it. Mark: Yeah, and so in this we're going to talk about what do you need to do to get strategic exit setup and not surprisingly, it's a lot of the same stuff you have to do  if you're going to have a financial exit or a regular market type sale. Just take a little more upfront work and we talk about the chances of it actually happening. I also talk about how that it's not always the best thing. The very first business I sold went itself to a strategic exit. We ended going to a financial buyer because they actually got more money from it so we talk little about that as well. Well we get on into it because it's a lot good mini topics in this episode. Joe: Let's do it. Mark: Ryan, hey how are you? Ryan: Good Mark, how are you doing? Mark: Thanks for joining me. It's been a while since you and I met, well I think we're just talking about this a year and a half ago or something like at Caribou Coffee here in the Twin cities. Yeah you're local to me which I like. Ryan: I know we're local yet we're sitting here on video right? Mark: We should've done the very first podcast with [inaudible 0:03:58] and where he would have be like saddled up right next to me. Alright cool, well on our podcast we like to better a guest introduce him selves, probably because we're really lazy and don't like to do the upfront research but also because guest  do a better job at introducing themselves. So could you introduce yourself a little bit to our listeners? What is your story, what's your background and why are we talking. Ryan: Yeah, I appreciate it, I'm glad to be on the show I'm usually the one doing the interviewing so this is actually a lot of fun. So Ryan Tansom, my Dad and I had a family business kind of a little bit of backdrop back in 2014 we end up selling it. He grew it from the ground up, bought a semi [inaudible 0:04:32] of copiers in the mid 90's and ended up growing a very substantial business that I think we've topped for about 20 million and a hundred employees, and I joined the firm full time in financial crisis, and it was pretty much lot of all hands on deck for the seven years I was there. It was.. We realized that company was not sellable  because there's a private equity firm that was buying out platform companies in each marketplace, and we have the opportunity of potential to be one of those, and they passed on us so we spent pretty much in next 6 years, 7 years going. Okay what do we need to do to build a sellable business that either I buy it or we sell it to someone else we didn't really know what were options so we just roll up our sleeves and did a bunch of stuff. Build out the outsource, the IT. Remarketed ourselves, did a bunch of stuff, and then in 2014 ended up selling it to a local competitor here which the sale went very well financially, but we left a lot of money in the table from a lack of tax planning and some other deal structure that things we could done creatively, and then also we found out a strategic sale like that that there's a lot of redundancies, so I ended up having to fire a lot of my good friends, and family and the employees, so since then I've been in a mission to figure out how do you align your grow strategy with your exit strategies so that you will get what you want, regardless whether it's financial or you know, anything associated with your business that you know, whether it's legacy or culture, and stuff like that. Hopefully I sent too much but it's definitely the backdrop of why I'm doing what I'm doing. Mark: Alright so there's a lot that we can unpack here and we're going to have try to pick a branch and go with it, because I think there's a lot that we can unpack here. Business that you and your dad sold, this is more of a traditional offline business right? copier sales? Ryan: Yeah, where on we have15 sales representatives that were knocking on the doors and I wish we would have done something that would have been a hybrid, and we would have probably gone that direction, had we, continue grow on the business, but I think, you know, every offline businesses, which is what we were, has the opportunity to have the hybrid online stuff that a lot of that community that you're involved and I'm involved you know. Mark: Yeah, I think a lot of the online community is moving towards this more traditional business model, at least in the E-Com Space and you've seen it all. So in the and largest as company, because they do develop our staffs and in onboarding, customer service and all that. So similar to your stuff.. So I guess, let's talk first about the fact that you left money on the table, with your.. You spent six years trying to hammer the business industry, I think there's a discussion in there on it's own, like, how do you line your crawl strategies and your business strategies with an extra strategy, but I like to know a little more about the money on the table. A lot of times when we say people leave money on the table, that's because they have maximized the sale price of their business, but were there other areas where you've guys felt that you left money on the table? Ryan: You know, I think yeah, there's a lot of different variables in this, and you know, I've got a Podcast too. I've interviewed lots of entrepreneurs that have soul and I've tried to unpack this exact topic as well and there's the “Hey there's a price so I might want to give you 2 million dollars for your business” it doesn't mean that you're getting 2 million bucks because you're paying taxes, so there's the whole deal structure whether it's asset sales or stock sales, or how the deal structured from earn outs, from an SBA loan financing, whatever it is, you know, when someone starts courting you, whatever dollar amount is thrown out, there's a lot after the fact than what actually comes in your bank account. So whether that's a tax planning, the deal structure, you know, escrow all that kind of stuff, and then there's the maximize the value of the business, so there's kind of, two different key components to it. Mark: Yeah and I think, just by way of example, within online businesses, say that your [inaudible 0:08:10] corp, and somebody wants to buy your business for 5 million dollars. Great, and they're getting an SBA loan and everything looks good, but then you get to it and at the end of your purchase agreement there's this asset allocation agreement that's to how is this been allocated tax wise, and the buyer says “Well, we want to pay, out of 5 million, we want 1 million to be your salary for the next 2 years for consulting, that's part of the purchase price” well now that comes at ordinary income tax, cruise up your whole tax, percent tax situation.. Ryan: Because you know [inaudible 0:08:41]? Mark: Yeah, how much are you getting from that point, and you're from, for buyers trying to relegate towards income, makes sense because they can learn it off in a way, because they were going towards assets, it's a long period of times that they can make that of. So, there's a lot of, like you said there's a lot more complexities there, in terms of the deal structure. So let's talk about maximizing the value, the dollar amount. Did you feel like you guys left some money on the table with that? Ryan: No, actually we did as much as we could of, because our business naturally.. I got it appearing to what is the, honestly the best kind of business because we had contracts, that were locked in with reoccurring revenue, backed by bank financing, we've bundled them with maintenance, so like, if you want to buy, manage IT services with.. You know, bundle them with servers, firewalls, maintenance, copiers. I mean you'd be bundled in finances and then, it'll be 60 months typically and it'll be in.. It's as good as a mortgage, so when you're looking at what we did and what our industry.. It wasn't something that we were like geniuses or anything, either the whole industry, I've been gone that way and I think the whole industry was built of greedy sales people. In reality it was good as mortgages because you can't cancel. So, it didn't really matter when you think about a strategic sale like that, the relationships of the sales people, the admin, all the infrastructure was redundant. Because we can literally just take a bunch of paperwork and give it to someone else. And so what you're mitigating less on the sale on like the, EBITDA, multiples, because the cash flow is not the situation, it is your Han dinging over contracts. So I don't think there's anything we could have particularly done on that aspect to maximize the sale of the business, but the industry itself taught me, what, “we got lucky, is pretty much what it came to” versus “we could always use other business, where it might be, a 50 million dollar consulting company and there's nothing to sell besides a bunch of people”. So, I realized, after the facts that we got lucky and there's a lot of other ways to maximize the value of the business from the strategic operational side of it. And then it comes down to, we sold a couple of branches prior to selling the corporate headquarters, so the first time we sold our branch we got  about half the price because we didn't have preliminary due diligence done, they didn't trust us, we couldn't get the right documents and all these different things so there was technical stuff on that aspect that we, by that time we ended up selling, we knew what questions are coming at us and why. Mark: How did that impact the price the second time around? Ryan: Second time around when we ended up settled…  I mean we closed in 2 weeks. Mark: I know how. Ryan: Very substantial sale so average closing is, either we talk in months and months and months, either because, we came there with a package and said this is exactly what we have, here's our profitability, here's where every single dime goes in and out of the business, here's why, here's our, I mean employee contracts, customer contracts, lender contracts. I mean everything was just ready, versus the first time and we knew it was like, we're bumbling idiots. Didn't have any clue what they're asking and why. Mark: Yeah, we've created a very simple paradigm at Quiet Light Brokerage that we call the 4 pillars of value and that is, look at the risk of your business, the growth opportunities, how transferable it is and the last one would be in documentation. Now I think sometimes people take that documentation that light as to.. Well, it may not really make that much of a difference on the value of the business, it's just going to make it easier, actually makes a difference in the value of the business too. Ryan: 100% yup, I got people that I know, that I've interviewed and talked to, where their value actually went up by 30% because.. But with a click of a button, especially by drop box these days and software where you can, “Hey here's everything” A – you can get more buyers at the table quickly, if you can do that instead of having threads through all these documents, but, you end up as the seller end up guiding the process more than the buyers. Because in the marketplace 90.. No, plus % the time the buyers are coming in there and they're going to find every reason to discount that companies so they can  make in return.   Mark: Right! and on top of that it's risk right? So a buyer takes a little good in business with poor documentation, and they don't know what they don't know. And so they see that as being risky and they will discount an account for that risk as well on the purchase price, and you don't have your stuff together, you can't defend against it. Alright let's talk about strategic sales. Because you guys did a strategic sales and this is something that I find a lot of questions on. First let's talk about what was the difference between a strategic and a marketplace sale in your realm. Ryan: So it's my world it's every world right? So a strategic sale realm, let's start with the financial sale. The financial sale whether it's an ecommerce business or if it's a traditional business or whatever it is, someone's looking for a cash flow. What's transferable cash flow? So if I want to buy Quiet Light, if you guys are dropping a half a million bucks to the bottom line or whatever it is, I want to.. How transferable is that? So that's where the multiple EBITDA comes from. So, if I can buy that chas flow without having any risk that it's going to decline, and you apply a multiple which is how many years, what's my rate of return that I want,  3 years, 5 years, whatever it is, and the more transferable that is the higher the multiple goes up. So, I mean someone that's looking for cash flow as a lifestyle buyer, a private equity buyer, I would say that there's also strategic financial buyers which is someone that understands MNH extremely well and knows how to do this, that's kind of like a hybrid. So they're looking for cash flow and they're applying a rate of return based on the risk of the business and the asset. Then you and this strategic sale which I think is one of the funniest ones because every business owner, every entrepreneur that I sit down in front of, or I talk to, you know your business, you're intrigued better than anybody else out there, right? So you know who you'd partner with, where they collaborations with you, all these different things, and I don't want to say the multiples even they go out the window, but it's more of how fast, in terms of, if thinking of rate of return from 3 years to 5 years, or wherever the buying might be, and the rate of return is, how fast can we pay for that? So regardless of the EBITDA, now you're saying “okay well, are there complimentary products and services? Is there a cross pollination between customer list” Is there horizontal ways, there are vertical ways you guys can expand, and if you can think about everything in the terms of the buyer, the strategic buyer and what they would do with your business, you can literally model it out for them, how fast they can pay you for your company. Mark: Yeah, so this is great. I want to talk about this because we get this question, wow goodness, probably one out of every four or five people that contact us to sell. One of the very first things that they say is “Well I have a few companies of mine that might be a good fit for us” and they're thinking it in terms of that like strategic sale, they think it's going to be much more valuable to them and there is some truth to this the webhosting industry it's a classic example, webhosting, at the very first I sold working with Quiet Light Brokerage, first started Quiet Light Brokerage was a webhosting company, and webhosting company has a tons of roles because it has a bunch of user accounts that is on our servers and it's very easy to migrate that user accounts over to another server, keep the packages the same as really just paste and transfer it **** sometime **** and a monthly contract so it's really really easy without transfer overall stuffs, so like you said all of the expense profile of those companies you do really care about that because if I me acquiring a company I already have those expense profiles. I know what to cost me to host for 500 clients, so it will become a client count. Now when you're talking about strategic sale, like I said, there is not only to redundancies which you dea'lt with, first hand, it sound like,  in your sale redundancies where you have multiple sales people doing the same thing so you a lots of people go, but there is also the synergies of my crop up with one company that is a name in an industry right? Ryan: Right! And there's [inaudible 0:16:28]for us, it was, that we didn't sell telecom. It was the one thing in outsource, the IT in office technology that we didn't do, since okay, we got, you know, 2 or 3 thousand accounts, how many people can you sell telecom to? A lot, probably. So that is not guarantee in profit that they're going to make, but it makes a deal look better, you know, then you can make some basic assumptions or something like that, and then you know, cash or order discount on suppliers. We weren't taking advantage of that. So we start to think about any way. Going to that buyer and saying, here's all of the things that you can literally get packaging up for them, and you know, I think there's some people that you and I know in Rhodium, and why see that, the reason that they start on their family to start in the retail, wedding industry, they got online… well, weddings usually don't have repeat customers, you know there are couple every now and then.   Mark: Hopefully not.   Ryan: I usually do subscription services so, what are different ways that they can expand their products and services, because they have a crazy amount of volume that come through their doors every single year. Because they got a very good foothold in Minnesota here, but so it's their robes, it's their jewelry, it's there. Other things that they can sell them and they know the volume of their customers, so you know, yeah there's the sale or the purchase price and the profit but they're more looking at do I build it or I buy it? So they know how long it's going to take the opportunity cost of how long it's going to take to build it, screwing things up, all that kind of stuff. Mark: Right, alright so let's talk about how you would.. Let's say, we have a listener out there, they own a business and they're thinking, “I've really like a strategic sale just because my business is unique enough I think there will be enough benefit for maybe 3 or 4 companies that are sort of [inaudible 0:18:03]my industry. How would they want to go about preparing their business and thinking about that exit, a potential strategic sale. Ryan: That is a good question and I think you know this whole conundrum of exit planning and grow planning.. I believe that if entrepreneurs are running the business the way that they should and working on the business not in the business, and treating their business like an actual investment, then it is like, where are all the different options that I can sell to whenever and how fast can I [inaudible 0:18:29] so it's being ready no matter what. If you are in love and addicted to a girl then you're having a blast, great! But always be ready for industries that change, Google changes their algorithm, Facebook gets kind of a little bit a heat like they are right now, always preparing yourselves so that, the first and foremost is the due diligence, your docs, and knowing, and really cleaning up your financials because, if you can answer any kind of questions that even your friend would ask, the buyer is gone just, completely slam you down. So getting your house in order, the financials, and the due diligence is one thing, but then, thinking about, “Okay so these are going to be.. These five companies are companies that i can eventually sell to” Who are they and what, why and how will your decisions in the business affect where you're going. So for example if one of the companies is running and you know, he is an Amazon merchant or something or someone is running on Shopify, don't go build out a Magento, you know, spend 300 grand in Magento if someone that you're going to sell it to is doing Shopify. I mean, that's the same thing that we did. We spent 300 grand on an ERP's because 85% of the people on our industry had it. That's why we could close in 2 weeks. Knowing how you are spending the money and why in relationship to where you're going to sell, and again, so if you think about, if your service has complimentary service to just someone else. Don't go spent a bunch of money building out something that they have. Because you are not going to get a return so you're going to spend, your immediate cash flow, but then you're not going to get the attitude because they don't seem [inaudible 0:19:58] I think it's aligning where want to go and why and then also that strategic decisions that you are doing in between there. Mark: Yeah, alright I want actually bring a really basic level here, because the thing is important point to make special more talking about strategic sales. I think people get with the financial market sale where you take a look at the profitability of the company and you have Joe blow buyer come in who really isn't related to the industry. We all know that he wants to get return on that investment after 3 or 4 years, you'd see that investment come back in so it's pretty easy to apply a multiple. Sometimes when we're talking about strategic sales people come and go crazy and they start thinking, well, look at all the upside potential that is going to come about from this and so they start lowering their valuation expectations through the roof because sometimes strategic do get really high relative valuations of this realm to the financials, that said, I'm going to make a very basic statement here and I'm sure you'd agree. Strategic still need to see an ROI, right? They still need to see a return of investment. Yeah so, what you're saying is when you're building out your company, when you're really planning that exit and working on the company, think about the ROI that the potential buyer is going to have and don't build something that's going to super expensive for them to migrate it over, right? Ryan: Right and it's like, so how we went about it is, I want to know this business, I want to know why they should buy this business more than anybody else. So like, I want to know everything about their business, I want to know exactly what their marketing strategy is, what their profitability strategy is, I want to know their strategy just as well as they do, whether you can or not. Because then you can show exactly how you fill their strategic plan, based on what they're buying. Mark: Right, so let's talk about modeling a little bit. When you're talking about strategic sale in your case with your dad in your business, [inaudible 0:21:41] done in season staff and so, when you're looking at presenting the financial picture to potential acquiring company, how did you go about that? How did you pitch it as far as the ROI? Ryan: So, I had like literally our entire.. I mean we have cash list statement and we learned a lot first time, right? So I knew every single penny that went in our business and why, so we did some serious cash flow modeling so we had our whole P&L, and then we had the forecast of what was going on to the sales and the cost of goods, our profitability, and I hacked a bunch of stuff through it, and I said okay, and I buy GL code Mark.. Mark: Wow Ryan: We did a.. Yeah, I know. Because there's the, in the financial buy, there's the add backs, right? So, a hundred grand might be 300 grand on the value, whether it's being added to the value or not. So, usually in the financial buys, you want to take that off to increase your EBITDA, so that way it's applied to the multiple. But in this system the same thing were [inaudible 0:22:41] you don't need these people, you don't need these servers, you don't need these things because you already have them. So, that is all dropping to the bottom line which will then help them calculate the ROI's so, we just looked on them and say okay, here's how much of the expenses you can take out of this, with these assumptions and then move back and forth, you said, what we actually need these people, we need these things, and then you're just negotiating back and forth but it was not more in the add backs, it's more of understanding the redundancies and the strategic value behind this. So it's a similar exercise but, you know, and now comes actually kind of the same but it's more specifically to operations. Mark: Well on the key pieces I think, needs to be understood is you need to understand the industry and the business itself. We work for the financial, forex leads site, this was several years ago. And they were getting lots of leads that they were selling and they wanted to arrange a strategic sale to a forex broker. Because they knew that they were jittering these leads and so that the equation really became okay. We know how much we're getting paid out on their [inaudible 0:23:43] basis for these leads. But as a forex broker, here's where the dollar amount for the valid leads are, and now we can start modeling our what does this look like, how much revenue is this site really making, from a forex broker's standpoint and then the other value proposition there. Ryan: Yeah it's literally of about knowing both of the businesses and the industry as well as you possibly can. So you can just design exactly how it looks. And then you backing up numbers, you know, I'm just kind of making some other things up but like, you and I have talked and I think that was when you were on my show, we're talking about the hybrid of the online versus offline and so, if someone has literally the best data ever on their drip marketing, their automation in their online marketing and knows exactly the entire cost of acquisition of one wheel, and whether it's Facebook ads or Google ads, all of what the email mark and you say “here's how much all this stuff cost,” they can go in and if you're going to [inaudible 0:24:38] and sink that up with an offline business, like there's some huge power there because you know that they're not doing that potentially. So you can, there's just so many different ways to design that I guess. That's kind of the fun part. Mark: Yeah and the nice thing about strategic is that there's really, you have the ability to blow a traditional valuation out of the water, right? That's one of the big advantages. Transitions can also be a little bit easier because they already know the industry and so you don't run saying “here's how you do this little process that you should probably know anyways” it's a little easier to transition. When I talk to people about doing strategic, so I often tell them that I don't think it's a good idea for them. And the reason I say that is mainly because they're difficult to do if you haven't been preparing. How long do you think it takes to really prepare business for a strategic? Ryan: So I think maybe I'll go back with remarkable steps which is what's the order of operations I think you should do to do this correctly, right? So kind of the assumptions to repeat is beat your foundation setup, build your financials, build healthy business from recurring revenue, the clarity of all these different things, making sure you don't have a bunch of concentration in one client, all the typical ways of de-risking your business and if you're striving to make a healthy business like that then you'll have lots of options. So at the bare minimum, you should be able to sell to a financial buyer, so then called to 3 to 5 times multiple EBITDA. So you know that, financially going okay, if it's 200 grand, I know that I'm going to be getting 600 or a million. Whenever it might be, right? So I know that's how or that's my target. But with a strategic sale, you could completely blow it out of the water, but that's kind of like hunting. It's hunting for unicorns or really specific synergies so you mention 5 people, that's fantastic but, what if they don't want it? What if they're struggling? What if they don't have the money? Don't have the ability to get banked? All those different things. Those are things that you don't know and yes you should work towards them so I think, to answer your question, I don't know but really helps with that, it's like, we knew our buyer. Like  half of our employees has hog back and forth, you know, we're in the same industry trade associations so, I actually had taught the woman I interviewed yesterday at my show, she would have spent 2-3 years building and fostering those relationships, so those people could have been at the table. She didn't do that, so this is more of a relationship building, going in Rhodium Weekend, going to the YC Events, going to [inaudible 0:27:00] all these different things where people build relationships. And then what ends up happening is, I [inaudible 0:27:06] the bar over a napkin, and then you're back in the stuff. Mark: Yeah absolutely, that's actually normal when I [inaudible 0:27:13] people that want to do strategic is, if you want to know strategic, 2 or 3 years down the road, contact the companies now and don't say “Hey I want to sell to you” just contact and do that real networking stuff and get out there. Once they've become aware of your company, and you start to learn each other's companies, then you can sort of see that conversation for down the road. Ryan: And then you get out on their radar, right? Because you're not on their radar otherwise. So, there was actually a really interesting story that I heard Mark from one of the guys I interviewed in my Podcast, where he was at a trade association, he started talking one of the base competitors and he goes “Why don't you buy me?” and that's how he started and they started, you know, BS and then it went around and then the guy has said “You know what? Let's have a [inaudible 0:28:00] every 6 months call to see how you're doing” and these people literally told him exactly what to do, so they could buy him. Mark: That's great. Ryan: That was super unique, right? His name is Norm Brodsky, he wrote Street Smarts and he was a part of the small giants book, so he's on the cover of [inaudible 0:28:16] and a lot of exposure but like, I think the concept is very unique, because if you wanted to buy my business, why don't you just keep telling me what to do, and if everything works, I mean, like I said it's kind of a shooting for the starts, but I mean, you got really nothing to lose at that point especially if you don't need to sell. Mark: Yeah alright. So you said a couple of things a while ago, I think is a good foundation I have and this is a general advise, and feel free to disagree with it if you disagree with any of the advice that I typically give people and respect them on this. With strategic, yeah you can get the out of the water valuation sometimes. But it all starts with first making their business safe, financially viable business and in someone that you can sell in a financial market. You are dealing few buyers, this is probably the biggest obstacle to a strategic sale, you might have half  a dozen companies that can potentially acquire a business and the sake people make is they went in and say “I want to sell my business” then they called ABC company and ABC company's saying “Yeah we don't have a million dollars” or “You were not in our annual budget this year” or “Acquisitions were not in our plan for this year”. Ryan: Right, I'd pause you there for a second. They may have the money, but like, everybody's busy, right? So what if they're developing their own software or doing something else, they might just not have the physical time to integrate the two companies. Mark: Right. Yeah absolutely. So you need to have that relationship in place and it has to make sense as being a natural evolution. Kind of like a marriage, right? I mean.. Ryan: Yeah, totally. I mean, you're partnering up with someone. Mark: Yeah, and last thing I would say is, take a look to see if actually does make sense. That first company that is sold, in the webhosting space, I could've sold that very easily in a strategic sale, because there was so many strategic happening, we did a financial sale because we knew we're going to get more money. So, where you can often blow the top of the valuation with this strategic, it doesn't always happen that way. Sometimes financial actually does work a little bit better. Kind of a weird, odd case. Ryan: Sorry you're.. Mark: No, go ahead please. Ryan: I think the one thing to that people really need to think about, because you might blow the valuation off the charts, but I tell you what Mark, the reason why I do what I do now is because we got the financial target that we wanted to hit, I literally had to fire 60 of my friends and family. So if your culture in your employees and the clients.. You have to understand what's important here because in a strategic sale redundancies are huge. So, how will you stomached that afterwards? Like going and calling all of our employees in, they was way at 85 or something like that at that time and they only kept [inaudible 0:30:47] I mean like, that's literally the stomached ache. Are you going to be proud and happy about what you build? Is it just a financial target that's fine and you have people dispersed across the US and there's a lot of VA's and you're not orally loyal to them or if there's people that you care about, like they are role playing that strategic sale I think is extremely important so you can calibrate against all your options. Mark: That's a really, really good point. So what do you do now? What are you doing these days? after the sale, of course. Ryan: So other than being in the Podcast just like yourself, so, we have a company called GEXP Collaborative, so, it's Growth and Exit Planning collaborative, that's what it's stands for, and it took a lot of time, over the last for years.. Exit planning I think there's some negative [inaudible 0:31:33] to it because you might not want to sell right now, but it's literally both having a good business. So we combined the two which is growth and extra planning because it's like, we're talking about what are your plans and then how do you back in to all your strategic plans, they sell where you're trying to go with you options and I found some amazing people in the industry that have different disciplines because you got legal, finance, the front insurance, deal structures, you have the business brokers, you got all these people, and they all play a roll, and how do you back into that plan? So, if you kind of think, we're almost like a building, If you start a building you start with the budget and a blueprint, because you can't build a building without either of those, so the budget is your financial targets, where you want to go and why, so is there debt, net, the amount that you need or cash [inaudible 0:32:22] and what's the blueprint. So what are the five different strategic buyers and then you got the six financial purchase, timing, role, responsibility, and you're back and do it, so you can then hire the team [inaudible 0:32:34] so the growth next to planning that we do with the collaborative team is literally building the budget and a blueprint, and then actually coordinating the team like a general contractor because no one person can do all this stuff. I've been doing it non-stop day and day of four years, and I still couldn't single hand lay out to someone. Mark: Yeah, there's a lot involved with that.. now if somebody is listening to this, one of the misconception running to all the time, with clients that come to us and say I want to sell, I'm not really ready because I did not plan ahead maybe should've talked to somebody 2 or 3 years ago. We try to get people to talk to us, the brokers, a few years in advance. For you, you're focusing again on that growth as well so even if somebody isn't ever planning to sell, it still makes sense to talk about that growth. Ryan: Because the reality is you're going to do the best of your business at some point. I mean, there's people, like I work within this, the baby boomers, well they're going to die in your business but then what you're doing is you're working on the shares and the estate planning and dispersing the shares to employees, and to kids, and do trust, so he's going to sell his company, and you know what, he loves it, great! But then there's, build a business that has value and has cash flow and you de-risks then you can literally do whatever you want whenever you want. So yeah you're right it's coming ahead of time but then also knowing the people like you and building these relationships, you can't do this at the last second, you're going to leave money on the table, you're not going to be as happy with terms and conditions and so many times Mark, and I don't know if you see this, but a lot of people that are out there, and the people that are in aggressive growth path, they're all acquiring company so the out of the blue offers happen all the time. So whether it's PE firms or funds or other strategic buyers, and how do you know what to weigh that against if you don't have a plan? So you don't even know like how much I'm going to get? What terms? I mean, you're thinking on the fly and that usually doesn't go as well..   Mark: Right! The number of time I've heard from clients, get in to this process and say, “Man, I really wish I've contacted you a year ago” I mean it happens all the time, no one ever thinks about selling their business until they actually want to sell their business and I think what's really cool about what you're doing is you're focusing again not just the exit, you're focusing on growth. Because a good growth strategy is a good exit strategy they often go hand in hand. Ryan: You're back can do it. You know, I just have a little plug for you guys too, because we do not do what you do, and I think a lot of entrepreneurs, they really think, because they understand their business so well that they can sell their business by themselves, and “Oh my gosh” it's the first time you're going to do it and why.. Like every one of those professional should pay for themselves, it should be your return of investment, what to spend, because you know it's an emotional roller coaster first of all and it's like a 24/7 fire drill while you are in the process which is what your team does, right? so I think all the people, if you have the right advisors, and that's another reason left a lot of money on the table, is you need to have the right advisers. I mean it wasn't people that do it all they want, they do transactions, they understand the market, your industry, and so having the right team is crazy important. Mark: Yeah, alright could you plug as well if anyone listen to this and enjoys the Quiet Light podcasts, and hopefully you do if you've listened this long, Ryan's Podcast talks a lot about the same stuff, you talk a lot about selling, you talked to a lot of entrepreneur's who has sold their businesses before, and you go over a lot of the same material, but with a little bit of a difference spinned to it, really, really high quality content and another one, what was name of the Podcast where can they find it? Ryan: “Life after Business” Mark: Life after Business. Awesome! So we will link to it in the show notes on our Podcast page, we'll also link over the Ryan's website, and Ryan, anything else that you want us to link or to want to draw attention to, please feel free. Ryan: We got a resources tab just like you, you're my model right? So I guess I said year and a half ago, you put me in the right direction with the presence that I wanted online, so we got white papers, and resources and Podcasts and all that kind of stuff so. Mark: Awesome, so definitely check at his site and feel free to reach out to him, if you just want to talk, he's a good guy to talk to. You know I can talk all day about this stuff and someday we probably will. Thanks for coming I really appreciate it. Ryan: Yeah, had a blast Mark, Thanks! Mark: Alright. Links and Resources: www.gexpcollaborative.com Ryan's website Life after Business Podcast Ryan's podcast link

Classiks_Dirty_Legend
20180125 Classiks Dirty Jeudi

Classiks_Dirty_Legend

Play Episode Listen Later Jan 24, 2018 61:52


Tracklist : -Jamelia : Superstar (2003) -Eric Benet : Love don’t love me (2001) -Brian McKnight feat. Nelly : All night long (2003) -Lemar : Soul man (2004) -Mary J. Blige : I love you (1994) -Janet Jackson : Go deep (1998) -Faith Evans feat. Carl Thomas : Can’t believe (2001) -Ginuwine : Just because (2001) -Brandy : Full moon (2002) -Koffee Brown feat. B-12 : Weekend thing (2001) -TLC : No scrubs (1999) -Usher : My way (1997) -Joe : Good girls (1997) -Monica : Don't take it personal (Just one of dem days) (1995) -Tevin Campbell : One song (1991)

180 Nutrition -The Health Sessions.
Dr Joe Dispenza: Becoming Supernatural. How Common People Are Doing The Uncommon

180 Nutrition -The Health Sessions.

Play Episode Listen Later Dec 6, 2017 57:22


This week we welcome to the show author, speaker, comedian and internet Youtube sensation Dr. Joe Dispenza. He is an international lecturer, researcher, corporate consultant, author, and educator who has been invited to speak in more than 32 countries on five continents. As a lecturer and educator, he is driven by the conviction that each of us has the potential for greatness and unlimited abilities. In his easy-to-understand, encouraging, and compassionate style, he has educated thousands of people, detailing how they can rewire their brains and recondition their bodies to make lasting changes. In addition to offering a variety of online courses and teleclasses, he has personally taught three-day progressive workshops and five-day advanced workshops in the U.S. and abroad. Starting in 2018, his workshops will become week-long offerings, and the content of the progressive and advanced workshops will be available online. (To learn more, please visit the events section at: www.drjoedispenza.com.) Dr. Joe is also a faculty member at Quantum University in Honolulu, Hawaii; the Omega Institute for Holistic Studies in Rhinebeck, New York; and Kripalu Center for Yoga and Health in Stockbridge, Massachusetts. He’s also an invited chair of the research committee at Life University in Atlanta, Georgia. As a researcher, Dr. Joe’s passion can be found at the intersection of the latest findings from the fields of neuroscience, epigenetics, and quantum physics to explore the science behind spontaneous remissions. He uses that knowledge to help people heal themselves of illnesses, chronic conditions, and even terminal diseases so they can enjoy a more fulfilled and happy life, as well as evolve their consciousness. At his advanced workshops around the world, he has partnered with other scientists to perform extensive research on the effects of meditation, including epigenetic testing, brain mapping with electroencephalograms (EEGs), and individual energy field testing with a gas discharge visualization (GDV) machine. His research also includes measuring both heart coherence with HeartMath monitors and the energy present in the workshop environment before, during, and after events with a GDV Sputnik sensor. As a corporate consultant, Dr. Joe gives on-site lectures and workshops for businesses and corporations interested in using neuroscientific principles to boost employees’ creativity, innovation, productivity, and more. His corporate program also includes private coaching for upper management. Dr. Joe has personally trained and certified a group of more than 70 corporate trainers who teach his model of transformation to companies around the world. He also recently began certifying independent coaches to use his model of change with their own clients.   Questions we ask in this episode: What can we expect from your new book ‘Becoming Supernatural’?  You’ve been using science to measure transformations in your workshop. What kind of transformations have you seen? How does meditation changes our biology in real-time? How do you handle stress? How much do thoughts influence our health? Shop here: http://shop.180nutrition.com.au/ Full Transcript & Video Version: This podcast, I think we've saved the best for last for 2018, because I thought it was absolutely awesome, and Joe was on fire today, and we go down so many rabbit holes and it was great perspective as well, because Stu hasn't done Joe's work, and obviously I'm quite involved, so we get both sides of the coin, and I just thought it made for a fantastic interview. We covered many, many topics, of course, and it's been fantastic. If you're unfamiliar with Joe's work, I just have to say sit back, enjoy, keep an open mind, and I think you're going to really love what he has to say and how this interview goes and it's probably an episode you're going to want to listen to a couple of times as well, as we dive into it. [00:01:30] [00:02:00] And yeah, I thought it was fantastic anyway, so I've no doubt you're going to enjoy. And I just want to mention, as well, guys, that if you are kind of loving these topics and this work around Joe ... Joe Dispenza's work, [Greg Braden's 00:01:40] work, [Bruce Lipton's 00:01:41] work, all the people that we've had on in that sort on neuroscience, mindset philosophy on the podcast, I've created a Facebook page when I'm delving into that work a little bit more. So if you want to come and join us, the Facebook groups, I should say, is called, "Let It In with Guy Lawrence". Let It In with Guy Laurence, and come back there and we can more of these discussions and stuff like that around that. Or just go back to guylawrence.com.au and you can join the group from there. You'll just have to opt into my five step morning routine, which is actually worth getting anyway. So go back to guylawrence.com.au or Let It In with Guy Lawrence on Facebook, search for that and come join us, I'd love to see you in there. [00:02:30] Anyway, lets go over to Joe Dispenza, I loved every minute of this podcast and I've no doubt I'll listen to it a couple of times myself, because there's nuggets of wisdom in it. Let's go over to Joe. Hi, this is Guy Lawrence. I'm joined by Stuart Cooke as always, good morning Stuart. Stu Hello mate. Guy And we welcome back to the show today our awesome guest, Dr. Joe Dispenza. Joe welcome back to the show. Dr. Joe Good to be with you, mate. Stu Ha ha, there he is. Guy We've actually had a few Ozzie impressions come on over the years, mate, I reckon that was the best one we've had. [00:01:00] This podcast, I think we've saved the best for last for 2018, because I thought it was absolutely awesome, and Joe was on fire today, and we go down so many rabbit holes and it was great perspective as well, because Stu hasn't done Joe's work, and obviously I'm quite involved, so we get both sides of the coin, and I just thought it made for a fantastic interview. We covered many, many topics, of course, and it's been fantastic. If you're unfamiliar with Joe's work, I just have to say sit back, enjoy, keep an open mind, and I think you're going to really love what he has to say and how this interview goes and it's probably an episode you're going to want to listen to a couple of times as well, as we dive into it. [00:01:30] [00:02:00] And yeah, I thought it was fantastic anyway, so I've no doubt you're going to enjoy. And I just want to mention, as well, guys, that if you are kind of loving these topics and this work around Joe ... Joe Dispenza's work, [Greg Braden's 00:01:40] work, [Bruce Lipton's 00:01:41] work, all the people that we've had on in that sort on neuroscience, mindset philosophy on the podcast, I've created a Facebook page when I'm delving into that work a little bit more. So if you want to come and join us, the Facebook groups, I should say, is called, "Let It In with Guy Lawrence". Let It In with Guy Laurence, and come back there and we can more of these discussions and stuff like that around that. Or just go back to guylawrence.com.au and you can join the group from there. You'll just have to opt into my five step morning routine, which is actually worth getting anyway. So go back to guylawrence.com.au or Let It In with Guy Lawrence on Facebook, search for that and come join us, I'd love to see you in there. [00:02:30] Anyway, lets go over to Joe Dispenza, I loved every minute of this podcast and I've no doubt I'll listen to it a couple of times myself, because there's nuggets of wisdom in it. Let's go over to Joe. Hi, this is Guy Lawrence. I'm joined by Stuart Cooke as always, good morning Stuart. Stu Hello mate. Guy And we welcome back to the show today our awesome guest, Dr. Joe Dispenza. Joe welcome back to the show. Dr. Joe Good to be with you, mate. Stu Ha ha, there he is. Guy We've actually had a few Ozzie impressions come on over the years, mate, I reckon that was the best one we've had. Dr. Joe Oh God. Guy Just in case, I love kicking off with this question for the show, and I've no doubt I'll get a great answer this morning as well, and for our listeners who might not be familiar with your work, and because you travel so much. When somebody asks you, a stranger, what you do for a living, what do you usually say, Joe? Dr. Joe [00:04:00] Well it's funny that you say that because I was on a flight just the other day, and I was 40 minutes to get from one side of the airport to the other, and I was walking very quickly and I passed the person that I knew was going to be on my flight, and I knew she was going to sit next to me. I don't know how I knew that, but anyway. She got on the plane, and she looked over and she pointed at the seat, and I got up and I helped her put her bags above me, and then she sat down next to me. And I said, "So, how long have you been an attorney?" And she looked at me and she said, "What? How did you know I was an attorney?" And I said, "I just know". She said, "I work so hard on not looking like an attorney". I said, "oh I knew you were an attorney", and I said, "oh let me guess, you work for the government". She said, "how did you know that?" I said, "I don't know, I just knew" [00:05:00] And so we started talking and she said, so what do you do. And I said, I always start off with the conservative answer, "I'm an author". And then she said, well, what do you write about? And I said, well, I write about the neuroscience and the biology of personal change and transformation. And she said, "what!" And I said, "yeah, like how do we change, how do we create a better life for ourself, how do we live with more passion and more wholeness". And from that moment on, from the time we flew ... took off to the time we landed we never stopped talking. And I had so much to do but she had question, after question, after question. And it's a topic that, I think, most people are interested in, because I think we innately believe that what this new science is telling us, we innately believe that it is possible for us, to create a better lives, better life for ourselves and to change who we are. So, it was a great conversation.  http://180nutrition.com.au/180-tv/dr-joe-dispenza-interview/ 

Independent.ie/1916
A History of the Easter Rising in 10 Objects Ep 8: Wall Fragment from 16 Moore St

Independent.ie/1916

Play Episode Listen Later May 6, 2016 12:37


The eighth in a ten part podcast series on a 'History of the Easter Rising in 10 Objects' discusses a fragment of a wall from 16 Moore Street inscribed by Thomas Clarke. The Volunteers were tired, and lacked food and water, but some of them began to smash through the walls of the houses to permit access along the length of the terrace and hopefully find an escape route, but it became obvious that they were trapped. In one of the houses, decades of the rosaries were recited, though when Michael Collins came across the exhausted Joe Good sitting with his head in his hands, he crankily exclaimed 'are you [fucking] praying too?'. Clarke, Connolly, MacDiarmada, Pearse and Plunkett were all present in Moore Street and eventually, realising the hopelessness of their situation, they decided to surrender in 16 Moore Street, which was owned by Patrick Plunkett, a poulterer. The fragment of wall that he inscribed was from that house. 'A History of the Easter Rising in 50 Objects' by John Gibney is available now.

SX3
GunDudesEpisode232

SX3

Play Episode Listen Later Feb 3, 2013 68:45


This week we interview Joe Good about the new oderless gun cleaner Tec Shield Elite. http://www.tecshieldelite.com/

joe good