Podcast appearances and mentions of steve sure

  • 10PODCASTS
  • 13EPISODES
  • 43mAVG DURATION
  • ?INFREQUENT EPISODES
  • Dec 14, 2023LATEST

POPULARITY

20172018201920202021202220232024


Best podcasts about steve sure

Latest podcast episodes about steve sure

Latent Space: The AI Engineer Podcast — CodeGen, Agents, Computer Vision, Data Science, AI UX and all things Software 3.0
The "Normsky" architecture for AI coding agents — with Beyang Liu + Steve Yegge of SourceGraph

Latent Space: The AI Engineer Podcast — CodeGen, Agents, Computer Vision, Data Science, AI UX and all things Software 3.0

Play Episode Listen Later Dec 14, 2023 79:37


We are running an end of year survey for our listeners. Let us know any feedback you have for us, what episodes resonated with you the most, and guest requests for 2024! RAG has emerged as one of the key pieces of the AI Engineer stack. Jerry from LlamaIndex called it a “hack”, Bryan from Hex compared it to “a recommendation system from LLMs”, and even LangChain started with it. RAG is crucial in any AI coding workflow. We talked about context quality for code in our Phind episode. Today's guests, Beyang Liu and Steve Yegge from SourceGraph, have been focused on code indexing and retrieval for over 15 years. We locked them in our new studio to record a 1.5 hours masterclass on the history of code search, retrieval interfaces for code, and how they get SOTA 30% completion acceptance rate in their Cody product by being better at the “bin packing problem” of LLM context generation. Google Grok → SourceGraph → CodyWhile at Google in 2008, Steve built Grok, which lives on today as Google Kythe. It allowed engineers to do code parsing and searching across different codebases and programming languages. (You might remember this blog post from Steve's time at Google) Beyang was an intern at Google at the same time, and Grok became the inspiration to start SourceGraph in 2013. The two didn't know eachother personally until Beyang brought Steve out of retirement 9 years later to join him as VP Engineering. Fast forward 10 years, SourceGraph has become to best code search tool out there and raised $223M along the way. Nine months ago, they open sourced SourceGraph Cody, their AI coding assistant. All their code indexing and search infrastructure allows them to get SOTA results by having better RAG than competitors:* Code completions as you type that achieve an industry-best Completion Acceptance Rate (CAR) as high as 30% using a context-enhanced open-source LLM (StarCoder)* Context-aware chat that provides the option of using GPT-4 Turbo, Claude 2, GPT-3.5 Turbo, Mistral 7x8B, or Claude Instant, with more model integrations planned* Doc and unit test generation, along with AI quick fixes for common coding errors* AI-enhanced natural language code search, powered by a hybrid dense/sparse vector search engine There are a few pieces of infrastructure that helped Cody achieve these results:Dense-sparse vector retrieval system For many people, RAG = vector similarity search, but there's a lot more that you can do to get the best possible results. From their release:"Sparse vector search" is a fancy name for keyword search that potentially incorporates LLMs for things like ranking and term expansion (e.g., "k8s" expands to "Kubernetes container orchestration", possibly weighted as in SPLADE): * Dense vector retrieval makes use of embeddings, the internal representation that LLMs use to represent text. Dense vector retrieval provides recall over a broader set of results that may have no exact keyword matches but are still semantically similar. * Sparse vector retrieval is very fast, human-understandable, and yields high recall of results that closely match the user query. * We've found the approaches to be complementary.There's a very good blog post by Pinecone on SPLADE for sparse vector search if you're interested in diving in. If you're building RAG applications in areas that have a lot of industry-specific nomenclature, acronyms, etc, this is a good approach to getting better results.SCIPIn 2016, Microsoft announced the Language Server Protocol (LSP) and the Language Server Index Format (LSIF). This protocol makes it easy for IDEs to get all the context they need from a codebase to get things like file search, references, “go to definition”, etc. SourceGraph developed SCIP, “a better code indexing format than LSIF”:* Simpler and More Efficient Format: SCIP utilizes Protobuf instead of JSON, which is used by LSIF. Protobuf is more space-efficient, simpler, and more suitable for systems programming. * Better Performance and Smaller Index Sizes: SCIP indexers, such as scip-clang, show enhanced performance and reduced index file sizes compared to LSIF indexers (10%-20% smaller)* Easier to Develop and Debug: SCIP's design, centered around human-readable string IDs for symbols, makes it faster and more straightforward to develop new language indexers. Having more efficient indexing is key to more performant RAG on code. Show Notes* Sourcegraph* Cody* Copilot vs Cody* Steve's Stanford seminar on Grok* Steve's blog* Grab* Fireworks* Peter Norvig* Noam Chomsky* Code search* Kelly Norton* Zoekt* v0.devSee also our past episodes on Cursor, Phind, Codeium and Codium as well as the GitHub Copilot keynote at AI Engineer Summit.Timestamps* [00:00:00] Intros & Backgrounds* [00:05:20] How Steve's work on Grok inspired SourceGraph for Beyang* [00:08:10] What's Cody?* [00:11:22] Comparison of coding assistants and the capabilities of Cody* [00:16:00] The importance of context (RAG) in AI coding tools* [00:21:33] The debate between Chomsky and Norvig approaches in AI* [00:30:06] Normsky: the Norvig + Chomsky models collision* [00:36:00] The death of the DSL?* [00:40:00] LSP, Skip, Kythe, BFG, and all that fun stuff* [00:53:00] The SourceGraph internal stack* [00:58:46] Building on open source models* [01:02:00] SourceGraph for engineering managers?* [01:12:00] Lightning RoundTranscriptAlessio: Hey everyone, welcome to the Latent Space podcast. This is Alessio, partner and CTO-in-Residence at Decibel Partners, and I'm joined by my co-host Swyx, founder of Smol AI. [00:00:16]Swyx: Hey, and today we're christening our new podcast studio in the Newton, and we have Beyang and Steve from Sourcegraph. Welcome. [00:00:25]Beyang: Hey, thanks for having us. [00:00:26]Swyx: So this has been a long time coming. I'm very excited to have you. We also are just celebrating the one year anniversary of ChatGPT yesterday, but also we'll be talking about the GA of Cody later on today. We'll just do a quick intros of both of you. Obviously, people can research you and check the show notes for more. Beyang, you worked in computer vision at Stanford and then you worked at Palantir. I did, yeah. You also interned at Google. [00:00:48]Beyang: I did back in the day where I get to use Steve's system, DevTool. [00:00:53]Swyx: Right. What was it called? [00:00:55]Beyang: It was called Grok. Well, the end user thing was Google Code Search. That's what everyone called it, or just like CS. But the brains of it were really the kind of like Trigram index and then Grok, which provided the reference graph. [00:01:07]Steve: Today it's called Kythe, the open source Google one. It's sort of like Grok v3. [00:01:11]Swyx: On your podcast, which you've had me on, you've interviewed a bunch of other code search developers, including the current developer of Kythe, right? [00:01:19]Beyang: No, we didn't have any Kythe people on, although we would love to if they're up for it. We had Kelly Norton, who built a similar system at Etsy, it's an open source project called Hound. We also had Han-Wen Nienhuys, who created Zoekt, which is, I think, heavily inspired by the Trigram index that powered Google's original code search and that we also now use at Sourcegraph. Yeah. [00:01:45]Swyx: So you teamed up with Quinn over 10 years ago to start Sourcegraph and you were indexing all code on the internet. And now you're in a perfect spot to create a code intelligence startup. Yeah, yeah. [00:01:56]Beyang: I guess the backstory was, I used Google Code Search while I was an intern. And then after I left that internship and worked elsewhere, it was the single dev tool that I missed the most. I felt like my job was just a lot more tedious and much more of a hassle without it. And so when Quinn and I started working together at Palantir, he had also used various code search engines in open source over the years. And it was just a pain point that we both felt, both working on code at Palantir and also working within Palantir's clients, which were a lot of Fortune 500 companies, large financial institutions, folks like that. And if anything, the pains they felt in dealing with large complex code bases made our pain points feel small by comparison. So that was really the impetus for starting Sourcegraph. [00:02:42]Swyx: Yeah, excellent. Steve, you famously worked at Amazon. And you've told many, many stories. I want every single listener of Latent Space to check out Steve's YouTube because he effectively had a podcast that you didn't tell anyone about or something. You just hit record and just went on a few rants. I'm always here for your Stevie rants. And then you moved to Google, where you also had some interesting thoughts on just the overall Google culture versus Amazon. You joined Grab as head of eng for a couple of years. I'm from Singapore, so I have actually personally used a lot of Grab's features. And it was very interesting to see you talk so highly of Grab's engineering and sort of overall prospects. [00:03:21]Steve: Because as a customer, it sucked? [00:03:22]Swyx: Yeah, no, it's just like, being from a smaller country, you never see anyone from our home country being on a global stage or talked about as a startup that people admire or look up to, like on the league that you, with all your legendary experience, would consider equivalent. Yeah. [00:03:41]Steve: Yeah, no, absolutely. They actually, they didn't even know that they were as good as they were, in a sense. They started hiring a bunch of people from Silicon Valley to come in and sort of like fix it. And we came in and we were like, Oh, we could have been a little better operational excellence and stuff. But by and large, they're really sharp. The only thing about Grab is that they get criticized a lot for being too westernized. Oh, by who? By Singaporeans who don't want to work there. [00:04:06]Swyx: Okay. I guess I'm biased because I'm here, but I don't see that as a problem. If anything, they've had their success because they were more westernized than the Sanders Singaporean tech company. [00:04:15]Steve: I mean, they had their success because they are laser focused. They copy to Amazon. I mean, they're executing really, really, really well for a giant. I was on a slack with 2,500 engineers. It was like this giant waterfall that you could dip your toe into. You'd never catch up. Actually, the AI summarizers would have been really helpful there. But yeah, no, I think Grab is successful because they're just out there with their sleeves rolled up, just making it happen. [00:04:43]Swyx: And for those who don't know, it's not just like Uber of Southeast Asia, it's also a super app. PayPal Plus. [00:04:48]Steve: Yeah. [00:04:49]Swyx: In the way that super apps don't exist in the West. It's one of the enduring mysteries of B2C that super apps work in the East and don't work in the West. We just don't understand it. [00:04:57]Beyang: Yeah. [00:04:58]Steve: It's just kind of curious. They didn't work in India either. And it was primarily because of bandwidth reasons and smaller phones. [00:05:03]Swyx: That should change now. It should. [00:05:05]Steve: And maybe we'll see a super app here. [00:05:08]Swyx: You retired-ish? I did. You retired-ish on your own video game? Mm-hmm. Any fun stories about that? And that's also where you discovered some need for code search, right? Mm-hmm. [00:05:16]Steve: Sure. A need for a lot of stuff. Better programming languages, better databases. Better everything. I mean, I started in like 95, right? Where there was kind of nothing. Yeah. Yeah. [00:05:24]Beyang: I just want to say, I remember when you first went to Grab because you wrote that blog post talking about why you were excited about it, about like the expanding Asian market. And our reaction was like, oh, man, how did we miss stealing it with you? [00:05:36]Swyx: Hiring you. [00:05:37]Beyang: Yeah. [00:05:38]Steve: I was like, miss that. [00:05:39]Swyx: Tell that story. So how did this happen? Right? So you were inspired by Grok. [00:05:44]Beyang: I guess the backstory from my point of view is I had used code search and Grok while at Google, but I didn't actually know that it was connected to you, Steve. I knew you from your blog posts, which were always excellent, kind of like inside, very thoughtful takes from an engineer's perspective on some of the challenges facing tech companies and tech culture and that sort of thing. But my first introduction to you within the context of code intelligence, code understanding was I watched a talk that you gave, I think at Stanford, about Grok when you're first building it. And that was very eye opening. I was like, oh, like that guy, like the guy who, you know, writes the extremely thoughtful ranty like blog posts also built that system. And so that's how I knew, you know, you were involved in that. And then, you know, we always wanted to hire you, but never knew quite how to approach you or, you know, get that conversation started. [00:06:34]Steve: Well, we got introduced by Max, right? Yeah. It was temporal. Yeah. Yeah. I mean, it was a no brainer. They called me up and I had noticed when Sourcegraph had come out. Of course, when they first came out, I had this dagger of jealousy stabbed through me piercingly, which I remember because I am not a jealous person by any means, ever. But boy, I was like, but I was kind of busy, right? And just one thing led to another. I got sucked back into the ads vortex and whatever. So thank God Sourcegraph actually kind of rescued me. [00:07:05]Swyx: Here's a chance to build DevTools. Yeah. [00:07:08]Steve: That's the best. DevTools are the best. [00:07:10]Swyx: Cool. Well, so that's the overall intro. I guess we can get into Cody. Is there anything else that like people should know about you before we get started? [00:07:18]Steve: I mean, everybody knows I'm a musician. I can juggle five balls. [00:07:24]Swyx: Five is good. Five is good. I've only ever managed three. [00:07:27]Steve: Five is hard. Yeah. And six, a little bit. [00:07:30]Swyx: Wow. [00:07:31]Beyang: That's impressive. [00:07:32]Alessio: So yeah, to jump into Sourcegraph, this has been a company 10 years in the making. And as Sean said, now you're at the right place. Phase two. Now, exactly. You spent 10 years collecting all this code, indexing, making it easy to surface it. Yeah. [00:07:47]Swyx: And also learning how to work with enterprises and having them trust you with their code bases. Yeah. [00:07:52]Alessio: Because initially you were only doing on-prem, right? Like a lot of like VPC deployments. [00:07:55]Beyang: So in the very early days, we're cloud only. But the first major customers we landed were all on-prem, self-hosted. And that was, I think, related to the nature of the problem that we're solving, which becomes just like a critical, unignorable pain point once you're above like 100 devs or so. [00:08:11]Alessio: Yeah. And now Cody is going to be GA by the time this releases. So congrats to your future self for launching this in two weeks. Can you give a quick overview of just what Cody is? I think everybody understands that it's a AI coding agent, but a lot of companies say they have a AI coding agent. So yeah, what does Cody do? How do people interface with it? [00:08:32]Beyang: Yeah. So how is it different from the like several dozen other AI coding agents that exist in the market now? When we thought about building a coding assistant that would do things like code generation and question answering about your code base, I think we came at it from the perspective of, you know, we've spent the past decade building the world's best code understanding engine for human developers, right? So like it's kind of your guide as a human dev if you want to go and dive into a large complex code base. And so our intuition was that a lot of the context that we're providing to human developers would also be useful context for AI developers to consume. And so in terms of the feature set, Cody is very similar to a lot of other assistants. It does inline autocompletion. It does code base aware chat. It does specific commands that automate, you know, tasks that you might rather not want to do like generating unit tests or adding detailed documentation. But we think the core differentiator is really the quality of the context, which is hard to kind of describe succinctly. It's a bit like saying, you know, what's the difference between Google and Alta Vista? There's not like a quick checkbox list of features that you can rattle off, but it really just comes down to all the attention and detail that we've paid to making that context work well and be high quality and fast for human devs. We're now kind of plugging into the AI coding assistant as well. Yeah. [00:09:53]Steve: I mean, just to add my own perspective on to what Beyang just described, RAG is kind of like a consultant that the LLM has available, right, that knows about your code. RAG provides basically a bridge to a lookup system for the LLM, right? Whereas fine tuning would be more like on the job training for somebody. If the LLM is a person, you know, and you send them to a new job and you do on the job training, that's what fine tuning is like, right? So tuned to our specific task. You're always going to need that expert, even if you get the on the job training, because the expert knows your particular code base, your task, right? That expert has to know your code. And there's a chicken and egg problem because, right, you know, we're like, well, I'm going to ask the LLM about my code, but first I have to explain it, right? It's this chicken and egg problem. That's where RAG comes in. And we have the best consultants, right? The best assistant who knows your code. And so when you sit down with Cody, right, what Beyang said earlier about going to Google and using code search and then starting to feel like without it, his job was super tedious. Once you start using these, do you guys use coding assistants? [00:10:53]Swyx: Yeah, right. [00:10:54]Steve: I mean, like we're getting to the point very quickly, right? Where you feel like almost like you're programming without the internet, right? Or something, you know, it's like you're programming back in the nineties without the coding assistant. Yeah. Hopefully that helps for people who have like no idea about coding systems, what they are. [00:11:09]Swyx: Yeah. [00:11:10]Alessio: I mean, going back to using them, we had a lot of them on the podcast already. We had Cursor, we have Codium and Codium, very similar names. [00:11:18]Swyx: Yeah. Find, and then of course there's Copilot. [00:11:22]Alessio: You had a Copilot versus Cody blog post, and I think it really shows the context improvement. So you had two examples that stuck with me. One was, what does this application do? And the Copilot answer was like, oh, it uses JavaScript and NPM and this. And it's like, but that's not what it does. You know, that's what it's built with. Versus Cody was like, oh, these are like the major functions. And like, these are the functionalities and things like that. And then the other one was, how do I start this up? And Copilot just said NPM start, even though there was like no start command in the package JSON, but you know, most collapse, right? Most projects use NPM start. So maybe this does too. How do you think about open source models? Because Copilot has their own private thing. And I think you guys use Starcoder, if I remember right. Yeah, that's correct. [00:12:09]Beyang: I think Copilot uses some variant of Codex. They're kind of cagey about it. I don't think they've like officially announced what model they use. [00:12:16]Swyx: And I think they use a range of models based on what you're doing. Yeah. [00:12:19]Beyang: So everyone uses a range of model. Like no one uses the same model for like inline completion versus like chat because the latency requirements for. Oh, okay. Well, there's fill in the middle. There's also like what the model's trained on. So like we actually had completions powered by Claude Instant for a while. And but you had to kind of like prompt hack your way to get it to output just the code and not like, hey, you know, here's the code you asked for, like that sort of text. So like everyone uses a range of models. We've kind of designed Cody to be like especially model, not agnostic, but like pluggable. So one of our kind of design considerations was like as the ecosystem evolves, we want to be able to integrate the best in class models, whether they're proprietary or open source into Cody because the pace of innovation in the space is just so quick. And I think that's been to our advantage. Like today, Cody uses Starcoder for inline completions. And with the benefit of the context that we provide, we actually show comparable completion acceptance rate metrics. It's kind of like the standard metric that folks use to evaluate inline completion quality. It's like if I show you a completion, what's the chance that you actually accept the completion versus you reject it? And so we're at par with Copilot, which is at the head of that industry right now. And we've been able to do that with the Starcoder model, which is open source and the benefit of the context fetching stuff that we provide. And of course, a lot of like prompt engineering and other stuff along the way. [00:13:40]Alessio: And Steve, you wrote a post called cheating is all you need about what you're building. And one of the points you made is that everybody's fighting on the same axis, which is better UI and the IDE, maybe like a better chat response. But data modes are kind of the most important thing. And you guys have like a 10 year old mode with all the data you've been collecting. How do you kind of think about what other companies are doing wrong, right? Like, why is nobody doing this in terms of like really focusing on RAG? I feel like you see so many people. Oh, we just got a new model. It's like a bit human eval. And it's like, well, but maybe like that's not what we should really be doing, you know? Like, do you think most people underestimate the importance of like the actual RAG in code? [00:14:21]Steve: I think that people weren't doing it much. It wasn't. It's kind of at the edges of AI. It's not in the center. I know that when ChatGPT launched, so within the last year, I've heard a lot of rumblings from inside of Google, right? Because they're undergoing a huge transformation to try to, you know, of course, get into the new world. And I heard that they told, you know, a bunch of teams to go and train their own models or fine tune their own models, right? [00:14:43]Swyx: Both. [00:14:43]Steve: And, you know, it was a s**t show. Nobody knew how to do it. They launched two coding assistants. One was called Code D with an EY. And then there was, I don't know what happened in that one. And then there's Duet, right? Google loves to compete with themselves, right? They do this all the time. And they had a paper on Duet like from a year ago. And they were doing exactly what Copilot was doing, which was just pulling in the local context, right? But fundamentally, I thought of this because we were talking about the splitting of the [00:15:10]Swyx: models. [00:15:10]Steve: In the early days, it was the LLM did everything. And then we realized that for certain use cases, like completions, that a different, smaller, faster model would be better. And that fragmentation of models, actually, we expected to continue and proliferate, right? Because we are fundamentally, we're a recommender engine right now. Yeah, we're recommending code to the LLM. We're saying, may I interest you in this code right here so that you can answer my question? [00:15:34]Swyx: Yeah? [00:15:34]Steve: And being good at recommender engine, I mean, who are the best recommenders, right? There's YouTube and Spotify and, you know, Amazon or whatever, right? Yeah. [00:15:41]Swyx: Yeah. [00:15:41]Steve: And they all have many, many, many, many, many models, right? For all fine-tuned for very specific, you know. And that's where we're heading in code, too. Absolutely. [00:15:50]Swyx: Yeah. [00:15:50]Alessio: We just did an episode we released on Wednesday, which we said RAG is like Rexis or like LLMs. You're basically just suggesting good content. [00:15:58]Swyx: It's like what? Recommendations. [00:15:59]Beyang: Recommendations. [00:16:00]Alessio: Oh, got it. [00:16:01]Steve: Yeah, yeah, yeah. [00:16:02]Swyx: So like the naive implementation of RAG is you embed everything, throw it in a vector database, you embed your query, and then you find the nearest neighbors, and that's your RAG. But actually, you need to rank it. And actually, you need to make sure there's sample diversity and that kind of stuff. And then you're like slowly gradient dissenting yourself towards rediscovering proper Rexis, which has been traditional ML for a long time. But like approaching it from an LLM perspective. Yeah. [00:16:24]Beyang: I almost think of it as like a generalized search problem because it's a lot of the same things. Like you want your layer one to have high recall and get all the potential things that could be relevant. And then there's typically like a layer two re-ranking mechanism that bumps up the precision and tries to get the relevant stuff to the top of the results list. [00:16:43]Swyx: Have you discovered that ranking matters a lot? Oh, yeah. So the context is that I think a lot of research shows that like one, context utilization matters based on model. Like GPT uses the top of the context window, and then apparently Claude uses the bottom better. And it's lossy in the middle. Yeah. So ranking matters. No, it really does. [00:17:01]Beyang: The skill with which models are able to take advantage of context is always going to be dependent on how that factors into the impact on the training loss. [00:17:10]Swyx: Right? [00:17:10]Beyang: So like if you want long context window models to work well, then you have to have a ton of data where it's like, here's like a billion lines of text. And I'm going to ask a question about like something that's like, you know, embedded deeply into it and like, give me the right answer. And unless you have that training set, then of course, you're going to have variability in terms of like where it attends to. And in most kind of like naturally occurring data, the thing that you're talking about right now, the thing I'm asking you about is going to be something that we talked about recently. [00:17:36]Swyx: Yeah. [00:17:36]Steve: Did you really just say gradient dissenting yourself? Actually, I love that it's entered the casual lexicon. Yeah, yeah, yeah. [00:17:44]Swyx: My favorite version of that is, you know, how we have to p-hack papers. So, you know, when you throw humans at the problem, that's called graduate student dissent. That's great. It's really awesome. [00:17:54]Alessio: I think the other interesting thing that you have is this inline assist UX that I wouldn't say async, but like it works while you can also do work. So you can ask Cody to make changes on a code block and you can still edit the same file at the same time. [00:18:07]Swyx: Yeah. [00:18:07]Alessio: How do you see that in the future? Like, do you see a lot of Cody's running together at the same time? Like, how do you validate also that they're not messing each other up as they make changes in the code? And maybe what are the limitations today? And what do you think about where the attack is going? [00:18:21]Steve: I want to start with a little history and then I'm going to turn it over to Bian, all right? So we actually had this feature in the very first launch back in June. Dominic wrote it. It was called nonstop Cody. And you could have multiple, basically, LLM requests in parallel modifying your source [00:18:37]Swyx: file. [00:18:37]Steve: And he wrote a bunch of code to handle all of the diffing logic. And you could see the regions of code that the LLM was going to change, right? And he was showing me demos of it. And it just felt like it was just a little before its time, you know? But a bunch of that stuff, that scaffolding was able to be reused for where we're inline [00:18:56]Swyx: sitting today. [00:18:56]Steve: How would you characterize it today? [00:18:58]Beyang: Yeah, so that interface has really evolved from a, like, hey, general purpose, like, request anything inline in the code and have the code update to really, like, targeted features, like, you know, fix the bug that exists at this line or request a very specific [00:19:13]Swyx: change. [00:19:13]Beyang: And the reason for that is, I think, the challenge that we ran into with inline fixes, and we do want to get to the point where you could just fire and forget and have, you know, half a dozen of these running in parallel. But I think we ran into the challenge early on that a lot of people are running into now when they're trying to construct agents, which is the reliability of, you know, working code generation is just not quite there yet in today's language models. And so that kind of constrains you to an interaction where the human is always, like, in the inner loop, like, checking the output of each response. And if you want that to work in a way where you can be asynchronous, you kind of have to constrain it to a domain where today's language models can generate reliable code well enough. So, you know, generating unit tests, that's, like, a well-constrained problem. Or fixing a bug that shows up as, like, a compiler error or a test error, that's a well-constrained problem. But the more general, like, hey, write me this class that does X, Y, and Z using the libraries that I have, that is not quite there yet, even with the benefit of really good context. Like, it definitely moves the needle a lot, but we're not quite there yet to the point where you can just fire and forget. And I actually think that this is something that people don't broadly appreciate yet, because I think that, like, everyone's chasing this dream of agentic execution. And if we're to really define that down, I think it implies a couple things. You have, like, a multi-step process where each step is fully automated. We don't have to have a human in the loop every time. And there's also kind of like an LM call at each stage or nearly every stage in that [00:20:45]Swyx: chain. [00:20:45]Beyang: Based on all the work that we've done, you know, with the inline interactions, with kind of like general Codyfeatures for implementing longer chains of thought, we're actually a little bit more bearish than the average, you know, AI hypefluencer out there on the feasibility of agents with purely kind of like transformer-based models. To your original question, like, the inline interactions with CODI, we actually constrained it to be more targeted, like, you know, fix the current error or make this quick fix. I think that that does differentiate us from a lot of the other tools on the market, because a lot of people are going after this, like, shnazzy, like, inline edit interaction, whereas I think where we've moved, and this is based on the user feedback that we've gotten, it's like that sort of thing, it demos well, but when you're actually coding day to day, you don't want to have, like, a long chat conversation inline with the code base. That's a waste of time. You'd rather just have it write the right thing and then move on with your life or not have to think about it. And that's what we're trying to work towards. [00:21:37]Steve: I mean, yeah, we're not going in the agent direction, right? I mean, I'll believe in agents when somebody shows me one that works. Yeah. Instead, we're working on, you know, sort of solidifying our strength, which is bringing the right context in. So new context sources, ways for you to plug in your own context, ways for you to control or influence the context, you know, the mixing that happens before the request goes out, etc. And there's just so much low-hanging fruit left in that space that, you know, agents seems like a little bit of a boondoggle. [00:22:03]Beyang: Just to dive into that a little bit further, like, I think, you know, at a very high level, what do people mean when they say agents? They really mean, like, greater automation, fully automated, like, the dream is, like, here's an issue, go implement that. And I don't have to think about it as a human. And I think we are working towards that. Like, that is the eventual goal. I think it's specifically the approach of, like, hey, can we have a transformer-based LM alone be the kind of, like, backbone or the orchestrator of these agentic flows? Where we're a little bit more bearish today. [00:22:31]Swyx: You want the human in the loop. [00:22:32]Beyang: I mean, you kind of have to. It's just a reality of the behavior of language models that are purely, like, transformer-based. And I think that's just like a reflection of reality. And I don't think people realize that yet. Because if you look at the way that a lot of other AI tools have implemented context fetching, for instance, like, you see this in the Copilot approach, where if you use, like, the at-workspace thing that supposedly provides, like, code-based level context, it has, like, an agentic approach where you kind of look at how it's behaving. And it feels like they're making multiple requests to the LM being like, what would you do in this case? Would you search for stuff? What sort of files would you gather? Go and read those files. And it's like a multi-hop step, so it takes a long while. It's also non-deterministic. Because any sort of, like, LM invocation, it's like a dice roll. And then at the end of the day, the context it fetches is not that good. Whereas our approach is just like, OK, let's do some code searches that make sense. And then maybe, like, crawl through the reference graph a little bit. That is fast. That doesn't require any sort of LM invocation at all. And we can pull in much better context, you know, very quickly. So it's faster. [00:23:37]Swyx: It's more reliable. [00:23:37]Beyang: It's deterministic. And it yields better context quality. And so that's what we think. We just don't think you should cargo cult or naively go like, you know, agents are the [00:23:46]Swyx: future. [00:23:46]Beyang: Let's just try to, like, implement agents on top of the LM that exists today. I think there are a couple of other technologies or approaches that need to be refined first before we can get into these kind of, like, multi-stage, fully automated workflows. [00:24:00]Swyx: It makes sense. You know, we're very much focused on developer inner loop right now. But you do see things eventually moving towards developer outer loop. Yeah. So would you basically say that they're tackling the agent's problem that you don't want to tackle? [00:24:11]Beyang: No, I would say at a high level, we are after maybe, like, the same high level problem, which is like, hey, I want some code written. I want to develop some software and can automate a system. Go build that software for me. I think the approaches might be different. So I think the analogy in my mind is, I think about, like, the AI chess players. Coding, in some senses, I mean, it's similar and dissimilar to chess. I think one question I ask is, like, do you think producing code is more difficult than playing chess or less difficult than playing chess? More. [00:24:41]Swyx: I think more. [00:24:41]Beyang: Right. And if you look at the best AI chess players, like, yes, you can use an LLM to play chess. Like, people have showed demos where it's like, oh, like, yeah, GPT-4 is actually a pretty decent, like, chess move suggester. Right. But you would never build, like, a best in class chess player off of GPT-4 alone. [00:24:57]Swyx: Right. [00:24:57]Beyang: Like, the way that people design chess players is that you have kind of like a search space and then you have a way to explore that search space efficiently. There's a bunch of search algorithms, essentially. We were doing tree search in various ways. And you can have heuristic functions, which might be powered by an LLM. [00:25:12]Swyx: Right. [00:25:12]Beyang: Like, you might use an LLM to generate proposals in that space that you can efficiently explore. But the backbone is still this kind of more formalized tree search based approach rather than the LLM itself. And so I think my high level intuition is that, like, the way that we get to more reliable multi-step workflows that do things beyond, you know, generate unit test, it's really going to be like a search based approach where you use an LLM as kind of like an advisor or a proposal function, sort of your heuristic function, like the ASTAR search algorithm. But it's probably not going to be the thing that is the backbone, because I guess it's not the right tool for that. Yeah. [00:25:50]Swyx: I can see yourself kind of thinking through this, but not saying the words, the sort of philosophical Peter Norvig type discussion. Maybe you want to sort of introduce that in software. Yeah, definitely. [00:25:59]Beyang: So your listeners are savvy. They're probably familiar with the classic like Chomsky versus Norvig debate. [00:26:04]Swyx: No, actually, I wanted, I was prompting you to introduce that. Oh, got it. [00:26:08]Beyang: So, I mean, if you look at the history of artificial intelligence, right, you know, it goes way back to, I don't know, it's probably as old as modern computers, like 50s, 60s, 70s. People are debating on like, what is the path to producing a sort of like general human level of intelligence? And kind of two schools of thought that emerged. One is the Norvig school of thought, which roughly speaking includes large language models, you know, regression, SVN, basically any model that you kind of like learn from data. And it's like data driven. Most of machine learning would fall under this umbrella. And that school of thought says like, you know, just learn from the data. That's the approach to reaching intelligence. And then the Chomsky approach is more things like compilers and parsers and formal systems. So basically like, let's think very carefully about how to construct a formal, precise system. And that will be the approach to how we build a truly intelligent system. I think Lisp was invented so that you could create like rules-based systems that you would call AI. As a language. Yeah. And for a long time, there was like this debate, like there's certain like AI research labs that were more like, you know, in the Chomsky camp and others that were more in the Norvig camp. It's a debate that rages on today. And I feel like the consensus right now is that, you know, Norvig definitely has the upper hand right now with the advent of LMs and diffusion models and all the other recent progress in machine learning. But the Chomsky-based stuff is still really useful in my view. I mean, it's like parsers, compilers, basically a lot of the stuff that provides really good context. It provides kind of like the knowledge graph backbone that you want to explore with your AI dev tool. Like that will come from kind of like Chomsky-based tools like compilers and parsers. It's a lot of what we've invested in in the past decade at Sourcegraph and what you build with Grok. Basically like these formal systems that construct these very precise knowledge graphs that are great context providers and great kind of guard rails enforcers and kind of like safety checkers for the output of a more kind of like data-driven, fuzzier system that uses like the Norvig-based models. [00:28:03]Steve: Jang was talking about this stuff like it happened in the middle ages. Like, okay, so when I was in college, I was in college learning Lisp and prologue and planning and all the deterministic Chomsky approaches to AI. And I was there when Norvig basically declared it dead. I was there 3,000 years ago when Norvig and Chomsky fought on the volcano. When did he declare it dead? [00:28:26]Swyx: What do you mean he declared it dead? [00:28:27]Steve: It was like late 90s. [00:28:29]Swyx: Yeah. [00:28:29]Steve: When I went to Google, Peter Norvig was already there. He had basically like, I forget exactly where. It was some, he's got so many famous short posts, you know, amazing. [00:28:38]Swyx: He had a famous talk, the unreasonable effectiveness of data. Yeah. [00:28:41]Steve: Maybe that was it. But at some point, basically, he basically convinced everybody that deterministic approaches had failed and that heuristic-based, you know, data-driven statistical approaches, stochastic were better. [00:28:52]Swyx: Yeah. [00:28:52]Steve: The primary reason I can tell you this, because I was there, was that, was that, well, the steam-powered engine, no. The reason was that the deterministic stuff didn't scale. [00:29:06]Swyx: Yeah. Right. [00:29:06]Steve: They're using prologue, man, constraint systems and stuff like that. Well, that was a long time ago, right? Today, actually, these Chomsky-style systems do scale. And that's, in fact, exactly what Sourcegraph has built. Yeah. And so we have a very unique, I love the framing that Bjong's made, that the marriage of the Chomsky and the Norvig, you know, sort of models, you know, conceptual models, because we, you know, we have both of them and they're both really important. And in fact, there, there's this really interesting, like, kind of overlap between them, right? Where like the AI or our graph or our search engine could potentially provide the right context for any given query, which is, of course, why ranking is important. But what we've really signed ourselves up for is an extraordinary amount of testing. [00:29:45]Swyx: Yeah. [00:29:45]Steve: Because in SWIGs, you were saying that, you know, GPT-4 tends to the front of the context window and maybe other LLMs to the back and maybe, maybe the LLM in the middle. [00:29:53]Swyx: Yeah. [00:29:53]Steve: And so that means that, you know, if we're actually like, you know, verifying whether we, you know, some change we've made has improved things, we're going to have to test putting it at the beginning of the window and at the end of the window, you know, and maybe make the right decision based on the LLM that you've chosen. Which some of our competitors, that's a problem that they don't have, but we meet you, you know, where you are. Yeah. And we're, just to finish, we're writing tens of thousands. We're generating tests, you know, fill in the middle type tests and things. And then using our graph to basically sort of fine tune Cody's behavior there. [00:30:20]Swyx: Yeah. [00:30:21]Beyang: I also want to add, like, I have like an internal pet name for this, like kind of hybrid architecture that I'm trying to make catch on. Maybe I'll just say it here. Just saying it publicly kind of makes it more real. But like, I call the architecture that we've developed the Normsky architecture. [00:30:36]Swyx: Yeah. [00:30:36]Beyang: I mean, it's obviously a portmanteau of Norvig and Chomsky, but the acronym, it stands for non-agentic, rapid, multi-source code intelligence. So non-agentic because... Rolls right off the tongue. And Normsky. But it's non-agentic in the sense that like, we're not trying to like pitch you on kind of like agent hype, right? Like it's the things it does are really just developer tools developers have been using for decades now, like parsers and really good search indexes and things like that. Rapid because we place an emphasis on speed. We don't want to sit there waiting for kind of like multiple LLM requests to return to complete a simple user request. Multi-source because we're thinking broadly about what pieces of information and knowledge are useful context. So obviously starting with things that you can search in your code base, and then you add in the reference graph, which kind of like allows you to crawl outward from those initial results. But then even beyond that, you know, sources of information, like there's a lot of knowledge that's embedded in docs, in PRDs or product specs, in your production logging system, in your chat, in your Slack channel, right? Like there's so much context is embedded there. And when you're a human developer, and you're trying to like be productive in your code base, you're going to go to all these different systems to collect the context that you need to figure out what code you need to write. And I don't think the AI developer will be any different. It will need to pull context from all these different sources. So we're thinking broadly about how to integrate these into Codi. We hope through kind of like an open protocol that like others can extend and implement. And this is something else that should be accessible by December 14th in kind of like a preview stage. But that's really about like broadening this notion of the code graph beyond your Git repository to all the other sources where technical knowledge and valuable context can live. [00:32:21]Steve: Yeah, it becomes an artifact graph, right? It can link into your logs and your wikis and any data source, right? [00:32:27]Alessio: How do you guys think about the importance of, it's almost like data pre-processing in a way, which is bring it all together, tie it together, make it ready. Any thoughts on how to actually make that good? Some of the innovation you guys have made. [00:32:40]Steve: We talk a lot about the context fetching, right? I mean, there's a lot of ways you could answer this question. But, you know, we've spent a lot of time just in this podcast here talking about context fetching. But stuffing the context into the window is, you know, the bin packing problem, right? Because the window is not big enough, and you've got more context than you can fit. You've got a ranker maybe. But what is that context? Is it a function that was returned by an embedding or a graph call or something? Do you need the whole function? Or do you just need, you know, the top part of the function, this expression here, right? You know, so that art, the golf game of trying to, you know, get each piece of context down into its smallest state, possibly even summarized by another model, right, before it even goes to the LLM, becomes this is the game that we're in, yeah? And so, you know, recursive summarization and all the other techniques that you got to use to like stuff stuff into that context window become, you know, critically important. And you have to test them across every configuration of models that you could possibly need. [00:33:32]Beyang: I think data preprocessing is probably the like unsexy, way underappreciated secret to a lot of the cool stuff that people are shipping today. Whether you're doing like RAG or fine tuning or pre-training, like the preprocessing step matters so much because it's basically garbage in, garbage out, right? Like if you're feeding in garbage to the model, then it's going to output garbage. Concretely, you know, for code RAG, if you're not doing some sort of like preprocessing that takes advantage of a parser and is able to like extract the key components of a particular file of code, you know, separate the function signature from the body, from the doc string, what are you even doing? Like that's like table stakes. It opens up so much more possibilities with which you can kind of like tune your system to take advantage of the signals that come from those different parts of the code. Like we've had a tool, you know, since computers were invented that understands the structure of source code to a hundred percent precision. The compiler knows everything there is to know about the code in terms of like structure. Like why would you not want to use that in a system that's trying to generate code, answer questions about code? You shouldn't throw that out the window just because now we have really good, you know, data-driven models that can do other things. [00:34:44]Steve: Yeah. When I called it a data moat, you know, in my cheating post, a lot of people were confused, you know, because data moat sort of sounds like data lake because there's data and water and stuff. I don't know. And so they thought that we were sitting on this giant mountain of data that we had collected, but that's not what our data moat is. It's really a data pre-processing engine that can very quickly and scalably, like basically dissect your entire code base in a very small, fine-grained, you know, semantic unit and then serve it up. Yeah. And so it's really, it's not a data moat. It's a data pre-processing moat, I guess. [00:35:15]Beyang: Yeah. If anything, we're like hypersensitive to customer data privacy requirements. So it's not like we've taken a bunch of private data and like, you know, trained a generally available model. In fact, exactly the opposite. A lot of our customers are choosing Cody over Copilot and other competitors because we have an explicit guarantee that we don't do any of that. And that we've done that from day one. Yeah. I think that's a very real concern in today's day and age, because like if your proprietary IP finds its way into the training set of any model, it's very easy both to like extract that knowledge from the model and also use it to, you know, build systems that kind of work on top of the institutional knowledge that you've built up. [00:35:52]Alessio: About a year ago, I wrote a post on LLMs for developers. And one of the points I had was maybe the depth of like the DSL. I spent most of my career writing Ruby and I love Ruby. It's so nice to use, but you know, it's not as performant, but it's really easy to read, right? And then you look at other languages, maybe they're faster, but like they're more verbose, you know? And when you think about efficiency of the context window, that actually matters. [00:36:15]Swyx: Yeah. [00:36:15]Alessio: But I haven't really seen a DSL for models, you know? I haven't seen like code being optimized to like be easier to put in a model context. And it seems like your pre-processing is kind of doing that. Do you see in the future, like the way we think about the DSL and APIs and kind of like service interfaces be more focused on being context friendly, where it's like maybe it's harder to read for the human, but like the human is never going to write it anyway. We were talking on the Hacks podcast. There are like some data science things like spin up the spandex, like humans are never going to write again because the models can just do very easily. Yeah, curious to hear your thoughts. [00:36:51]Steve: Well, so DSLs, they involve, you know, writing a grammar and a parser and they're like little languages, right? We do them that way because, you know, we need them to compile and humans need to be able to read them and so on. The LLMs don't need that level of structure. You can throw any pile of crap at them, you know, more or less unstructured and they'll deal with it. So I think that's why a DSL hasn't emerged for sort of like communicating with the LLM or packaging up the context or anything. Maybe it will at some point, right? We've got, you know, tagging of context and things like that that are sort of peeking into DSL territory, right? But your point on do users, you know, do people have to learn DSLs like regular expressions or, you know, pick your favorite, right? XPath. I think you're absolutely right that the LLMs are really, really good at that. And I think you're going to see a lot less of people having to slave away learning these things. They just have to know the broad capabilities and the LLM will take care of the rest. [00:37:42]Swyx: Yeah, I'd agree with that. [00:37:43]Beyang: I think basically like the value profit of DSL is that it makes it easier to work with a lower level language, but at the expense of introducing an abstraction layer. And in many cases today, you know, without the benefit of AI cogeneration, like that totally worth it, right? With the benefit of AI cogeneration, I mean, I don't think all DSLs will go away. I think there's still, you know, places where that trade-off is going to be worthwhile. But it's kind of like how much of source code do you think is going to be generated through natural language prompting in the future? Because in a way, like any programming language is just a DSL on top of assembly, right? And so if people can do that, then yeah, like maybe for a large portion of the code [00:38:21]Swyx: that's written, [00:38:21]Beyang: people don't actually have to understand the DSL that is Ruby or Python or basically any other programming language that exists. [00:38:28]Steve: I mean, seriously, do you guys ever write SQL queries now without using a model of some sort? At least a draft. [00:38:34]Swyx: Yeah, right. [00:38:36]Steve: And so we have kind of like, you know, past that bridge, right? [00:38:39]Alessio: Yeah, I think like to me, the long-term thing is like, is there ever going to be, you don't actually see the code, you know? It's like, hey, the basic thing is like, hey, I need a function to some two numbers and that's it. I don't need you to generate the code. [00:38:53]Steve: And the following question, do you need the engineer or the paycheck? [00:38:56]Swyx: I mean, right? [00:38:58]Alessio: That's kind of the agent's discussion in a way where like you cannot automate the agents, but like slowly you're getting more of the atomic units of the work kind of like done. I kind of think of it as like, you know, [00:39:09]Beyang: do you need a punch card operator to answer that for you? And so like, I think we're still going to have people in the role of a software engineer, but the portion of time they spend on these kinds of like low-level, tedious tasks versus the higher level, more creative tasks is going to shift. [00:39:23]Steve: No, I haven't used punch cards. [00:39:25]Swyx: Yeah, I've been talking about like, so we kind of made this podcast about the sort of rise of the AI engineer. And like the first step is the AI enhanced engineer. That is that software developer that is no longer doing these routine, boilerplate-y type tasks, because they're just enhanced by tools like yours. So you mentioned OpenCodeGraph. I mean, that is a kind of DSL maybe, and because we're releasing this as you go GA, you hope for other people to take advantage of that? [00:39:52]Beyang: Oh yeah, I would say so OpenCodeGraph is not a DSL. It's more of a protocol. It's basically like, hey, if you want to make your system, whether it's, you know, chat or logging or whatever accessible to an AI developer tool like Cody, here's kind of like the schema by which you can provide that context and offer hints. So I would, you know, comparisons like LSP obviously did this for kind of like standard code intelligence. It's kind of like a lingua franca for providing fine references and codefinition. There's kind of like analogs to that. There might be also analogs to kind of the original OpenAI, kind of like plugins, API. There's all this like context out there that might be useful for an LM-based system to consume. And so at a high level, what we're trying to do is define a common language for context providers to provide context to other tools in the software development lifecycle. Yeah. Do you have any critiques of LSP, by the way, [00:40:42]Swyx: since like this is very much, very close to home? [00:40:45]Steve: One of the authors wrote a really good critique recently. Yeah. I don't think I saw that. Yeah, yeah. LSP could have been better. It just came out a couple of weeks ago. It was a good article. [00:40:54]Beyang: Yeah. I think LSP is great. Like for what it did for the developer ecosystem, it was absolutely fantastic. Like nowadays, like it's much easier now to get code navigation up and running in a bunch of editors by speaking this protocol. I think maybe the interesting question is like looking at the different design decisions comparing LSP basically with Kythe. Because Kythe has more of a... How would you describe it? [00:41:18]Steve: A storage format. [00:41:20]Beyang: I think the critique of LSP from a Kythe point of view would be like with LSP, you don't actually have an actual symbolic model of the code. It's not like LSP models like, hey, this function calls this other function. LSP is all like range-based. Like, hey, your cursor's at line 32, column 1. [00:41:35]Swyx: Yeah. [00:41:35]Beyang: And that's the thing you feed into the language server. And then it's like, okay, here's the range that you should jump to if you click on that range. So it kind of is intentionally ignorant of the fact that there's a thing called a reference underneath your cursor, and that's linked to a symbol definition. [00:41:49]Steve: Well, actually, that's the worst example you could have used. You're right. But that's the one thing that it actually did bake in is following references. [00:41:56]Swyx: Sure. [00:41:56]Steve: But it's sort of hardwired. [00:41:58]Swyx: Yeah. [00:41:58]Steve: Whereas Kythe attempts to model [00:42:00]Beyang: like all these things explicitly. [00:42:02]Swyx: And so... [00:42:02]Steve: Well, so LSP is a protocol, right? And so Google's internal protocol is gRPC-based. And it's a different approach than LSP. It's basically you make a heavy query to the back end, and you get a lot of data back, and then you render the whole page, you know? So we've looked at LSP, and we think that it's a little long in the tooth, right? I mean, it's a great protocol, lots and lots of support for it. But we need to push into the domain of exposing the intelligence through the protocol. Yeah. [00:42:29]Beyang: And so I would say we've developed a protocol of our own called Skip, which is at a very high level trying to take some of the good ideas from LSP and from Kythe and merge that into a system that in the near term is useful for Sourcegraph, but I think in the long term, we hope will be useful for the ecosystem. Okay, so here's what LSP did well. LSP, by virtue of being like intentionally dumb, dumb in air quotes, because I'm not like ragging on it, allowed language servers developers to kind of like bypass the hard problem of like modeling language semantics precisely. So like if all you want to do is jump to definition, you don't have to come up with like a universally unique naming scheme for each symbol, which is actually quite challenging because you have to think about like, okay, what's the top scope of this name? Is it the source code repository? Is it the package? Does it depend on like what package server you're fetching this from? Like whether it's the public one or the one inside your... Anyways, like naming is hard, right? And by just going from kind of like a location to location based approach, you basically just like throw that out the window. All I care about is jumping definition, just make that work. And you can make that work without having to deal with like all the complex global naming things. The limitation of that approach is that it's harder to build on top of that to build like a true knowledge graph. Like if you actually want a system that says like, okay, here's the web of functions and here's how they reference each other. And I want to incorporate that like semantic model of how the code operates or how the code relates to each other at like a static level. You can't do that with LSP because you have to deal with line ranges. And like concretely the pain point that we found in using LSP for source graph is like in order to do like a find references [00:44:04]Swyx: and then jump definitions, [00:44:04]Beyang: it's like a multi-hop process because like you have to jump to the range and then you have to find the symbol at that range. And it just adds a lot of latency and complexity of these operations where as a human, you're like, well, this thing clearly references this other thing. Why can't you just jump me to that? And I think that's the thing that Kaith does well. But then I think the issue that Kaith has had with adoption is because it is more sophisticated schema, I think. And so there's basically more things that you have to implement to get like a Kaith implementation up and running. I hope I'm not like, correct me if I'm wrong about any of this. [00:44:35]Steve: 100%, 100%. Kaith also has a problem, all these systems have the problem, even skip, or at least the way that we implemented the indexers, that they have to integrate with your build system in order to build that knowledge graph, right? Because you have to basically compile the code in a special mode to generate artifacts instead of binaries. And I would say, by the way, earlier I was saying that XREFs were in LSP, but it's actually, I was thinking of LSP plus LSIF. [00:44:58]Swyx: Yeah. That's another. [00:45:01]Steve: Which is actually bad. We can say that it's bad, right? [00:45:04]Steve: It's like skip or Kaith, it's supposed to be sort of a model serialization, you know, for the code graph, but it basically just does what LSP needs, the bare minimum. LSIF is basically if you took LSP [00:45:16]Beyang: and turned that into a serialization format. So like you build an index for language servers to kind of like quickly bootstrap from cold start. But it's a graph model [00:45:23]Steve: with all of the inconvenience of the API without an actual graph. And so, yeah. [00:45:29]Beyang: So like one of the things that we try to do with skip is try to capture the best of both worlds. So like make it easy to write an indexer, make the schema simple, but also model some of the more symbolic characteristics of the code that would allow us to essentially construct this knowledge graph that we can then make useful for both the human developer through SourceGraph and through the AI developer through Cody. [00:45:49]Steve: So anyway, just to finish off the graph comment, we've got a new graph, yeah, that's skip based. We call it BFG internally, right? It's a beautiful something graph. A big friendly graph. [00:46:00]Swyx: A big friendly graph. [00:46:01]Beyang: It's a blazing fast. [00:46:02]Steve: Blazing fast. [00:46:03]Swyx: Blazing fast graph. [00:46:04]Steve: And it is blazing fast, actually. It's really, really interesting. I should probably have to do a blog post about it to walk you through exactly how they're doing it. Oh, please. But it's a very AI-like iterative, you know, experimentation sort of approach. We're building a code graph based on all of our 10 years of knowledge about building code graphs, yeah? But we're building it quickly with zero configuration, and it doesn't have to integrate with your build. And through some magic tricks that we have. And so what just happens when you install the plugin, that it'll be there and indexing your code and providing that knowledge graph in the background without all that build system integration. This is a bit of secret sauce that we haven't really like advertised it very much lately. But I am super excited about it because what they do is they say, all right, you know, let's tackle function parameters today. Cody's not doing a very good job of completing function call arguments or function parameters in the definition, right? Yeah, we generate those thousands of tests, and then we can actually reuse those tests for the AI context as well. So fortunately, things are kind of converging on, we have, you know, half a dozen really, really good context sources, and we mix them all together. So anyway, BFG, you're going to hear more about it probably in the holidays? [00:47:12]Beyang: I think it'll be online for December 14th. We'll probably mention it. BFG is probably not the public name we're going to go with. I think we might call it like Graph Context or something like that. [00:47:20]Steve: We're officially calling it BFG. [00:47:22]Swyx: You heard it here first. [00:47:24]Beyang: BFG is just kind of like the working name. And so the impetus for BFG was like, if you look at like current AI inline code completion tools and the errors that they make, a lot of the errors that they make, even in kind of like the easy, like single line case, are essentially like type errors, right? Like you're trying to complete a function call and it suggests a variable that you defined earlier, but that variable is the wrong type. [00:47:47]Swyx: And that's the sort of thing [00:47:47]Beyang: where it's like a first year, like freshman CS student would not make that error, right? So like, why does the AI make that error? And the reason is, I mean, the AI is just suggesting things that are plausible without the context of the types or any other like broader files in the code. And so the kind of intuition here is like, why don't we just do the basic thing that like any baseline intelligent human developer would do, which is like click jump to definition, click some fine references and pull in that like Graph Context into the context window and then have it generate the completion. So like that's sort of like the MVP of what BFG was. And turns out that works really well. Like you can eliminate a lot of type errors that AI coding tools make just by pulling in that context. Yeah, but the graph is definitely [00:48:32]Steve: our Chomsky side. [00:48:33]Swyx: Yeah, exactly. [00:48:34]Beyang: So like this like Chomsky-Norvig thing, I think pops up in a bunch of differ

The Remote Real Estate Investor
Systems to scale up a healthy portfolio with Steve Rozenberg

The Remote Real Estate Investor

Play Episode Listen Later Sep 13, 2022 33:13


An international commercial airline pilot who, after the tragedies of 9/11, was forced to realize that his “Safe and Secure career” was nowhere near as safe and secure as he had thought. Steve Rozenberg chose real estate investing to be able to control his own destiny and create his own generational wealth. He created the fastest-growing property management company in the state of Texas. Managing over 1,000 properties across 3 major metropolitan cities. Steve built the business up and created maximum cash flow positioning his company for a very profitable exit.   He has been a guest and collaborated on countless panels, webinars, masterminds, conferences, and podcasts as well as being a published author. In today's episode, he shares his story, how he began real estate investing, and how important your mindset is to be successful in this business.   Episode Link: https://steverozenberg.com/ --- Transcript Before we jump into the episode, here's a quick disclaimer about our content. The Remote Real Estate Investor podcast is for informational purposes only, and is not intended as investment advice. The views, opinions and strategies of both the hosts and the guests are their own and should not be considered as guidance from Roofstock. Make sure to always run your own numbers, make your own independent decisions and seek investment advice from licensed professionals.   Michael: Hey, everyone, welcome to another episode of the Remote Real Estate Investor. I'm Michael Albaum and today I'm joined by Steve Rozenberg, who's an airline pilot and entrepreneur, and he's gonna be talking to us about the mental mind shifts we as investors need to make in order to scale and have successful businesses. So let's get into it.   Steve, what is going on, man? Thanks so much for taking the time to come hang out with me today. I appreciate it.   Steve: What's happening, fellas, good to see you.   Michael: Oh, super good to see you, Steve. I am super excited to share with our listeners a little bit about you and your background, because I know a little bit about it. But for anyone who doesn't know who Steve Rozenberg is, bring us up to speed quick and dirty. Who you are, where you come from, what is it you're doing in real estate today?   Steve: Sure. So I live in Houston, Texas, born and raised in Los Angeles, actually, my career brought me out here and that careers, what got me kind of involved in being a real estate and being an entrepreneur. I'm an airline pilot by trade and I got hired at 25 years old. I was the second youngest person ever hired by this particular major airline and hired at 25, I had the best job in the world is flying all over the globe. I was 25 years old and it was the most safe, most secure job that anyone could imagine having. Until a certain day in history. That day was 9/11 and that day changed my life, it changed a lot of people's lives. It changed my life because on 9/13, two days after 9/11 in the towers fell, I got delivered a furlough notice and I was basically told, hey, Steve, you know what that safe, secure job that you thought you had, it was never safe and it was really never secure and you're about to be on the street with 50,000 other pilots.   So to say that I got punched in the face very, very hard within about 48 hours would be an understatement and it was it was rough. You know I always I ever want to do as a kid is be an airline pilot. I didn't want to do anything else. I was fulfilling my dream and this something happened, which I realized it had nothing to do with me but it affected me. You know, I didn't I wasn't a part of 9/11 but I was a repercussion, a ripple effect, if you will and so I started to talk about what I could do, what could I do? What to survive to make a paycheck, right? All I knew was to be a pilot, but there was many, many other pilots out there probably better pilots than me to be honest with you that you know, we're also on the street and I looked and I saw that everyone that was tied to wealth somehow was tied to real estate. I didn't know anything about real estate, but I was like, okay, I mean, I knew some pilots who had rental properties, but I didn't know much about it. So this is 2001. So there was no YouTube or Facebook. So I had to go to the library. I had to get a library card.   Michael: A lot of our listeners are probably asking, like, what is that?   Steve: Yeah, yeah, exactly. It's a big house with a lot of books and so I had to start learning about real estate, I read a book a week and I just I read everything I could, because I thought that I was behind the curve of figuring out what I was going to do with this airline thing. If there was another terrorist attack or something happened, I was gonna be out of work and so I learned all the different things you know, now it's very cliche, you know, burrs and all this other stuff. But I just I learned how to buy I learned how to flip I learned how to wholesale properties. I got lied to, I got ripped off, I got cheated on. I mean, you name it, I just kept getting pushed down face down in the mud every time. But I kept getting back up because I had to I didn't I didn't have a choice. I had to figure out this combination and I, I saw people that were successful. So I was like, okay, there's a recipe. I just don't know it. But I can think like, I'm not the dumbest guy in the world. But I could figure this out and then I started getting better and I started winning a little bit more than I was losing and I started figuring out and what I realized was communicators are actually the ones that are the most successful, not the contractors.   It's four walls in a roof. It's relationship driven. It's not anything else and that relationship is driven by business models, and it's driven by systems and so I started realizing that the four walls and a roof and the dirt really had nothing to do with being a real estate investor. The successful people were good communicators, and they understood the value of leverage and team and then I started looking back at my real estate in my airline career and I started looking at how airlines run and I was like okay, systems, procedures structure and I kind of started melding the two and that led me into start learning to become successful as with my, my old business partner, Pete Newberg, who has been on your show, he and I built a very, very successful property management company, by understanding how to leverage those models and how to leverage systemization and then I've gone on to do a lot of other things, coaching people working with people, helping people understand the systemization of a business is very fundamental to be successful, is what I've learned and that's what I help people with.   Michael: I love that and we're gonna get into a little bit more of the systemization here in a minute. But for anyone listening, it's like, well, Steve, Michael, I'm not an extrovert. I'm more of an introvert, I'm more of an insert inside kind of person, like, Am I just doomed to never be a real estate investor like, what should I be doing if that's me?   Steve: So that's a good question because a lot of people you know, are a lot of people that go into real estate, what I've learned is they're running away from a life or job that they don't want you when you talk to real estate investors, and I coach a lot of real estate investors all over the world and when I talk to them, I'll ask them, why are you doing this, and a lot of them will tell me, I don't want this, I don't want that. They're running away from something and what they're running away from is a life that they don't want to have. Unfortunately, when you're running away from something you don't want, that's what you're focused on, and you run right back into it. I mean, that's the cycle, right because that's your filter. But what I've learned is, you don't have to be the best communicator, but you have to have good communicators on your team. There's things that I am really, really good at and there are things that I am horrible at. It's a matter of understanding, what are my strengths? What are my weaknesses, I don't think that I should become like, that's just my opinion. I don't think it makes sense to work on my weaknesses. I don't know anything about accounting, I would make a company go bankrupt if I started doing the accounting books for my business. So why should I go and take two year courses at a junior college to learn how to do books, or I just hire someone and that's what they do. So I've taken my weakness, and I've actually turned it into a strength because now I don't have to think about it, I don't have to focus on it. I have someone in place that is run by KPIs and metrics and accountability and I just, I just parceled, that whole piece of my life off.   So to answer your question, I don't think you have to be good at that. A business needs it like my business partner, Pete. He was the integrator and I was the visionary. I was the forward guy, I was the guy out in front. But I sucked at the operational side, he was like the mushroom in the in the back room and, you know, my job was to break his business all the time. It's like I wanted to have so much sales and marketing coming in, that he would go Steve, I can't take it anymore and that was like my victory lap of showing. That's the that's the sales and marketing tug of war that goes on, right and so I don't think that you have to be good at everything because the reality is, is you're not, you're probably good at one thing and you suck at everything else that you do. It's a matter of identifying what am I good at? What am I not good at leveraging out those other things and focusing on that one thing to be the very best that you can be and if you can do that, you will help the business, the organization and you'll be much happier too.   Michael: I think yeah, I think it makes a ton a ton a ton a ton of sense. So talk to Steve about like, you got three to five properties, you're looking at scaling up, you're realizing maybe a little bit more and more, you're self-managing, hey, this might be more of a job than I was anticipating I'm trying to get out of a job that people what are some systems people should be putting in place and how should they be thinking about systemization if that's a new term for them, that's never something they've done before?   Steve: Yeah, that's a great question and let, I'm going to back it up a little bit if it's okay, because a lot of people, if they have three to five properties, and I get a lot of people that will call me and ask me that question like, hey, Steve, you know, if I'm in front of them, they'll put a deal like three inches from my face and they're like, hey, is this a good deal like being closer makes it more sense? I don't know. But they'll put this right to my face and they're like, is this a good deal? Well, I don't know what a good deal is for you. So first question is, what's the goal, right? What is the date of that goal? So if they don't know the goal, and they don't have a date, and a timeline and a way to achieve that goal, I can't tell them what to do. I can't give them directions. It's kind of like if you said, hey, Steve, we're all gonna go to Disneyland and we got to be at the front gates at 8am on Friday morning and we're going to leave our house at 6am and we're going to take the 405 to the 91. Get off on Disney drive, and we're gonna go into the gates to be there ready to go. Well, if along that way, you get lost, you're gonna pull over and you're gonna go, hey, Steve, can I get directions? What's the first thing I'm going to ask you? Where are you? Where are you going? If you say, I don't know, I'm just driving around today, I'm gonna go with it. I can't help you, because I don't know where you're trying to get to. So if you take that same analogy, many people buy properties. They don't have a goal. So they say, should I buy more properties? My question is, is I don't know what's the goal? Because, you know, many people, you know, they think that owning rentals is the goal. That's just the strategy to achieve the goal. That's like saying, I'm going to get on the 405 freeway and you're going, where are you going? I don't know, I'm just gonna get on the freeway and drive and the reason I know that is when Pete and I first started buying properties, that's what we did. We were just buying properties and we're going the wrong way, in the wrong direction at a very, very fast pace and nobody stopped us to say, where are you guys going because we're just driving. We're like, we're making great time. Unfortunately, we're going in the wrong way. So to answer your question, to going back to what you're saying about systemization, every business normally has about eight to 11 systems in their business, it's a matter of looking at what you do and systemizing everything. So if you took a system and put it in a vertical, let's just say when you're going to rent a property, what is the system that it takes to rent that property, you've got to basically first thing you've got to do is maybe the first trigger of that system is when the Make ready is done. Now the property is in rent ready condition, it now triggers this system to happen. What's the first thing you got to do? Well, maybe you've got to go and take pictures and video of the property. Step one, what's the next thing you got to do? Well, then you've got to do some comps and check out the area and see what the property is renting for. That's step two. So you're going through and you're just basically talking to me, like I'm a three year old or third grader and you're explaining to me in very painstaking detail, what you're doing. These are all steps in the process of a systemization. Once you create the system all the way through to getting the property rented, once the property is rented, that system is complete. Maybe that system is 19 steps, right? Then you look at that system and go okay, is this the most efficient way to run this system, does or is there any redundancy? Is there any things that we don't even do or should not do? Are we missing some things? Now, let's say for example, this person, he, let's just say he grows and he gets an employee to do these tasks, right and or he subs it out to a company. This company needs to know very, very clearly what they're doing because the definition like look, I think we can all agree that when you own one business, or you own 50 businesses, which are rental properties, those are businesses, that you've got to treat it like a business, right? The challenge is, most people don't they don't have any systems that don't have any structure and it's chaos, which is why so many landlords get sued, because there's no systemization or standardization, meaning how you lease a property. When you're in the airlines, right, we'll go back to being an airline pilot, if I'm an airline pilot, and I came out and said, hey, everyone, this is gonna be a great day today. We're off to Hawaii. This is my first time ever doing this. So wish me luck. I'm just gonna wing it and hopefully we make it there. How would you feel?   Michael: Yeah, a little bit shaky.   Steve: Right but yeah, you'd probably be like, I'm not getting on this plane. Yeah, but that's what many people do with their rental properties and they're doing that with their financial lives, right? This is your real life, you're trusting me with your life but you don't do that with your financial life. So there's a disconnect as to the training and, and the way that you can scale because if you have to do everything in your business, you don't own a business, you own a job and a job is not scalable, because you have only so many hours in the day, and you have so much knowledge of what you're good at and what you're bad at. So I don't know if that answered the question but there's, that's a very hard thing to unpack.   Michael: No, it totally does. It totally does. Two things. First thing is I think you must be having been out of LA for a long time, because your analogy you're talking about getting on the 405 Dizzy land, you leave by six get there by eight. There's no world in which that happens today. Yeah, first and foremost. But secondly, so like, how does someone make that mindset shift because I think so many of us and specifically, it seems to be pretty pervasive in the real estate world, this DIY mentality, you know, I do it myself, do it myself, do it myself. How does, how do you make that mental leap of, okay, I'm going from doing it myself, small business owner to hiring someone or contracting it out or putting it to somebody else so I can get out of my own way?   Steve: Sure. Well, there's a couple things. Number one, you've got to you have to be willing to let go of your ego and pride, right? Because ego and pride are success inhibitors, they will kill your success quicker than anything. I should do it because I'm in charge, right and so let's go back to the goal, right? If I said, hey, what's your goal and you didn't, you didn't and this is what I use this example when I coach people, I'll tell them, okay, let's just use this as an example. I call it a 2020 2020 properties in 20 years, giving you $20,000 a month in passive income. It's a bait. It's a goal, right? Yeah, it's, it's got a time limit on it. It's something that we can attach an actual goal to and we know how we're going to achieve that goal because we have a scoreboard to see if we've made that. So that means that each property needs to be giving off $1,000 a month in passive income to get 20 properties give me $20,000 a month. Okay, that means, okay, so let we're gonna, I'm gonna, I'm gonna answer your question in a roundabout way, we've got to say, Okay, if we want to have 20 properties, that means by year 10, we have to have acquired all those properties so that from year 10, to your 20, we're going to pay those properties off, because we want them free and clear by your 20. That means between year one and year 10, we have to purchase 20 properties, which means we have to close on two properties a year, which is every six months, which means every three months, we have to be looking for deals.   My first question is, is do you have the finances to even make this happen? Do you have the do you have the financial means to achieve this goal? If they say I don't have a job, I'm gonna go well, then we're done talking because first thing you need is the financial means to make that happen. That's number one. Then we say okay, when you achieve the goal of 20 20 20, right, and we get to where we want to go, what I have learned and what many people I'm sure some people will learn, it's not a bad thing to learn. But a lot of people identify success by their accolades, meaning how much money they have in the bank, or how many properties they have, how many doors whatever they want to whatever they want to use as their gauge. That's how they quantify their success, or lack thereof. Now, I had Pete and I had a very successful property management company that we sold to a venture capital much larger firm and I can tell you that when you get that money in the bank, it is very, very, very anticlimactic. Like I mean, literally, like after we sold our company, and we sold it for well into seven figures, all of a sudden, I thought I'm done, like, oh, this is awesome. Now, mind you, I still am an airline pilot this whole time. So I'm okay financially but I thought, man, if I just if we sell this company, we're good. You don't happen Monday morning, after we sold the company?   Michael: You put on your uniform and go fly a plane.   Steve: My wife said, hey, don't forget, take the trash out the trash bin or come and I'm like, when I sold the company, like I sold my goods just like, don't give a shit. Take the trash out. So, but the point is, is like all of a sudden you think you're in some magic club like you think you break through this glass ceiling and the reality is, is nobody cares and the reason I'm saying the reason I'm going somewhere with this is that we think that once we achieve a mark or a goal that's going to make our lives complete and sadly, it doesn't, it actually makes it more hollow because you realize, like, wow, I've been doing this all these years, and nobody even cares. Like they're, you know, everyone's moving on. So what I always tell people when I talked to when I told you earlier that a lot of entrepreneurs, they buy real estate, and people want to get involved in real estate and I asked them why they say I want more freedom, right? I'm sure you've probably heard this, I want anytime freedom, do what I want, blah, blah, blah, they use this word freedom, like it means something special to them. I tell them okay, well, let me ask you this, why don't you just sell all your shit today, go live in your car at the park, and you'll have all the freedom you need. No one will bother you, you'll have your freedom. They think about that I'm like, but you know, what you won't have is you won't have the memories that you want associated with that freedom.   So we're really not buying freedom. What we're buying is memories. So when I sell a business, or I have rental properties, giving me cash flow, what am I doing with that cash flow, it's giving me the ability to have freedom to go buy the memories. It's the memories we want. So going back to your question, how does somebody step out of what they want? I would first ask them, what memories do you want to buy because at the end of the day, we're not leaving, we're not leaving this earth with anything except our memories, right? When we go when our when our expiration date happens. We're not going anywhere, except with memories in our brains. What memories do you want, right in the real estate, and the cash flow or whatever you're doing with that will give you the means to buy those memories. So buy the memories don't buy the time is you go to prison and have all the free time you want. You may not like the result, but you'll have free time by the memories, right? Go to you know, have dinner on the Mediterranean in Greece, right? Go to this African Safari, the Rolling Stones in Wembley Stadium. Those are the memories that you want and that's what real estate gives you. So going back to your question when someone says, hey, like, you know, how do I get out of it? I'm like, what memories do you want? Do you want to be an employee? That's trading time for money because that's what you're doing? I'll give you an example. So my son, he bought a rental property at 14 years old. Okay and everyone's like, oh, that's awesome. Yeah and he bought it with his money, you know and so everyone's like, man, that's awesome. That's great. Like, did you have him do the rehab and clean the house and I'm like, No. Why would I do that? They're like, so he can learn. I'm like, I don't do that. Why should I make him do that? That's being a hypocrite. I want him to be a business owner, not an employee. Don't get me wrong. There's nothing wrong with being an employee but that's that that is not the goal of one rental property like, hey, congratulations, you want a rental property? Now go learn how to cut wood lay tile, put it insulation but dad, you don't do that. I wouldn't even know how to do that. Like, again, working on strengths versus weaknesses, right? People seem like when they get a rental property that like, all of a sudden, I've got to learn how to put a toilet in and I gotta get up on the roof and inspect it. I'm like, have you ever done that before? No and I'm like, Well, then why in the heck would you get up on a roof? If you didn't know what you're doing like this is how you become a statistic. But we think we should because of ego and pride. So that's kind of a long answer but that's my answer.   Michael: I love it, I love it a great answer. Steve, great answer. Talk to us a little bit about, like, the qualities and what you see really successful people do who are able to implement systematization like what like, what skills should people be go out there and refining in order to be able to execute here really, really well?   Steve: Well, yeah, that's a great question and I've studied a lot of very successful people. I've been coached and mentored by some very successful people and I'm a constant student, I still a mentor to this day. Anyone who says that they don't need to be coached, and they don't need to be mentored, is missing out on a lot of opportunity. I look at Tiger Woods, Michael Jordan, these guys are at the top of their game, and they still have coaches and mentors. All professional athletes have coaches, you don't become a professional athlete, and then lose the coaches. They make you better.   Michael: So I'm done.   Steve: Yeah, it's like I'm done. Um, you know, even Kobe Bryant, I mean, everyone, they all have coaches. I mean, that's how it works, right? Right, it's brings the best thing out of you. So number one, I think you always have to have somebody holding you accountable and if you look at all successful people, they have accountability. They have somebody holding them accountable in somebody, you know, a three feet distance is a world of perspective, right? In the simulators. When we find the simulators and we're practicing engine failures and all these things. The simulator instructor is about three feet behind us the control panel, and we joke and he they know, they're like, yeah, I'm the smartest guy in here because I'm three feet behind you, I can see all the mistakes you guys are making. You don't see it, because you're in the heat of battle. He's like, I can see it coming a mile away. I'm the smartest guy in the room. So having somebody three feet away, is a world of perspective, having an organization help give you guidance to when you're looking to acquire a property that's giving you that three feet difference. That's a world of difference, right? So, there is a recipe for success and I'm a firm believer. If you look at all successful people, they follow a very simple recipe. It's not magic, people who are failures, they follow a recipe also and I think that every day that you wake up every day that we all wake up, we have a decision to make. It's very simple. Am I going to be better than yesterday or am I going to be worse than that, initially, is our decision that we make every day because you're not good, you're they're getting better. You're getting worse, we never stay the same ever and so when you wake up in the morning, what is the decision you're gonna make? Are you going to do any reading? Are you going to do any I'm statements? What are you going to do to focus on solution based questions slash trying to be better or are you going to be in blame excuse or denial? So going back to your question, I think that people that if you want to learn how to become better at systemization, then talk to someone who knows what they're doing and that can help you become a systems expert because, look, as an airline pilot, right? I've been I've been flying for almost 30 years, I've been trained by Boeing, I fly one of the most complicated aircraft out there a Boeing 787. I didn't, I wasn't born that way, I had to be trained and guess what, we still go back to training every six months, and we go back through all the initial stuff. So just because you reach the pinnacle, you don't stay up there and if you look at people that are successful, they're always trying to be better, just because you have three houses or five houses or 500 houses. Look, the crash to the bottom is much faster than the rise to the top, as we all know, and seen, you know, with banks crashing and other things. It's the people that are cognizant and follow that recipe and again, I don't think it's a very complicated recipe and if you look at people, you know, they do a lot of things in the one thing that I've learned, I'll give you a quick story. I was with one of my mentors one time, guys. 11 businesses, right. He's on the board of 11 businesses and he was my mentor, and we lunch and I was like, man, I don't know how you do it. Like you have 11 businesses. I'm like, how many days a week do you work? He's like, Tuesday, Thursday, and sometimes half a Friday. It was like this guy was talking Martian to me. I was like, like, how is that even possible and he goes, You know what, Steve, you know what the difference is? He says, I say No, way more than I say yes and I said, you know what, that's easy for you to say because you're this multimillionaire that has 11 businesses and he said, I would have never become this way. If I didn't start saying no and he said there's an opportunity cost that every time you say yes to something, you are saying no to something else, right.   So he goes every time you say yes to doing something that is not the most high income producing activity, you are saying no to something. He's like, it's again, he goes, it's your choice. So when I coach people, one of the things I do, and this will be a freebie for people watching is, I always have them do a two week time study, okay? So it's a very simple time study that they have to go and they have to write down for two weeks, every single thing that they do, right, you want to go on a diet, you start tracking your food, you want to see where your money's going, you go on a budget, you want to see where your time is going and start tracking it at the end of the day, they have to give me an executive summary. Tell me how your day went? I don't care. I don't care what you did. I just want to hear it from your words. Within one week, within one week, they will be like, I now know where my time is going and most people think they're so productive, like, oh, I work all day long. I'm like, bullshit, you don't work all day long. Yeah, study and we'll see. After they do the time set, he's like, man, I'm only working like three hours a day. I'm like, because everything else is reactionary. A five minute interruption, a five minute phone call is equal to 23 minutes of lost time. How many times as a as a real estate investor entrepreneur, do we get the sideways calls that interrupt our data, and they sidetrack us, if you get 10 calls a day, that's 230 minutes that you were never expecting to lose, you just lost that chunk of time. So now you're living what's called a reactive life and when you're living a reactive life, you're in chaos and when you're in chaos, you're not in control and when you're not in control, you're not making money. So the challenges is what people don't put a factor into this chaotic life, is the mental stress that it weighs on you. So once they do the first week, the second week, they have to go back in every day, they have to do this and I and just the type of coach I am, every day, they have to send me a picture of their time study and I tell them, the day you don't send this, to me is the last day you will hear from me, because I can't want it more than you like it's very simple. Like, even if you pay me all the money, you're done like that's just how it is I can't I don't have time to waste if you don't want to be better. So when they do this, the next day is they have to put an H or an L next to that high income activity, low income activity. And guess how many low income activities they do on a day?   Michael: Probably the majority…   Steve: Probably the majority. So then what we do at the end of that next week, we go, okay, these are the things that make you money. These are the things that don't we need to outsource systemize or automate the things that you don't make money on of these high income activities. Which ones do you like doing? Which ones are you good at? I like this, and this, okay, this is the focus, we need to find someone else to do these other high income activities. We don't ignore them and so my point is, is one of my mentors said that he goes TV goes understand saying no is not saying that. No, the way you think it. He goes when I say no, it just means I'm not doing it. He goes, I just make sure that other people are getting it done, but it's not through me. He goes things to have to get done in a business but he goes, it doesn't have to be you. That's your ego and pride, thinking that you have to be the one doing it all. So that was a very valuable lesson for me that I share with you, you in the listeners.   Michael: Yeah, thank you. I mean, as you're saying this, I'm just like, oh, my God, I have so many hours in my day, this is insane.   Steve: Yeah, we do. We all look, we all do. And it's a matter of stepping on the scale whenever I'm coaching someone, or someone gives me a call, like, man, I just feel like I'm losing it. I'm like, just do a time study. I mean, it sounds it sounds so simple, or whatever but I'm like just do the time study you will see very clearly, and then just fix it. Look at the pendulum swings. It's okay but you got to do something to take corrective action. Otherwise, it's going to keep swinging, it's never gonna go back on its own. You don't all of a sudden become more organized and more productive. It doesn't work that way, right? You're always gonna go back and you've got to start focusing on making that decision every day. What am I doing? You know, and it could be something simple. It could be reading for five minutes, could be writing your day could be whatever it is, but start creating habits and those habits become patterns and those patterns will change your life.   Michael: Mike drop exit stage left, Steve, that was amazing. Man, I want to be super respectful of your time. If people want to talk with you more, learn more about you reach out, have you as their coach, what's the best way for them to do so?   Steve: Yeah, they can find me on all social media handles. It's Rozenberg, Steve on Instagram, Steve Rozenberg on all the other stuff. They can also go to my website. My website is https://steverozenberg.com/ , it's ROZENBERG.com and you know, I do a lot of coaching. I do three day masterminds with very high level, people like Bradley, the iron cowboy, other people, I bring them in. It's all about mindset and it's all about, you know, the one thing I'll say real quick before we go and I want to be respectful of your time is don't be selfish, and to the people watching and what I mean by that is as entrepreneurs, we watch these shows, right? We buy real estate, we do all these things, and we do it for the people that we love but here's the thing, we never actually share the knowledge that we've learned with the people we're doing it for. To me, that's the definition of being selfish be selfless. Like I said, my son bought his first rental property and 14, create generational wealth, right? Bring them into the loop. Don't be selfish, because when you're selfish, you're isolating yourself, have an open mind and the ability to give abundance and share the knowledge that you learned from this podcast, show reading, bring the family that you're doing it for into the mix, and you will have a much, much more fulfilled life and you'll be much more successful not just financially, but personally relationship and all that stuff. So don't be selfish.   Michael: Yeah. I love that, Steve and one more final question before I let you go. You mentioned you're running a mastermind and I think a lot of our listeners maybe have been to how to coach or been to seminars or been in real estate trainings, and just whoever reason can't implement it. They take the classroom knowledge, but they can't execute a role. So what have you seen people do who are really successful at that and actually applying what they've learned and taking that excitement and went out and actually ran with it…   Steve: That's a good question. So and the reason I created my mastermind is that very reason, right? Everybody goes there, rah, rah, they leave in there, like two weeks later, they're like, it's in their car underneath their seats, all the dogs chewing on it and so what I do when I do my masterminds is once they're done, they get unlimited coaching from me, they get my phone, they get my text, they get my email, if they need me, they call me. So I'm there as accountability for them every single day. It's not that hey, I know you have a problem Monday morning with a tenant exploding your house but we're supposed talk Thursday at three so call me then that doesn't work in the real world. I don't think that that's a very successful model. I give unlimited so that they have me and they have me as accountability. I think the biggest challenge when you leave these events and coaching is the accountability part. If the coach if you have a coach and he's not accountable, find them accountability person, one of the things I do when I coach partners is I have a board of directors meeting, I create a board of directors for them going over the P&I statements going over balance sheets, going over the goals. This is what you need to do in any organization, all businesses do it. Most people don't. So if you can't make your coach be accountable, or you can't afford a coach or whatever the case may be find a friend, a family member or go to the bum on the corner. I don't care but make someone hold you accountable that you actually have to answer for what you're doing and I think if you're accountable, based on what you learned, that's why I do unlimited coaching, you're going to be much more successful with achieving the goals that you set out to achieve.   Michael: Makes total sense, Steve, this was a total, total blast, man, thank you so much for taking the time to hang out with me. I really, really appreciate it.   Steve: Thank you, man. It's good having you appreciate you having me on.   Michael: Hey, we'll definitely talk soon.   All right, when that was episode, a big thank you to Steve for coming on super, super, super great stuff. As he was talking. I was like, oh my God, I need to start doing a lot more of what Steve is talking about. As always, if you enjoyed the episode, feel free to leave us a rating or review wherever you get your podcasts and we look forward to seeing you on the next one. Happy investing…

Perfectly Boring
Innovating in Hardware, Software, and the Public Cloud with Steve Tuck, CEO/Co-Founder of Oxide Computer

Perfectly Boring

Play Episode Listen Later Sep 27, 2021 53:14


In this episode, we cover:00:00:00 - Reflections on the Episode/Introduction 00:03:06 - Steve's Bio00:07:30 - The 5 W's of Servers and their Future00:14:00 - Hardware and Software00:21:00 - Oxide Computer 00:30:00 - Investing in Oxide and the Public Cloud00:36:20 - Oxide's Offerings to Customers 00:43:30 - Continious Improvement00:49:00 - Oxide's Future and OutroLinks: Oxide Computer: https://oxide.computer Perfectlyboring.com: https://perfectlyboring.com TranscriptJason: Welcome to the Perfectly Boring podcast, a show where we talk to the people transforming the world's most boring industries. I'm Jason Black, general partner at RRE ventures.Will: And I'm Will Coffield, general partner at Riot Ventures.Jason: Today's boring topic of the day: servers.Will: Today, we've got Steve Tuck, the co-founder and CEO of Oxide Computer, on the podcast. Oxide is on a mission to fundamentally transform the private cloud and on-premise data center so that companies that are not Google, or Microsoft, or Amazon can have hyper scalable, ultra performant infrastructure at their beck and call. I've been an investor in the company for the last two or three years at this point, but Jason, this is your first time hearing the story from Steve and really going deep on Oxide's mission and place in the market. Curious what your initial thoughts are.Jason: At first glance, Oxide feels like a faster horse approach to an industry buying cars left and right. But the shift in the cloud will add $140 billion in new spend every year over the next five years. But one of the big things that was really interesting in the conversation was that it's actually the overarching pie that's expanding, not just demand for cloud but at the same rate, a demand for on-premise infrastructure that's largely been stagnant over the years. One of the interesting pivot points was when hardware and software were integrated back in the mainframe era, and then virtual machines kind of divorced hardware and software at the server level. Opening up the opportunity for a public cloud that reunified those two things where your software and hardware ran together, but the on-premises never really recaptured that software layer and have historically struggled to innovate on that domain.Will: Yeah, it's an interesting inflection point for the enterprise, and for basically any company that is operating digitally at this point, is that you're stuck between a rock and a hard place. You can scale infinitely on the public cloud but you make certain sacrifices from a performance security and certainly from an expense standpoint, or you can go to what is available commercially right now and you can cobble together a Frankenstein-esque solution from a bunch of legacy providers like HP, and Dell, and SolarWinds, and VMware into a MacGyvered together on-premise data center that is difficult to operate for companies where infrastructure isn't, and they don't want it to be, their core competency. Oxide is looking to step into that void and provide a infinitely scalable, ultra-high-performance, plug-and-play rack-scale server for everybody to be able to own and operate without needing to rent it from Google, or AWS, or Microsoft.Jason: Well, it doesn't sound very fun, and it definitely sounds [laugh] very boring. So, before we go too deep, let's jump into the interview with Steve.Will: Steve Tuck, founder and CEO of Oxide Computer. Thank you for joining us today.Steve: Yeah, thanks for having me. Looking forward to it.Will: And I think maybe a great way to kick things off here for listeners would be to give folks a baseline of your background, sort of your bio, leading up to founding Oxide.Steve: Sure. Born and raised in the Bay Area. Grew up in a family business that was and has been focused on heating and air conditioning over the last 100-plus years, Atlas. And went to school and then straight out of school, went into the computer space. Joined Dell computer company in 1999, which was a pretty fun and exciting time at Dell.I think that Dell had just crossed over to being the number one PC manufacturer in the US. I think number two worldwide at Compaq. Really just got to take in and appreciate the direct approach that Dell had taken in a market to stand apart, working directly with customers not pushing everything to the channel, which was customary for a lot of the PC vendors at the time. And while I was there, you had the emergence of—in the enterprise—hardware virtualization company called VMware that at the time, had a product that allowed one to drive a lot more density on their servers by way of virtualizing the hardware that people were running. And watching that become much more pervasive, and working with companies as they began to shift from single system, single app to virtualized environments.And then at the tail end, just watching large tech companies emerge and demand a lot different style computers than those that we had been customarily making at Dell. And kind of fascinated with just what these companies like Facebook, and Google, and Amazon, and others were doing to reimagine what systems needed to look like in their hyperscale environments. One of the companies that was in the tech space, Joyent, a cloud computing company, is where I went next. Was really drawn in just to velocity and the innovation that was taking place with these companies that were providing abstractions on top of hardware to make it much easier for customers to get access to the compute, and the storage, and the networking that they needed to build and deploy software. So, spent—after ten years at Dell, I was at Joyent for ten years. That is where I met my future co-founders, Bryan Cantrill who was at Joyent, and then also Jess Frazelle who we knew working closely while she was at Docker and other stops.But spent ten years as a public cloud infrastructure operator, and we built that service out to support workloads that ran the gamut from small game developers up to very large enterprises, and it was really interesting to learn about and appreciate what this infrastructure utility business looked like in public cloud. And that was also kind of where I got my first realization of just how hard it was to run large fleets of the systems that I had been responsible for providing back at Dell for ten years. We were obviously a large customer of Dell, and Supermicro, and a number of switch manufacturers. It was eye-opening just how much was lacking in the remaining software to bind together hundreds or thousands of these machines.A lot of the operational tooling that I wished had been there and how much we were living at spreadsheets to manage and organize and deploy this infrastructure. While there, also got to kind of see firsthand what happened as customers got really, really big in the public cloud. And one of those was Samsung, who was a very large AWS customer, got so large that they needed to figure out what their path on-premise would look like. And after going through the landscape of all the legacy enterprise solutions, deemed that they had to go buy a cloud company to complete that journey. And they bought Joyent. Spent three years operating the Samsung cloud, and then that brings us to two years ago, when Jess, Bryan, and I started Oxide Computer.Will: I think maybe for the benefit of our listeners, it would be interesting to have you define—and what we're talking about today is the server industry—and to maybe take a step back and in your own words, define what a server is. And then it would be really interesting to jump into a high-level history of the server up until today, and maybe within that, where the emergence of the public cloud came from.Steve: You know, you'll probably get different definitions of what a server is depending on who you ask, but at the highest level, a server differs from a typical PC that you would have in your home in a couple of ways, and more about what it is being asked to do that drives the requirements of what one would deem a server. But if you think about a basic PC that you're running in your home, a laptop, a desktop, a server has a lot of the same components: they have CPUs, and DRAM memory that is for non-volatile storage, and disks that are storing things in a persistent way when you shut off your computer that actually store and retain the data, and a network card so that you can connect to either other machines or to the internet. But where servers start to take on a little bit different shape and a little bit different set of responsibilities is the workloads that they're supporting. Servers, the expectations are that they are going to be running 24/7 in a highly reliable and highly available manner. And so there are technologies that have gone into servers, that ECC memory to ensure that you do not have memory faults that lose data, more robust components internally, ways to manage these things remotely, and ways to connect these to other servers, other computers.Servers, when running well, are things you don't really need to think about, are doing that, are running in a resilient, highly available manner. In terms of the arc of the server industry, if you go back—I mean, there's been servers for many, many, many, many decades. Some of the earlier commercially available servers were called mainframes, and these were big monolithic systems that had a lot of hardware resources at the time, and then were combined with a lot of operational and utilization software to be able to run a variety of tasks. These were giant, giant machines; these were extraordinarily expensive; you would typically find them only running in universities or government projects, maybe some very, very large enterprises in the'60s and'70s. As more and more software was being built and developed and run, the market demand and need for smaller, more accessible servers that were going to be running this common software, were driving machines that were coming out—still hardware plus software—from the likes of IBM and DEC and others.Then you broke into this period in the '80s where, with the advent of x86 and the rise of these PC manufacturers—the Dells and Compaqs and others—this transition to more commodity server systems. A focus, really a focus on hardware only, and building these commodity x86 servers that were less expensive, that were more accessible from an economics perspective, and then ultimately that would be able to run arbitrary software, so one could run any operating system or any body of software that they wanted on these commodity servers. When I got to Dell in 1999, this is several years into Dell's foray into the server market, and you would buy a server from Dell, or from HP, or from Compaq, or IBM, then you would go find your software that you were going to run on top of that to stitch these machines together. That was, kind of, that server virtualization era, in the '90s, 2000s. As I mentioned, technology companies were looking at building more scalable systems that were aggregating resources together and making it much easier for their customers to access the storage, the networking that they needed, that period of time in which the commodity servers and the software industry diverged, and you had a bunch of different companies that were responsible for either hardware or the software that would bring these computers together, these large hyperscalers said, “Well, we're building purpose-built infrastructure services for our constituents at, like, a Facebook. That means we really need to bind this hardware and software together in a single product so that our software teams can go very quickly and they can programmatically access the resources that they need to deploy software.”So, they began to develop systems that looked more monolithic, kind of, rack-level systems that were driving much better efficiency from a power and density perspective, and hydrating it with software to provide infrastructure services to their businesses. And so you saw, what started out in the computer industry is these monolithic hardware plus software products that were not very accessible because they were so expensive and so large, but real products that were much easier to do real work on, to this period where you had a disaggregation of hardware and software where the end-user bore the responsibility of tying these things together and binding these into those infrastructure products, to today, where the largest hyperscalers in the market have come to the realization that building hardware and software together and designing and developing what modern computers should look like, is commonplace, and we all know that well or can access that as public cloud computing.Jason: And what was the driving force behind that decoupling? Was it the actual hardware vendors that didn't want to have to deal with the software? Or is that more from a customer-facing perspective where the customers themselves felt that they could eke out the best advantage by developing their own software stack on top of a relatively commodity unopinionated hardware stack that they could buy from a Dell or an HP?Steve: Yeah, I think probably both, but one thing that was a driver is that these were PC companies. So, coming out of the'80s companies that were considered, quote-unquote, “The IBM clones,” Dell, and Compaq, and HP, and others that were building personal computers and saw an opportunity to build more robust personal computers that could be sold to customers who were running, again, just arbitrary software. There wasn't the desire nor the DNA to go build that full software stack and provide that out as an opinionated appliance or product. And I think then, part of it was also like, hey, if we just focus on the hardware, then got this high utility artifact that we can go sell into all sorts of arbitrary software use cases. You know, whether this is going to be a single server or three servers that's going to go run in a closet of cafe, or it's going to be a thousand servers that are running in one of these large enterprise data centers, we get to build the same box, and that box can run underneath any different type of software. By way of that, what you ultimately get in that scenario is you do have to boil things down to the lowest common denominators to make sure that you've got that compatibility across all the different software types.Will: Who were the primary software vendors that were helping those companies take commodity servers and specialize into particular areas? And what's their role now and how has that transformed in light of the public cloud and the offerings that are once again generalized, but also reintegrated from a hardware and software perspective, just not maybe in your own server room, but in AWS, or Azure, or GCP?Steve: Yeah, so you have a couple layers of software that are required in the operation of hardware, and then all the way up through what we would think about as running in a rack, a full rack system today. You've first got firmware, and this is the software that runs on the hardware to be able to connect the different hardware components, to boot the system, to make sure that the CPU can talk to its memory, and storage, and the network. That software may be a surprise to some, but that firmware that is essential to the hardware itself is not made by the server manufacturer themselves. That was part of this outsourcing exercise in the '80s where not only the upstack software that runs on server systems but actually some of the lower-level downstack software was outsourced to these third-party firmware shops that would write that software. And at the time, probably made a lot of sense and made things a lot easier for the entire ecosystem.You know, the fact that's the same model today, and given how proprietary that is and, you know, where that can actually lead to some vulnerabilities and security issues is more problematic. You've got firmware, then you've got the operating system that runs on top of the server. You have a hypervisor, which is the emulation layer that translates that lower-level hardware into a number of virtual machines that applications can run in. You have control plane software that connects multiple systems together so that you can have five or ten or a hundred, or a thousand servers working in a pool, in a fleet. And then you've got higher-level software that allows a user to carve up the resources that they need to identify the amount of compute, and memory, and storage that they want to spin up.And that is exposed to the end-user by way of APIs and/or a user interface. And so you've got many layers of software that are running on top of hardware, and the two in conjunction are all there to provide infrastructure services to the end-user. And so when you're going to the public cloud today, you don't have to worry about any of that, right? Both of you have probably spun up infrastructure on the public cloud, but they call it 16 digits to freedom because you just swipe a credit card and hit an API, and within seconds, certainly within a minute, you've got readily available virtual servers and services that allow you to deploy software quickly and manage a project with team members. And the kinds of things that used to take days, weeks, or even months inside an enterprise can be done now in a matter of minutes, and that's extraordinarily powerful.But what you don't see is all the integration of these different components running, very well stitched together under the hood. Now, for someone who's deploying their own infrastructure in their own data center today, that sausage-making is very evident. Today, if you're not a cloud hyperscaler, you are having to go pick a hardware vendor and then figure out your operating system and your control plane and your hypervisor, and you have to bind all those things together to create a rack-level system. And it might have three or four different vendors and three or four different products inside of it, and ultimately, you have to bear the responsibility of knitting all that together.Will: Because those products were developed in silos from each other?Steve: Yeah.Will: They were not co-developed. You've got hardware that was designed in a silo separate from oftentimes it sounds like the firmware and all of the software for operating those resources.Steve: Yeah. The hardware has a certain set of market user requirements, and then if you're a Red Hat or you're a VMware, you're talking to your customers about what they need and you're thinking at the software layer. And then you yourself are trying to make it such that it can run across ten or twenty different types of hardware, which means that you cannot do things that bind or provide hooks into that underlying hardware which, unfortunately, is where a ton of value comes from. You can see an analog to this in thinking about the Android ecosystem compared to the Apple ecosystem and what that experience is like when all that hardware and software is integrated together, co-designed together, and you have that iPhone experience. Plenty of other analogs in the automotive industry, with Tesla, and health equipment, and Peloton and others, but when hardware and software—we believe certainly—when hardware and software is co-designed together, you get a better artifact and you get a much, much better user experience. Unfortunately, that is just not the case today in on-prem computing.Jason: So, this is probably a great time to transition to Oxide. Maybe to keep the analogy going, the public cloud is that iPhone experience, but it's just running in somebody else's data center, whether that's AWS, Azure, or one of the other public clouds. You're developing iOS for on-prem, for the people who want to run their own servers, which seems like kind of a countertrend. Maybe you can talk us through the dynamics in that market as it stands today, and how that's growing and evolving, and what role Oxide Computer plays in that, going forward.Steve: You've got this what my co-founder Jess affectionately refers to as ‘infrastructure privilege' in the hyperscalers, where they have been able to apply the money, and the time, and the resources to develop this, kind of, iPhone stack, instead of thinking about a server as a single 1U unit, or single machine, had looked at, well, what does a rack—which is the case that servers are slotted into in these large data centers—what does rack-level computing look like and where can we drive better power efficiency? Where can we drive better density? How can we drive much better security at scale than the commodity server market today? And doing things like implementing hardware Roots of Trust and Chain of Trust, so that you can ensure the software that is running on your machines is what is intended to be running there. The blessing is that we all—the market—gets access to that modern infrastructure, but you can only rent it.The only way you can access it is to rent, and that means that you need to run in one of the three mega cloud providers' data centers in those locations, that you are having to operate in a rental fee model, which at scale can become very, very prohibitively expensive. Our fundamental belief is that the way that these hyperscale data centers have been designed and these products have been designed certainly looks a lot more like what modern computers should look like, but the rest of the market should have access to the same thing. You should be able to buy and own and deploy that same product that runs inside a Facebook data center, or Apple data center, or Amazon, or a Google data center, you should be able to take that product with you wherever your business needs to run. A bit intimidating at the top because what we signed up for was building hardware, and taking a clean sheet paper approach to what a modern server could look like. There's a lot of good hardware innovation that the hyperscalers have helped drive; if you go back to 2010, Facebook pioneered being a lot more open about these modern open hardware systems that they were developing, and the Open Compute Project, OCP, has been a great collection point for these hyperscalers investing in these modern rack-level systems and doing it in the open, thinking about what the software is that is required to operate modern machines, importantly, in a way that does not sink the operations teams of the enterprises that are running them.Again, I think one of the things that was just so stunning to me, when I was at Joyent—we were running these machines, these commodity machines, and stitching together the software at scale—was how much of the organization's time was tied up in the deployment, and the integration, and the operation of this. And not just the organization's time, but actually our most precious resource, our engineering team, was having to spend so much time figuring out where a performance problem was coming from. For example in [clear throat], man, those are the times in which you really are pounding your fist on the table because you will try and go downstack to figure out, is this in the control plane? Is this in the firmware? Is this in the hardware?And commodity systems of today make it extremely, extremely difficult to figure that out. But what we set out to do was build same rack-level system that you might find in a hyperscaler data center, complete with all the software that you need to operate it with the automation required for high availability and low operational overhead, and then with a CloudFront end, with a set of services on the front end of that rack-level system that delight developers, that look like the cloud experience that developers have come to love and depend on in the public cloud. And that means everything is programmable, API-driven services, all the hardware resources that you need—compute, memory, and storage—are actually a pool of resources that you can carve up and get access to and use in a very developer-friendly way. And the developer tools that your software teams have come to depend on just work and all the tooling that these developers have invested so much time in over the last several years, to be able to automate things, to be able to deploy software faster are resident in that product. And so it is definitely kind of hardware and software co-designed, much like some of the original servers long, long, long ago, but modernized with the hardware innovation and open software approach that the cloud has ushered in.Jason: And give us a sense of scale; I think we're so used to seeing the headline numbers of the public cloud, you know, $300-and-some billion dollars today, adding $740-some billion over the next five years in public cloud spend. It's obviously a massive transformation, huge amount of green space up for grabs. What's happening in the on-prem market where your Oxide Computer is playing and how do you think about the growth in that market relative to a public cloud?Steve: It's funny because as Will can attest, as we were going through and fundraising, the prevalent sentiment was, like, everything's going to the public cloud. As we're talking to the folks in the VC community, it was Amazon, Microsoft, and Google are going to own the entirety of compute. We fundamentally disagreed because, A, we've lived it, and b, we went out as we were starting out and talked to dozens and dozens of our peers in the enterprise, who said, “Our cloud ambitions are to be able to get 20, 30, 40% of our workloads out there, and then we still have 60, 70% of our infrastructure that is going to continue to run in our own data centers for reasons including regulatory compliance, latency, security, and in a lot of cases, cost.” It's not possible for these enterprises that are spending half a billion, a billion dollars a year to run all of their infrastructure in the public cloud. What you've seen on-premises, and it depends on who you're turning to, what sort of poll and research you're turning to, but the on-prem market, one is growing, which I think surprises a lot of folks; the public cloud market, of course, it's growing like gangbusters, and that does not surprise a lot of folks, but what we see is that the combined market of on-prem and cloud, you can call it—if on-premise on the order of $100 billion and cloud is on the order of $150 billion, you are going to see enormous growth in both places over the next 10, 15 years.These markets are going to look very, very small compared to where they will be because one of the biggest drivers of whether it's public cloud or on-prem infrastructure, is everything shifting to digital formats. The digitalization that is just all too commonplace, described everywhere. But we're still very, very early in that journey. I think that if you look at the global GDP, less than 10% of the global GDP is on the internet, is online. Over the coming 10, 20 years, as that shifts to 20%, 30%, you're seeing exponential growth. And again, we believe and we have heard from the market that is representative of that $100 billion that investments in the public cloud and on-prem is going to continue to grow much, much more as we look forward.Will: Steve, I really appreciate you letting listeners know how special a VC I am.Steve: [laugh].Will: [laugh]. It was really important point that I wanted to make sure we hit on.Steve: Yeah, should we come back to that?Will: Yeah, yeah yeah—Steve: Yeah, let's spend another five or ten minutes on that.Will: —we'll revisit that. We'll revisit that later. But when we're talking about the market here, one of the things that got us so excited about investing in Oxide is looking at the existing ecosystem of on-prem commercial providers. I think if you look at the public cloud, there are fierce competitors there, with unbelievably sophisticated operations and product development. When you look at the on-prem ecosystem and who you would go to if you were going to build your own data center today, it's a lot of legacy companies that have started to optimize more for, I would say, profitability over the last couple of years than they have for really continuing to drive forward from an R&D and product standpoint.Would love maybe for you to touch on briefly, what does competition for you look like in the on-prem ecosystem? I think it's very clear who you're competing with, from a public cloud perspective, right? It's Microsoft, Google, Amazon, but who are you going up against in the on-prem ecosystem?Steve: Yeah. And just one note on that. We don't view ourselves as competing with Amazon, Google, and Microsoft. In fact, we are ardent supporters of cloud in the format, namely this kind of programmable API-fronted infrastructure as being the path of the future of compute and storage and networking. That is the way that, in the future, most software should be deployed to, and operated on, and run.We just view the opportunity for, and what customers are really, really excited about is having those same benefits of public cloud, but in a format in which they can own it and being able to have access to that everywhere their business needs to run, so that it's not, you know, do I get all this velocity, and this innovation, and this simplicity when I rent public cloud, or do I own my infrastructure and have to give up a lot of that? But to the first part of your question, I think the first issue is that it isn't one vendor that you are talking about what is the collection of vendors that I go to to get servers, software to make my servers talk to each other, switches to network together these servers, and additional software to operate, and manage, and monitor, and update. And there's a lot of complexity there. And then when you take apart each one of those different sets of vendors in the ecosystem, they're not designing together, so you've got these kind of data boundaries and these product boundaries that start to become really, really real when you're operating at scale, and when you're running critical applications to your business on these machines. And you find yourself spending an enormous amount of the company's time just knitting this stuff together and operating it, which is all time lost that could be spent adding additional features to your own product and better competing with your competitors.And so I think that you have a couple of things in play that make it hard for customers running infrastructure on-premises, you've got that dynamic that it's a fractured ecosystem, that these things are not designed together, that you have this kit car that you have to assemble yourself and it doesn't even come with a blueprint of the particular car design that you're building. I think that you do have some profit-taking in that it is very monopolized, especially on the software side where you've only got a couple of large players that know that there are few alternatives for companies. And so you are seeing these ELAs balloon, and you are seeing practices that look a lot like Oracle Enterprise software sales that are really making this on-prem experience not very economically attractive. And so our approach is, hardware should come with all the software required to operate it, it should be tightly integrated, the software should be all open-source. Something we haven't talked about.I think open-source is playing an enormous role in accelerating the cloud landscape and the technology landscapes. We are going to be developing our software in an open manner, and truly believe whether it's from a security view through to the open ecosystem, that it is imperative that software be open. And then we are integrating the switch into that rack-level product so that you've got networking baked in. By doing that, it opens up a whole new vector of value to the customer where, for example, you can see for the first time what is the path of traffic from my virtual machine to a switchboard? Or when things are not performing well, being able to look into that path, and the health, and see where things are not performing as well as they should, and being able to mitigate those sorts of issues.It does turn out if you are able to get rid of a lot of the old, crufty artifacts that have built up inside even these commodity system servers, and you are able to start designing at a rack level where you can drive much better power efficiency and density, and you bake in the software to effectively make this modern rack-level server look like a cloud in a box, and ensure these things can snap together in a grid, where in that larger fleet, operational management is easy because you've got the same automation capabilities that the big cloud hyperscalers have today. It can really simplify life. It ends up being an economic win and maybe most importantly, presents the infrastructure in a way that the developers love. And so there's not this view of the public cloud being the fast, innovative path for developers and on-prem being this, submit a trouble ticket and try and get access to a VM in six days, which sadly is the experience that we hear a lot of companies are still struggling with in on-prem computing.Jason: Practically, when you're going out and talking to customers, you're going to be a heterogeneous environment where presumably they already have their own on-prem infrastructure and they'll start to plug in—Steve: Yeah.Jason: —Oxide Computer alongside of it. And presumably, they're also to some degree in the public cloud. It's a fairly complex environment that you're trying to insert yourself into. How are your customers thinking about building on top of Oxide Computer in that heterogeneous environment? And how do you see Oxide Computer expanding within these enterprises, given that there's a huge amount of existing capital that's gone into building out their data centers that are already operating today, and the public cloud deployments that they have?Steve: As customers are starting to adopt Oxide rack-level computing, they are certainly going to be going into environments where they've got multiple generations of multiple different types of infrastructure. First, the discussions that we're having are around what are the points of data exfiltration, of data access that one needs to operate their broader environment. You can think about handoff points like the network where you want to make sure you've got a consistent protocol to, like, BGP or other, to be able to speak from your layer 2 networks to your layer 3 networks; you've got operational software that is doing monitoring and alerting and rolling up for service for your SRE teams, your operations teams, and we are making sure that Oxide's endpoint—the front end of the Oxide product—will integrate well, will provide the data required for those systems to run well. Another thorny issue for a lot of companies is identity and access management, controlling the authentication and the access for users of their infrastructure systems, and that's another area where we are making sure that the interface from Oxide to the systems they use today, and also resident in the Oxide product such as one wants to use it directly, has a clean cloud-like identity and access management construct for one to use. But at the highest level it is, make sure that you can get out of the Oxide infrastructure, the kind of data and tooling required to incorporate into management of your overall fleet.Over time, I think customers are going to experience a much simpler and much more automated world inside of the Oxide ecosystem; I think they're going to find that there are exponentially fewer hours required to manage that environment and that is going to inevitably just lead to wanting to replace a hundred racks of the extant commodity stack with, you know, sixty racks of Oxide that provide much better density, smaller footprint in the data center, and again, software-driven in the way that these folks are looking for.Jason: And in that answer, you alluded to a lot of the specialization and features that you guys can offer. I've always loved Alan Kay's quote, “People who are really serious about software make their own hardware.”Steve: Yeah.Jason: Obviously, you've got some things in here that only Oxide Computer can do. What are some of those features that traditional vendors can't even touch or deliver that you'll be able to, given your hardware-software integration?Steve: Maybe not the most exciting example, but I think one that is extremely important to a lot of the large enterprise company that we're working with, and that is at a station, being able to attest to the software that is running on your hardware. And why is that important? Well, as we've talked about, you've got a lot of different vendors that are participating in that system that you're deploying in your data center. And today, a lot of that software is proprietary and opaque and it is very difficult to know what versions of things you are running, or what was qualified inside that package that was delivered in the firmware. We were talking to a large financial institution, and they said their teams are spending two weeks a month just doing, kind of a proof of trust in their infrastructure that their customer's data is running on, and how cumbersome and hard it is because of how murky and opaque those lower-level system software world is.What do the hyperscalers do? They have incorporated hardware Root of Trust, which ensures from that first boot instruction, from that first instruction on the microprocessor, that you have a trusted and verifiable path, from the system booting all the way up through the control plane software to, say, a provisioned VM. And so what this does is it allows the rest of the market access to a bunch of security innovation that has gone on where these hyperscalers would never run without this. Again, having the hardware Root of Trust anchored at a station process, the way to attest all that software running is going to be really, really impactful for more than just security-conscious customers, but certainly, those that are investing more in that are really, really excited. If you move upstack a little bit, when you co-design the hardware with the control plane, both the server and the switch hardware with the control plane, it opens up a whole bunch of opportunity to improve performance, improve availability because you now have systems that are designed to work together very, very well.You can now see from the networking of a system through to the resources that are being allocated on a particular machine, and when things are slow, when things are broken, you are able to identify and drive those fixes, in some cases that you could not do before, in much, much, much faster time, which allows you to start driving infrastructure that looks a lot more like the five nines environment that we expect out of the public cloud.Jason: A lot of what you just mentioned, actually, once again, ties back to that analogy to the iPhone, and having that kind of secure enclave that powers Touch ID and Face ID—Steve: Yep.Jason: —kind of a server equivalent, and once again, optimization around particular workflows, the iPhone knows exactly how many photos every [laugh] iOS user takes, and therefore they have a custom chip dedicated specifically to processing images. I think that tight coupling, just relating it back to that iOS and iPhone integration, is really exciting.Steve: Well, and the feedback loop is so important because, you know, like iPhone, we're going to be able to understand where there are rough edges and where things are—where improvements can even can continue to be made. And because this is software-driven hardware, you get an opportunity to continuously improve that artifact over time. It now stops looking like the old, your car loses 30% of the value when you drive it off the lot. Because there's so much intelligent software baked into the hardware, and there's an opportunity to update and add features, and take the learnings from that hardware-software interaction and feed that back into an improving product over time, you can start to see the actual hardware itself have a much longer useful life. And that's one of the things we're really excited about is that we don't think servers should be commodities that the vendors are trying to push you to replace every 36 months.One of the things that is important to keep in mind is as Moore's laws is starting to slow or starting to hit some of the limitations, you won't have CPU density and some of these things, driving the need to replace hardware as quickly. So, with software that helps you drive better utilization and create a better-combined product in that rack-level system, we think we're going to see customers that can start getting five, six, seven years of useful life out of the product, not the typical two, or three, or maybe four that customers are seeing today in the commodity systems.Will: Steve, that's one of the challenges for Oxide is that you're taking on excellence in a bunch of interdisciplinary sciences here, between the hardware, the software, the firmware, the security; this is a monster engineering undertaking. One of the things that I've seen as an investor is how dedicated you have got to be to hiring, to build basically the Avengers team here to go after such a big mission. Maybe you could touch on just how you've thought about architecting a team here. And it's certainly very different than what the legacy providers from an on-prem ecosystem perspective have taken on.Steve: I think one of the things that has been so important is before we even set out on what we were going to build, the three of us spent time and focused on what kind of company we wanted to build, what kind of company that we wanted to work at for the next long chunk of our careers. And it's certainly drawing on experiences that we had in the past. Plenty of positives, but also making sure to keep in mind the negatives and some of the patterns we did not want to repeat in where we were working next. And so we spent a lot of time just first getting the principles and the values of the company down, which was pretty easy because the three of us shared these values. And thinking about all the headwinds, just all the foot faults that hurt startups and even big companies, all the time, whether it be the subjectivity and obscurity of compensation or how folks in some of these large tech companies doing performance management and things, and just thinking about how we could start from a point of building a company that people really want to work for and work with.And I think then layering on top of that, setting out on a mission to go build the next great computer company and build computers for the cloud era, for the cloud generation, that is, as you say, it's a big swing. And it's ambitious, and exhilarating and terrifying, and I think with that foundation of focusing first on the fundamentals of the business regardless of what the business is, and then layering on top of it the mission that we are taking on, that has been appealing, that's been exciting for folks. And it has given us the great opportunity of having terrific technologists from all over the world that have come inbound and have wanted to be a part of this. And we, kind of, will joke internally that we've got eight or nine startups instead of a startup because we're building hardware, and we're taking on developing open-source firmware, and a control plane, and a switch, and hardware Root of Trust, and in all of these elements. And just finding folks that are excited about the mission, that share our values, and that are great technologists, but also have the versatility to work up and down the stack has been really, really key.So far, so great. We've been very fortunate to build a terrific, terrific team. Shameless plug: we are definitely still hiring all over the company. So, from hardware engineering, software engineering, operations, support, sales, we're continuing to add to the team, and that is definitely what is going to make this company great.Will: Maybe just kind of a wrap-up question here. One of the things Jason and I always like to ask folks is, if you succeed over the next five years, how have you changed the market that you're operating in, and what does the company look like in five years? And I want you to know as an investor, I'm holding you to this. Um, so—Steve: Yeah, get your pen ready. Yeah.Will: Yeah, yeah. [laugh].Steve: Definitely. Expect to hear about that in the next board meeting. When we get this product in the market and five years from now, as that has expanded and we've done our jobs, then I think one of the most important things is we will see an incredible amount of time given back to these companies, time that is wasted today having to stitch together a fractured ecosystem of products that were not designed to work together, were not designed with each other in mind. And in some cases, this can be 20, 30, 40% of an organization's time. That is something you can't get back.You know, you can get more money, you can—there's a lot that folks can control, but that loss of time, that inefficiency in DIY your own cloud infrastructure on-premises, will be a big boon. Because that means now you've got the ability for these companies to capitalize on digitalizing their businesses, and just the velocity of their ability to go improve their own products, that just will have a flywheel effect. So, that great simplification where you don't even consider having to go through and do these low-level updates, and having to debug and deal with performance issues that are impossible to sort out, this—aggregation just goes away. This system comes complete and you wouldn't think anything else, just like an iPhone. I think the other thing that I would hope to see is that we have made a huge dent in the efficiency of computing systems on-premises, that the amount of power required to power your applications today has fallen by a significant amount because of the ability to instrument the system, from a hardware and software perspective, to understand where power is being used, where it is being wasted.And I think that can have some big implications, both to just economics, to the climate, to a number of things, by building and people using smarter systems that are more efficient. I think generally just making it commonplace that you have a programmable infrastructure that is great for developers everywhere, that is no longer restricted to a rental-only model. Is that enough for five years?Will: Yeah, I think I think democratizing access to hyperscale infrastructure for everybody else sounds about right.Steve: All right. I'm glad you wrote that down.Jason: Well, once again, Steve, thanks for coming on. Really exciting, I think, in this conversation, talking about the server market as being a fairly dynamic market still, that has a great growth path, and we're really excited to see Oxide Computer succeed, so thanks for coming on and sharing your story with us.Steve: Yeah, thank you both. It was a lot of fun.Will: Thank you for listening to Perfectly Boring. You can keep up the latest on the podcast at perfectlyboring.com, and follow us on Apple, Spotify, or wherever you listen to podcasts. We'll see you next time.

The Marketing Agency Leadership Podcast
Moving to a Client Perspective

The Marketing Agency Leadership Podcast

Play Episode Listen Later May 13, 2021 36:30


Steve Denker, most recently Vice President of Marketing and Digital for Turner Classic Movies, chats with Rob at the virtual 2021 South by Southwest. In this interview, he gives his perspective on what he looks for when “working with agencies.”  In the mid-90s, Steve worked for Aramark at Fulton County Stadium/Turner Field, managing relationships with the brands and products that were part of that stadium experience. He observed how fans interacted with Coca-Cola and highlighted opportunities for Coke to increase sales and strengthen the link between the experience and the product. Coca-Cola liked his approach and brought him onboard to develop the experiential look and feel of Coca-Cola in a wide variety of venues.  After a while, Steve understood that Coca-Cola was large enough that it would be a long time before he would have the opportunity to manage people, explore the emerging field of digital marketing, and gain product sales experience.  He took a position with RentPath, leading the marketing and advertising outreach for apartment guide publications at Apartment.com. From 2001 to 2008, Steve worked directly with companies that “touched” the rental process . . . selling digital advertising to utilities, renters' insurance companies, and movers and helping people find the right place to live. “Moving is an incredibly stressful time,” Steve says. In 2011, Steve joined Relocation.com, doing lead generation and business development out of New York. He connected with an individual who owned the Beach.com domain. Together, they planned to build the world's largest and most comprehensive database of beach and beach destination information. When heavy competition from Travelocity and Expedia prevented Beach.com from getting the desired level of traffic and sales, Steve decided it was time to move again. He values his involvement in this “failed venture.” “I can't tell you the lessons learned from that experience I have taken through everything else I've done, both personally and professionally.” All that “good stuff” found its place when Steve joined a consulting firm in Atlanta. (Steve's Beach.com partner still manages the reimagined site.) In 2016, an old buddy from his Coca-Cola days invited him to build a marketing department at Turner Classic Movies. Steve was at TCM for 4-1/2 years. Outsiders may think large organizations have such a wealth of internal resources that they don't need help from agencies. Far from the truth, Steve says. Agencies are important for their unique talents, expertise, efficiencies, and ability to help “execute the vision.” Steve describes what he looks for in agencies. Once agencies get past the first cut of “Do they have the ability to do what we need them to do?”, he needs to know that they “either already understand our business and who our customers are or have the capacity to understand that in a very short period of time.” He thinks organizational leaders need to have a laser focus on what they are trying to accomplish and understand both functional and emotional business priorities. Steve recently started thefasttimes.net, a weekly culture e-zine for Gen-Xers and wannabes, and reaching out on Instagram and Facebook and Twitter. Transcript Follows: ROB: Welcome to the Marketing Agency Leadership Podcast. I'm your host, Rob Kischuk, and continuing in our South by Southwest series, I am speaking today with a friend, a friend of the podcast, and not an agency owner but a marketer with a tremendous history that I think we will all benefit greatly from. My guest is Steve Denker. Steve was most recently Vice President of Marketing and Digital for Turner Classic Movies. He's based in Atlanta like me, but we are still in COVID quarantine, talking online. Welcome to the podcast, Steve. STEVE: Thank you, Rob. Thanks for having me. It's been great running into you at local marketing and industry events over the past probably 8+ years, and at South by. Hopefully I'll have a chance to work with Converge and/or Bellwood Labs in the future. ROB: I appreciate that. I think I met you one fine day when you wandered into the Flashpoint Startup Accelerator here in Atlanta in the season of Beach.com. At least, that's a memorable moment in your career. But you've done a great deal of things. Why don't you start off by running through your journey and path in marketing, to give us an idea of the context you come to us from? STEVE: Sure, thank you. And I do remember that day when we met downtown. I started out – I'll back the train up a couple of stops. I grew up in Philadelphia and went to school in New York and came down to Atlanta in the mid-90s for a company called Aramark that was responsible for the concessions, the merchandise, and general operations at stadiums and arenas around the country, among some other businesses that they're in. I started working at Fulton County Stadium and eventually what became the new Turner Field. My position really was more in an operations role, but I was responsible for the relationships with all of the brands and products that were part of that stadium experience. I was working with the Budweisers and Starbucks and Bluebell Ice Cream, Coca-Colas of the world. Any product that was looking to get in front of those fans. It's interesting how I eventually used that relationship to transition to a role at Coca-Cola because I was watching the fans and seeing what they were doing at every game. I had the opportunity to watch their behaviors and see their traffic paths and their buying habits and so forth. So when Coca-Cola brought a team down once or twice a season to take a look at their assets, I had the opportunity not just to nod my head and say, “Yeah, the umbrellas are faded” or “We need new menu boards,” but really share with them what was going on and how the fans were interacting with Coca-Cola and how it was part of the experience to watch a Braves game. By putting together some plans and sharing with them where I thought they could not only accelerate sales, but also make the brand more part of the experience, I caught the attention of a few folks within that sports and marketing group, at the time called Presence Marketing. Not long after the Olympics, I transitioned over to that group at Coca-Cola and was then part of that experiential look and feel of Coca-Cola at stadiums and arenas, Disney, Universal, and so forth, in a creative capacity. It was a terrific move. The group was run by Steve Koonin, who is just Atlanta royalty and the CEO of the Hawks and State Farm Arena. He really was bringing so many innovations to this group and to the way that Coke was marketed. I was really fortunate to be part of that team and that group. From there, a couple of years later, I had an opportunity to go to a company most recently called RentPath. At the time it was called PriMedia. Also here in Buckhead. What was missing at Coke at that time when I left – I think there were three things I was really looking for that were going to take a while. I was looking to manage people and learn how to do that. I felt that was a good next step for my career. That would've taken a while within that multinational structure. Digital was something that, in the early 2000s, was really the forefront of what the next part of marketing was. Coke wasn't paying as much attention to it as other companies were. Then finally, I was looking for something that would give me real sales experience, not just internally and working with other groups, but actually selling products. Again, I thought that would be something at the early stage of my career that I would learn and use for the rest of my days in terms of working in any capacity. So RentPath offered those and more, and I went over and led the marketing and advertising for the apartment guide publications at Apartment.com. This was early on lead gen and getting folks into and around their apartments, their living situations. It was really interesting, because it was working directly with any company that has to do with that process, whether it's your utilities and your phone, renter's insurance, physically moving – anything like that were opportunities for myself and my team to sell advertising to. These were the early days of digital advertising, if you can imagine: banner ads with CPMs of $60-75 and relatively no accountability. Not even serving accountability. Forget about click-through rates; did you actually serve the ads I just paid for? That was even, at the time, a little murky. Companies just wanted to be part of it. As long as they went onto the website and saw their ad, they said, “Keep serving it.” It was really interesting to see the growth of the industry from, again, banner ads and text ads to what it is today – particularly at that time of 2001 through 2008, when it really exploded into the framework of what we see today with data and analytics and accountability. It was exciting to see that grow. I left for a company called Relocation.com, which was lead generation and business development out of New York. I'd spend a week a month in New York and then back to Atlanta again. I connected with someone in New York who owned the Beach.com domain, and we had plans to build the world's largest database of beach information. Not just every beach in the world, but hotels, vacation rentals, restaurants, activities, local information, local concierge services – really anything that would have to do with a beach destination or vacation, and build out this massive portal. At the time in 2011, this is when people really were using Travelocity and Expedia. There was heavy competition from these other sites. We went ahead and raised some money, built a plan, and it just didn't take off. It didn't get to the level in terms of traffic and converting users into revenue and sales that we had hoped for. All shook hands a few years later, back in 2013, and the site is still live right now. My partner at the time is still running it with a couple of different objectives. But I can't tell you the amount lessons learned from that experience I have taken through everything else I've done, both personally and professionally. I look back at that and have no regrets on taking that business risk. I think if we had done a couple of things differently – many things differently – we would've had a different outcome. But again, we pivoted. A lot of key learnings from that that I've been fortunate enough to share with other folks. That's what I did after that at a consulting firm here in Atlanta and had some great client relationships with companies like PDS and a company called AGRO Merchants Group, a healthcare company, we did some work with Blackstone. Eventually, one of my earliest relationships from Coca-Cola, a woman named Jennifer Dorian, who is a mentor and a friend and could not be a bigger rock star – she's now the CEO over at Atlanta Public Broadcasting & Radio. She was on Steve Koonin's team as well. I worked with her in the Coca-Cola days and had stayed in touch with her really for 20 years. We were having coffee or lunch once or twice a year just to catch up and so forth. She at the time was general manager of Turner Classic Movies and gave me a call and said, “Hey, we're looking to build a marketing department and expand what we've been doing.” This was in late 2016. She said, “Would you like to come over and interview with a bunch of people?” I did that, and a couple of months later I had moved over to Turner and had an amazing four and a half years there. ROB: It's quite a journey. I think it's interesting to point out that all the way through Beach.com, and probably a little bit after that as well, you were in early on the customer journey. Moving, to an extent, is kind of the ultimate customer journey. You combined that in the digital space. You mentioned the high CPM, but the customer lifetime value is also quite high if you can get somebody into an apartment for a couple of years. STEVE: Absolutely. That's a great point. Not only is it part of that initial customer journey – wherever that came from and whatever company claimed to own that verbiage and so forth, it was the beginning of that – but it was also, I think, a very critical time when working with customers. I was working in industries where you really can't screw it up. In other words, moving is an incredibly stressful time. If someone doesn't find the right apartment, if you haven't given them all the information – and again, we were the connector. We weren't the apartment complex, but we were certainly helping them find that right place. But if they didn't move into the right place, if they found out it was an hour commute from where they worked and they didn't realize that, or if they moved into a place in Alpharetta and their friends were all in Buckhead and they didn't realize it was a 45-minute drive, not 10 – all of these different things, they looked back and they were upset with us and the recommendations we made. And on the moving side, same thing. Again, it's very stressful. If that moving truck doesn't show up on time – think about all the things physically connected to moving your stuff. You're trying to time everything out on a particular moving day. It could be hooking up utilities or having to be out of one place and into another. If something isn't right and you realize that all of your possessions are now on an 18-foot U-Haul and that is broken down on the side of a road, it's not good. So I think it's understanding how important it is to take care of the customer and really understand what it is emotionally they're going through when they're finding a place to live, when they're physically moving. At Beach.com, it was your vacation. Most people have two weeks a year, and that vacation is very important for them to recharge and connect with family or friends. It's an important part of your life. If somehow I was part of an organization that screwed that up, it was on me, and it was something that I took very seriously. ROB: Definitely a lot at stake there. Steve, one thing I think you can shed particularly interesting light on is maybe your time at TCM. You have a unique perspective for a guest on this podcast. You're kind of on the other side of the table from the marketing agency, so I think it would be interesting to explore TCM through the lens of what that brand–agency relationship can look like. STEVE: Sure. Absolutely, I'd love to do that. At TCM, we really looked at ourselves as part of the larger Warner Media portfolio. I think every brand looks at themselves as their own business, and we were certainly no different in that we had a very clear set of objectives and goals in terms of growing our brand to the audience, making sure that people not only tuned in and watched, but also couple participate in other ways if they didn't have TCM on cable. Now there's HBO Max and ways to watch, but also, there are a lot of other events and other enterprise businesses that TCM was a part of. Running all these events, I think some people from the outside may look at a company like Warner Media, AT&T being the parent, and say, “Oh, there's got to be so many resources within the company that there wouldn't be a need to tap into agencies.” That couldn't be further from the reality. I've worked with agencies for a very long time; they bring unique talent to a company like Warner Media and particularly TCM. We would work with agencies for their expertise, for their efficiencies, and for them to help us execute the vision. They were a very important part of what we did. We had a couple of different ways we could structure relationships. Certainly, there were some contractors or freelancers that could come in for some very small projects or very specific projects that maybe had to do with production or one part of a creative execution. But for the most part, working with agencies was something that we did, and we worked with a couple of Atlanta agencies that really knocked it out of the park for us. On the TCM side, early on when I started, we had a product called FilmStruck, which was this amazing streaming service of independent, foreign, and arthouse films. It was the first streaming service that Turner had launched, and eventually it was shut down to make way for HBO Max. But as we launched it, we worked with Nebo here in Atlanta. This team really dove into that customer journey and what the needs were, really end-to-end, of generating subscriptions and long-term value from those users, and ways to distribute and share what we were offering and get it out there. Again, these were not things that internally we had access to. I think a lot of us had pieces of the puzzle in our backgrounds and we had some very good folks internally that had acquisition experience, subscription acquisition experience even. But tying it all together – if you think about every customer touchpoint from copy for the website, both the frontend and the backend, things like thank you emails, things like the weekly newsletters and drip campaigns to get people excited about new content and new programming coming, ways to reengage folks, knowing how much time they're spending on the service and ways to get them excited about spending more time, sharing with friends, seasonal deals like “Hey, get this for someone for Mother's or Father's Day or a holiday subscription” – all of these different occasions to buy and reasons to stay are things that they helped us with in terms of those campaigns. ROB: How did you think about the agency selection process? Did you have a bake-off of some sort? Did you know what direction you were leaning? Because knowing the Turner/Warner Media ecosystem – I know local shops who have built web games for Falling Skies; I know global agencies on the PR side who've done analytics work for TBS and TNT. So you could really run the spectrum. How did you approach that selection process? STEVE: Right now – and this wasn't available for a couple of years while I was there, but has come on – there's now a database within Warner Media. Folks that work with agencies all around the country or international ones put in – it's not a scoring process and you look for the 90s or above, but it's more or less, “Hey, I had an experiential agency work on a large outdoor event with us. They did an amazing job. Here's the contact information, here's what they did, here are some pictures.” That exists now. So that's certainly a tool that I think some folks at Warner Media are using. When we selected Nebo – and more recently 9Rooftops, which has a great office here in Atlanta, that did some great work for us as well – so much of it is word of mouth and being in the Atlanta community, being part of AMA. That's exactly what I did. I reached out to a good friend of mine, Joe Koufman, at a company called Setup, and said to Joe, “Listen, I'm looking for an agency. This is what we need them to do. This is an outline of the project. What do you recommend?” He came back with three or four really strong recommendations, and that's where I started. Then from that, we sat down with the agencies – and I'm not a fan of having agencies do work for free. I don't think that's right. I don't think that's a way to start the relationship. So we didn't ask any agency to produce work; we really just had conversations with them to share ideas. We said, “Here's what we're looking to do. Come with some ideas.” Each of them got a time slot, and we, again, just had a conversation with them. For Turner Classic Movies – and I imagine this is the case with a lot of either networks or other brands – the number one thing that I look for in an agency is that they either already understand our business and who our customers are or have the capacity to understand that in a very short period of time. Certainly the agencies that I spoke with all got it. They came to the table with ideas around that. Now, they don't know all of our business, and that's completely to be expected. We didn't expect anyone to understand some of the internal ways that we connect with our audience. Those are things that as soon as we awarded the business, very early on we sat down and shared that. It may have even been at a late stage pitch that we shared it. But we're looking for an understanding of what we do and why we do it. If an agency gets that – because every agency we're talking to already has the technical capabilities. There's no doubt. There's a ton of talent. But it's a matter of, do you understand what we're trying to do? And then really understanding the logistics of who's going to be working on this and your process, the best way to establish how we communicate together, how we discuss the deliverables together, and who leads that on each side. ROB: That's a great client-side perspective. The empathy required, the value of reputation, the value of community engagement. It's so interesting. I'm in this mode now where people we're talking about working with – people still want to get together for lunch. In spite of, and maybe especially because we've all been in our houses for the most part for the past year, people are like “Let's catch lunch outdoors.” That's in bounds for me right now; some people are holed up. But geography, it seems, is still going to matter quite a lot. At least people will say, “I want a company with a local presence.” Nobody really even knows what that means sometimes, but it's what we want. STEVE: Again, there's so much talent in Atlanta. I think looking outside of Atlanta in most cases is really not necessary. The talent is here. It is really nice to have face-to-face meetings. We all know they'll be coming back. Even now, I've had several meetings outside at large picnic tables at a park or a restaurant with folks. That's really how you get to connect with people you're working with, especially on these types of relationships where it's really important that everyone understands what the objectives are together. I'm just a believer in face-to-face when it comes to things like that. I know certainly working remote right now has worked for many people, and even if agencies are local, they may have folks on your account that are in other cities. We worked with a company and that was the case; someone happened to be very talented on the digital team that worked out of South Carolina. And that worked out fine as well, but it was still nice to be able to have some reviews together in person. Again, I'm such a believer in Atlanta being this epicenter of culture and talent and tech, and that's who I want to work with. ROB: That's something for us all to think about as we start to emerge. Steve, you had some thoughts on some key lessons you've learned along your journey as a leader, as a marketer, as an executive. What would you reflect on if you could talk to your younger self about what to think about as you develop? STEVE: [laughs] I don't know where I'd start. That's funny. I think looking back, Rob – and it's such a great thing to do every once in a while, even if you're not talking about it to other people, but just to reflect on things you've learned. I can think of several in particular, and a lot of them are coming out of the Beach.com experience I had, but I think some of these apply throughout my career. Certainly engaging with customers to understand what it is they want, how they want to receive your information, when they want to receive it – you remember the beginning of that whole integrated marketing push? That's what people said integrated was. I think there's a through-line to everything we do now. There are so many different ways to receive information, so many platforms. But at the end of the day, if you don't understand what your customer wants and how they're going to react to what you're sharing with them, what that call to action is, then I think there's always going to be a miss. That's something I've learned that I took with me from those days on throughout the consulting and throughout my time understanding our audience at Turner Classic Movies and HBO Max. Next, I would say having someone that has either domain or IP expertise on your team or advising your team is so critical because again, that's the type of experience – when I was at Beach, we really would've benefited from having someone in the travel and hospitality business being a close advisor to us. I think we all thought because we were customers, we knew what other customers wanted, but we weren't seeing the big picture. I was just seeing it at the time for myself, married and two young kids, “This is how I vacation so everyone probably vacations like this. This is how we plan,” not knowing that that's a very small segment of how it's done. So I think having that advisor or having someone baked into the company that really understands – that domain expertise is critical. I would say probably the most important thing I've learned over time is just having a laser focus on what it is you're working on and really understanding both the functional and the emotional priorities of the business. And that focus isn't just for entrepreneurs; I think it's just as important in mid-size and large multinational companies. It's a challenge when you manage high-achieving and creative people. They always want to bring new ideas and new innovations to the table, and that's a great thing. That's what you look for as a leader. But I can't tell you how many times I said to my manager at Turner, “Look, this is only going to take 5 minutes” when nothing takes 5 minutes. What a lot of people don't realize, and it took a while for me to learn, is that it doesn't just take time away from what you're currently working on; there's an opportunity cost as well when you try to veer off the course – even to do something that wasn't necessarily in your plans, but eleventh hour, something popped up and you thought to yourself, “We should add this in.” Sometimes you need to make concessions and figure out a way to make it work, but I would say most of the time, all it's going to do is create a distraction. It's easy for that to happen. You could have marketing plans and then something like Clubhouse pops up and you're like, “We need to be on Clubhouse. We should create a room and get some experts to join us and talk about our product or service.” That might be a great part of the strategy, but if that's not what you were initially planning to do, then 9 times out of 10, it's better to continue to focus on what it is you were doing and then work that in as your next objective. I think that focus – I had on a whiteboard in my office at Turner the word “focus” for all 4 years before we got shut down and everyone worked from home. The word “focus” was in my office, and I saw that word every single day. Of everything that was written and erased and written and erased on the whiteboard, that was the one consistent thing. Never erased it. That was my constant reminder that nothing takes 5 minutes and that you've got to really keep driving those clear objectives and deliverables and not create unnecessary distractions. ROB: Right. It's such a good practice to, number one, not do something that's going to blow up in your face, and number two, not discard the thing you've already been very intentional about putting together. Steve, we normally wrap these conversations with a couple of different questions. I think they tie together for you. Number one is typically “Where should people connect with you?”; number two is “What are you excited about that's coming up marketing-wise?” I think you have those things linked together where we can get a much bigger dive into your mind and connect with you as well. STEVE: Sure. Again, this has been such a fun conversation. I would say in terms of the future and what I see, I don't think marketers should be thinking about things ever going back to normal. I think how we play and consume media, entertainment, food, healthcare, all of this, this whole sense of community is being redefined in front of our eyes. It's a generational opportunity that's going to impact customer behaviors from now on. It's not a trend; it's really a seismic shift that's going to resonate across the culture and economy and all of our personal and professional relationships. It opens up an opportunity to be more creative and more innovative than ever before, and I think there's going to be some things we've done in the past that we're going to have to decide to let go. Other things we're going to hold on to. Those are some of the things that excite me right now. I do think as a society, we need to get a little bit higher up right now. I think we need to work on making people feel less isolated and part of a community. I don't think that's going to go away when people can start gathering in small groups. The pandemic has exposed a real ripple in people feeling alone, and that's something that I think marketing can play a big role in: really helping people find their community or communities. Personally, I've had a lot of meaningful conversations since I left TCM and Warner Media, exploring high growth in entrepreneurial opportunities, looking to where I can create long-term value at scale and really do good. So that's what's on the horizon for me in terms of what I'm looking for. And then on the side, I started something really fun with my wife and some good friends of ours. We started an e-zine called The Fast Times. We always talk about how Generation X, which I'm a part of, sometimes gets the short end of the stick. We weren't born with a cellphone in our hands, and we certainly didn't save the world like the Greatest Generation. We just listened to really cool music and watched really fun movies and were latchkeys and came home to an empty house and made the microwave dinners and so forth. So we thought, what could we do to really have some fun with Gen X and the fringe on each side of younger Boomers or older Millennials? So we created this e-zine. We're sending it out once a week, and then a special edition on Mondays. It's taking a look at culture and how it intersects with both nostalgia from the '80s and early '90s and having this modern lens on things that are happening today. It's kind of with this smart snark, I would call it. It's the fun voice of the '80s, voice of that Gen X. Lots of sections in it like “We Got the Beat” and “Channel Z” and “Parents Just Don't Understand,” all very brand-driven throughout it. Ultimately, this may be a vehicle for sponsors and advertisers as our subscription base grows. But right now, we're doing it – I love reading. I read probably at least an hour a day and love writing, and it's a fun way to stay sharp and create something. Again, we'll see where it goes. ROB: Congratulations on that launch. Where do we go to find that? STEVE: You can sign up for that at thefasttimes.net. Even the address is nostalgic, the .net. Go ahead and sign up and give it a shot. We also are having a little bit of fun on social platforms, on Instagram and Facebook and Twitter. We hope you like it. ROB: That's excellent. Steve, thank you for coming on the podcast. Thank you for sharing. I certainly look forward to connecting back in person. I look forward to seeing what else you take on next. It seems like it'll be a natural continuation of a really good story, so thank you for sharing with us. STEVE: Thanks again, Rob, for having me. As I said, I really believe you're the epitome of this. Everything that people are reading about in terms of the surge in Atlanta, in the tech space, in the companies interested in coming to Atlanta, you're the epitome of this. You started Converge bringing in outside investment and then growing it here in Atlanta and being part of the innovative labs and teams here. This is exactly what it's all about and what everyone is hoping this unwritten story of Atlanta is, and you are a very early author of it. Thanks for having me. ROB: I appreciate that. You're very kind. There is a lot of good stuff going on here in Atlanta, and we'll keep on sharing it. Thanks so much for coming on, Steve. STEVE: Thank you. ROB: Take care. Bye. STEVE: Bye. ROB: Thank you for listening. The Marketing Agency Leadership Podcast is presented by Converge. Converge helps digital marketing agencies and brands automate their reporting so they can be more profitable, accurate, and responsive. To learn more about how Converge can automate your marketing reporting, email info@convergehq.com, or visit us on the web at convergehq.com.

Sales Funnel Radio
SFR 268: Myron Golden Teaches WHAT Keeps Us Back...

Sales Funnel Radio

Play Episode Listen Later Aug 13, 2019 36:29


He’s invited by some of the world's top salesmen to help them sell more.    He’s incredible...and amazing at it - I’ve learned SO much from him.    Every time he speaks, I take out a pen and paper...    (Hint, hint...cue, cue...to everybody here!)   Please take out a piece of paper and take notes!    This is a man who’s likely to make MORE money arrive in your pocket just by listening to him... ;-)   Mr. Myron Golden. Myron: Hey, Steve. How are you doing, man?    Steve: Fantastic. Thanks for being on here, man.   Myron: Absolutely my pleasure to be on Sales Funnel Radio, talking to one of my favorite trainers...teachers… ‘OfferMinds…’   Ooh, did you see what I did there?! ;-)   Steve: That's good!     Honestly, thanks so much for taking the time. The feeling is mutual.    I have notebooks upon notebooks from your things.    Every time you come speak...or anytime I’m at Inner Circle or one of Russell's events, I’d fill a WHOLE legal pad.    And thinking…     "Oh, man, that was amazing."       "No, that was better than the last."        "Oh, my gosh, they're getting better…”      Myron: You're kind, thank you.   Steve: You are just an incredible salesperson.    You have so much skill and so much knowledge...    I've watched you unplanned…    (...and I know you've done this multiple times!)    ….get up and pitch someone's product better than they pitch it to an audience that doesn't know you…   AND you'll make MORE sales than the actual owner of the product!   How do you do that?! I know that's a huge question, but that's amazing…   HAVING NO INHIBITIONS   Myron: First of all, how I do that in particular, is how I sell.    First and foremost, I have to believe in the thing that I'm selling. If I believe in the thing that I'm selling, then it's easy for me to sell it.    What I mean by that is...   Most salespeople don't even realize that they haven't gotten out of their own way yet.    Most people who sell things, whether they sell cars, or sell shoes, or sell online courses… or whatever...     … they believe that selling is doing something ‘TO’ people not doing something *FOR* them.    So first and foremost, I look at selling as a service.    I look at it as something that I do *FOR* people’ that makes their lives better. It makes the world a better place because people like me are selling.   So I don't have ANY inhibitions.    For example...a pitcher will have pain in his shoulder, and he can't throw the ball as fast, or a golfer will have pain in his back and he can't swing.    Because subconsciously, his body knows that, “This movement is gonna hurt me or hurt someone.”    Right?    When we are incongruent or when we have incongruence about selling in general, that makes it hard for us to sell things.    I think the thing that I have going for me when it comes to selling is that I have *NO* incongruence in me whatsoever.    If I feel like a product isn’t good, then I wouldn't sell it to somebody in the first place!    Does that make sense?    Steve: Yeah, that makes sense.   Myron: I get out of my own way.   Steve: And I mean, you've done that multiple times.    I saw you do that at Dream 100 Con.    I mean, you're the guy that Russell Brunson asks to come re-pitch ClickFunnels' amazing offer after he's pitched!   Myron: Yeah.   Steve: It's impressive.   Myron: I'm honored. I'm honored by Russell. I appreciate him more than I can say...  I've got so much belief in what he offers, that selling a Russell Brunson coaching program is easy for me to sell.   (...even though he doesn't consider himself a guru, okay? I'm gonna call him my bounce-back guru.)    Because I went out, made a fortune and had a lot of great things happen in my life.    And then…    I went through seven years of life devastation.   Like every year, major tragedy after major tragedy, of some kind, happened in my life.    ...from 2007 through 2013.    I signed up for another coaching program in 2014 and I just didn't like that kind of work.    I don't believe that the key to success is to find something you're passionate about and the money will follow.’’   I DON’T believe that's true.   Steve: I don't either.   Myron: But I do believe that…    If the work that you’re doing doesn’t match the person that you are, you will never create wealth or massive world change in that arena - because your ‘doing’ has to match your ‘being’.  Right?    The coaching program was great; they had a lot of people making A LOT of money...it just wasn't the kind of work that suited me.    After that in 2015, I joined Russell's Inner Circle and my life has been on an upward trajectory financially, ever since then.    Selling a Russell Brunson coaching program? That's like the easiest thing in the world for me to sell!    Because he is the one person who I can point at and say, incontrovertibly, has helped more people to become millionaires in a shorter period of time than ANY other human being I've ever known of.   Steve: Yeah, not even just “known of”. I've never heard of anyone doing that!   Myron: Exactly.    And he's not an MLM guy. He's just a guy who teaches you frameworks that work.    So standing up and selling his product is easy because…    I wasn't selling the product I was selling the payoff   ...and I know what the payoff is because I get paid from that payoff all the time!   So that's why, if I can look at something and it makes sense, then it's easy for me to see how it makes sense...    ...then it's easy for me to say HOW it makes sense in a way that's easy for people to receive.   Steve: It's powerful stuff! And you know what's funny?   I feel like there's a lot of people who are jumping in entrepreneurship…   (which is great!)   ….but they do it under this notion that it's NOT sales, it's “entrepreneurship”.    But  like,  “ Eh, entrepreneurship IS sales. It's a sales role."   Myron: Yeah, exactly.   Steve: And if you're lying to yourself about that, you're already a bad entrepreneur!   To be an entrepreneur is to be a salesperson.   Myron: Exactly.   Steve: How can people be better?    How can they get rid of the inhibitions around selling?   Myron: Let's start with this.    So as you just said…   The reason that people say, “I'm an entrepreneur, I'm not a salesman,"    (What does that even mean?)    ...that is because they think there's something inherently wrong with sales!    But I'm gonna fix that right now.    BLOOD & SALES   …. the people reading right now - they can agree or disagree.    If you disagree ...here's what I'm gonna say to you…   ”You've been wrong before… congratulations, it's happening again!”   So I happen to have some money in my pocket….   ….if you take some money out of your pocket, any amount of money… and you look at that money - just check it out - and you’ll realize that:    All of the money that you have...    All of the money you will ever have...   To do the things…    You desire to do for yourself...   For the people that you love...   The causes that you care about...   The only reason it's possible for me, you, or anyone else to ever have money is because somebody somewhere sold something to someone for a profit.    PERIOD.   (I wasn’t gonna go here, but I will…)   Money is like blood, right?    Money is like blood, in that, money is stored in a bank.    Where's blood stored?    Steve: In your body.   Myron: Well, no, it's stored in a blood bank.    Money is stored in a money bank, right?    Steve: Oh, I get what you're saying.   Myron: Blood is stored in a blood bank.    Blood has to be in circulation in order to give life to your body and money has to be in circulation in order to give life to the economy.   Steve: I love that.    Myron: Right? So money is very much like blood.  Blood carries oxygen to every part of your body.    Money doesn't really carry oxygen, but it does help you breathe.    … because when you don't have any money, you feel like you can't breathe.   Steve: That's true.   Myron: Right?    But also…    Money is a mass noun, just like blood is a mass noun.    Yesterday, I went and got some blood drawn - I didn't go get ‘A blood’ drawn, I got SOME blood drawn.    … even though it's singular, it's a mass noun.    So you have to put “some” (which is plural) in front of a singular word.    You'd never say "I gave A blood," because that doesn't make any sense.    I gave SOME blood. Well, guess what?    When it comes to money, you wouldn't say, "I gave A money..."   It's SOME money.    Money and blood are both mass nouns.    Money and blood are both fungible.    Q: Now, what does fungible mean?    Well, you drove my car when you were in Tampa.   Steve: Yeah, great car, beautiful car.   Myron: With my name on the floor mat.   Steve: On the floor mats right there, that was...wooooo!   Myron: I drive a Bentley Continental GT.    If I let Steve borrow my car, when he brings my car back, my car is NOT fungible.    It's a car, but he can't bring me back a Volkswagen Jetta and say, "Here Myron, here's a car."    You have to bring back the same car!    ...or at least the same kind of car in, at least the same kind of condition.   (Preferably my car, right?)   So if somebody borrows a car, a car is NOT fungible.    If somebody borrows my golf clubs...    (… I wouldn't let somebody borrow my golf clubs 'cause those are my babies!)      But if I did, it's like, "No, you can't bring me back some other golf clubs."    "Well, they're golf clubs! What difference does it make?"    No! Golf clubs are NOT fungible.    If you give blood at a blood bank and then get in a car accident, you need to go get some blood… they don't have to search through millions of pints of blood to find the exact blood you gave!   Steve: "Oh, here are your cells!"    Myron: Exactly.    They just have to find the same blood type.    It's like with money.    Money is fungible.    If you loan me $5, you don't care if I pay you back the same bill.    Or if you owe me $50 then you don't care if I pay you back a $50 bill. Or two $20s and a $10 or five $10s or 10 $5s.    You don't care.    Q: Why?    A: Because money is fungible.    As long as it's the same currency type (#American dollars), you don't care.    You don't wanna loan me $50 in American dollars and I give you back Costa Rican dollars.    That wouldn't work.    So…    Money and blood are very much alike.   So here's what you gotta realize.    The only reason any of us EVER have any money in our pocket to do…   The things we wanna do    The things we desire for ourselves    The things we desire for people we love or the causes that we care about    … is because somebody somewhere sold something to someone for a profit.    Here's what that means:    Just like money is the blood, it keeps the economy alive, money is the lifeblood of the economy.    Salespeople are the heart of the economy that keeps the blood flowing.    If you are in sales, free yourself from the idea…from this ridiculous Hollywood notion that selling is somehow doing evil in the world.    Hollywood does way more evil in the world than salespeople!   The government tries to demonize business and salesmen and entrepreneurs while they do WAY more evil in the world.     Here's what you gotta realize...    Being a person who is in sales (a salesman or saleswoman) is one of the most noble, honorable positions and vocations in the world.     You make the world go ‘round.   Once you realize how essential salespeople are in the world and how much joy they bring into the world?   Salespeople bring joy into the world!    Remember how good you felt last time somebody sold you a new car? Or somebody sold you a new house? You felt great!   Why?    Because they sold you something that made your life better.    Salespeople bring more joy into the world than almost any other profession.    So once you wrap your mind around what selling really is…   … that FREES you up from all those internal conflicts and incongruencies that create the cognitive dissonance that restrict you from going out and making your offers boldly.   Steve: I 100% believe that.   Myron: That was a long answer.   Steve: But it's an amazing answer.    It drives me crazy…. "Money's evil."    Money is NOT evil, money is an amplifier.    I feel like (most of the time) when someone is NOT good at sales, usually they need to redefine their relationship with money.    They have so many *false beliefs* around money.   Myron: Absolutely.   Steve: Do you find that to be true?    Myron: Absolutely.    I'm gonna say, money IS an amplifier, but I'm gonna add a caveat.   Because money IS an amplifier…    If you're bad, money will make you a worse person, or give you the opportunity to do more evil in the world.    If you're a good person, money will give you the opportunity to do more good in the world   HOWEVER…   Money itself is NOT bad, nor is it neutral. Money itself is good. Money is a good thing.   Steve: Right.   Myron: How can you say money is a good thing?    Q: What is the substance that represents wealth around the world since the beginning of time?    What's that substance?    Steve: Gold.   Myron: Gold, that's right.   Steve: Yeah.   Myron: Gold is the substance that represents wealth.    The first time gold is mentioned in Scripture is in the Garden of Eden.    Here's what God said, "And there was gold in that land, and the gold of that land is good."    Now, wait a minute, wait a minute!    Help me understand something here.    The Garden of Eden is a place where all the food is free.    The Garden of Eden is a place where there were only two people who ever lived there, Adam and Eve, (last I checked, they were married to each other).    There were no stores, there was nothing for sale, and yet God put gold in the Garden of Eden and then, He made sure He told us it was good.   Money is good. It's not neutral. It's not bad. It is inherently good.    You can do bad things with money, but it’s inherently good.    A car is inherently good - it's not bad to not have to walk everywhere you go!    It's good to be able to get places faster and it gives you the ability to save time and put more experiences in your life.    But people have run over people intentionally with cars!   You can do something bad with something that's good but it doesn't make the good thing bad - it just means that a person did a bad thing with it.   Steve: And the person did it, NOT the car, or the gold, or the object!   Myron: You know how you talk about the Capitalist Pig it really irritates people?    THIS MAY OFFEND YOUI'm gonna say something that really irritates people.   Steve: Yeah.    Myron: I'm not attempting intentionally to offend anybody (that's not my intention) but if they get offended…. they should probably grow up a little bit!    So the government talks about gun violence, right?    Steve: Yeah.   Myron: Oh, there's no such thing as gun violence.    I know, I just lost a bunch of people....but I lost the ones I wanted to lose.   Steve: Sure.   Myron: Okay?    There's no such thing as gun violence. I have a whole bunch of guns, not one of them is violent.   (I know I just lost a bunch of people… but I lost the ones I wanted to lose)   Steve: Me too. It's so funny, they're just sitting there and they never harmed anyone.      Myron: They don't do anything to anybody.   They just mind their own business!   In fact, they don't even mind their own business ...because they don't do anything.    They just sit there until I go to the range and I practice.    There's no such thing as gun violence, it's people violence and some of those people use guns.    Nobody talks about...   Steve: Car violence.   Myron: Car violence.    Nobody talks about fist violence.    It's stupid, it's like saying, "My stupid pencil failed that test."    *Your pencil didn't take the test*    Steve: I'm gonna use that one!    I wish I would have known that when I was in elementary school, hah.    “My pencil's broken!”   Myron: "My pencil...I can't believe this... What kind of pencil is this?!”   Steve: So we've gone through and said, “Okay, in order to get better at sales, you really need to embody…” Myron: You have to fall in love with it.   Steve: Sales are incredible.   Myron: You have to fall in love with it.   I love sales and salespeople.    Pray for salespeople every night when you go to bed. Thank God for them every morning when you wake up.    Stop being, "I can't believe that person tried to sell me something."    When somebody tries to sell something to you, get excited about it and watch their process and see what you can learn.   Instead of , "I can't stand these stupid infomercials. I can't stand these stupid commercials….”    I like infomercials… I really love them!    Steve: Me too! I watch them for fun.    Myron: Goodness, they're so entertaining!   I'm like, "Ooh, that is such a great idea!"    Steve: Oh man! So we’re saying …   THE STRUGGLE IS NOT REAL!   Number one: You can't even learn any of the skills or real tactics that you teach if you can't even accept the fact that…    Sales ARE good.   That money IS good.   Myron: Absolutely, absolutely!    And that you are doing good in the world when you sell things to people.    Do you understand that people only buy something because they value the thing they're buying more than they value the money?    It's kind of amazing when you think about it.   Steve: Yeah, money is GOOD. Sales are GOOD.    I'm writing down some of the notes here...    What else would somebody need to do?    I mean these are all major foundational pieces before you even get into tactics…   (or even things that you'll be speaking at OfferMind about)   So what else can somebody do to just increase their sales?    They're like, "Hey, I've got those things, I know sales are GOOD. I know money is GOOD."    What would be the next step?    Myron:    Realize that the struggle is not real, it's imagined.    “But sales are SO hard!”    No, no, no, no, that's just a story you tell yourself.    Sales are NOT hard, you're just NOT good at it.    I love what Jim Rohn said his mentor told him.    He said, "Mr. Rohn, Mr. Rohn. Don't wish it were easier. Wish you were better."   Steve: Ohhhhh...there's some zing on that!   Myron: That's juicy, ain't it?    Steve: It's a little sting, there. A little spicy.   Myron: Yeah, he was like, "Sales is hard."    No, no, no, no. It ain't the problem.    Sales are not hard. Sales are really, really easy! You just don't know how to do it.    Jim Rohn said his mentor, Mr. Earl Shoaff asked him, “So how much money do you make?"    He said, “Well, I don't make that much. I'm broke.”    His mentor said, “How is it that you, being 26 years old and a healthy American male...and you're broke?”    He said, “Well, I can't help it. This is the job I have. This is all they pay.”   His mentor said, “Well, now Mr. Rohn that's not true. Let me ask you a question. Are there people who work for your company that get paid more than you get paid?"    He said, "Yes."    His mentor said, "Well then, that's not all they pay. That's just all they pay YOU."   And I said, "That is so good!"   Steve: I totally I can hear his voice as you say that. You do it well!   Myron: That's all they pay *YOU*    So what we have to realize is…    Mr. Rohn said, "It's too expensive."    "No, Mr. Rohn. The problem is not that it's too expensive. The problem is that you can't afford it."    We always wanna blame it on something outside of ourselves.    We always wanna relieve ourselves from the responsibility to do the thing, but the reality is... the reality is that sales ISN’T hard…   “…I just haven't learned how to do it yet!”   I'm gonna tell you something, Steve.    I have NOT always been good at sales.    When I got started in sales in 1985 selling insurance and investments through a company called AL Williams, I was not even good enough to be bad yet.    I was so bad, I was worse than bad!    I got started in October of 1985 and I did not make my first sale until April of 1987.    I was working and doing presentations... and I was woefully awful.    See, here's what happens.    Most people are not willing to be bad long enough to get good.   I was making offers and doing presentations from October of 1985 to April of 1987.    (By the way, if you're counting that's 18 months before I made a single, solitary sale.)   Shortly after I made that first sale, I became the top salesperson in our office month after month after month after month.    Some of you will say, "Well, Myron. How did you do that? What was it that changed for you, that took you from not being able to make the sale, to being the top salesperson in your office?"    *EASY*    I ran out of all the ways that wouldn't work.   Steve: Mat time!   Myron: The only thing I had left? The ways that it WOULD work.    It's so amazing, Steve.    People resist the only activity that can help them get better at the thing they are desiring to do.   They'll create all kinds of creative avoidance around not doing the one thing, i.e.,    Making offers   Doing presentations.   DON’T HIDE   I'm gonna tell you something, I've got a young lady who's in one of my high-end coaching programs.    Her name's Eileen, I think you met her.    This particular coaching program is $40,000 and they have to put at least half down and then they get on weekly bank drafts, right?    So she's like, "Myron, I really wanna get in this and I don't have the money. I don't know what to do."    First of all, she came to me and she didn't hide from me.    She came to me and said, "I don't have the money. I don't know what to do. What should I do?"    I'm like, "This person's gonna be awesome."    … because when they didn't have the answer, they knew there was an answer…   ... and so they ASKED for the answer instead of avoiding the place where they could get the answer.   Steve: Yes. I'm a student of exceptions.    If you don't have the means, or you don't have whatever...    JUST FIND ANOTHER WAY.    It doesn't mean that you're blocked!   You keep moving!   Myron: Yeah, exactly.   Here's what I told her:    "Eileen, you already have a $4000 offer. Raise the price to six and make more offers.    In fact, take the people who are in your current database right now and give them a date at which you're gonna raise your price to $6000 and give them an opportunity to get it now for only $4000.    Raise your prices."    I said, "Then the second thing you wanna do, raise your prices and make more offers."    Now, here's what make more offers means to me: *Collapsed timeframe*.    Take the number of offers you would do in the next year and do that in the next month!   Take the number of offers you'd do in the next month and do that in the next week!   Take the number of offers you'd do in the next seven days and do that many offers today!    You will have the money in less than 30 days.    She called me a week later, "Myron, I have the money."   Steve: That's SO cool.   Myron: It’s something as simple as “make more offers”.    I can tell you story after story. That's not unusual, but it is unusual to find people who are willing...   To make an offer!    Adjust the offer and then make that offer to another person when somebody says no to their offer   Make that offer just the way it is to 10 more people just to see if the problem is the offer... OR if it’s just the way they're offering it.   Steve: Right, right.   Myron:    Most people won't allow themselves to stay in the game long enough to figure out how to win the game.   Steve: You know, it's funny. I went back and I recounted how many tries it took me... and it was 33 failures over six years!    It was painful...   Myron: Well, why didn't you quit?    Steve: Right? Yeah, I know.    Someone was like, "Why did you think you could keep going like that?"    I was like…   I realized that failure is largely made up. You just learn. Everything is progression. It's not win-lose, it's just progression.   Man, I had a lot of garbage in my own head around the beliefs in money that I had to overcome.   Myron: Absolutely.   Steve: Before I could even sell what I was making in the first place.   ALL WORK *WORKS*   Myron: Absolutely.    What's really interesting that a lot of people don't realize?    They'll say, "But Steve, it's not working! But Myron, it's not working!"    I say, "Okay, first of all, let me help you understand something. All work WORKS."   Steve: I'm gonna put that on my ceiling!   Myron: All work works. There's no such thing as, "I did that thing, and it didn't work."    Oh, it worked.    "No, no, but I made the offer and nobody bought."    It still worked.    "Well, if I made the offer and nobody bought, how can you say it worked?"    See, work is a two-sided coin.    Q: What are the two sides of the coin?    There's the work I do on it    There's work it does on me.    When the work I do on it doesn't do what I thought it would do...then the work it does on me ALWAYS does what it's supposed to do!   I know all work works.    So when I'm working on something that seems like it's NOT working, it's still working on me.    It's so interesting, we were talking about how you had six years... six years you tried all these different things and none of them "worked."    You had six years of failure, about 30-some odd failures but here's what we as human beings fail to realize.    Repetitive use of a limited ability will always produce an increased capacity.    What do I mean?    If I wanna get in shape and started doing push-ups, and I wanna do 30 push-ups, but I can only do five, here's what happens initially after I do five.    The next day I can only do three, right?    Because push-ups, in the beginning, don't make you stronger at first, they make you weaker because of fatigue.    So people think when they become fatigued from the activity that they wanna get good at, they think that means it's NOT working.    But you have to do it over and over again.    Repetitive use of a limited ability will ALWAYS produce an increased capacity.    Unless you do the activity repetitively, it cannot increase your capacity to do that thing.    Eventually, if you do five push-ups today, and three tomorrow, and then five the next day, and then three the next day, and five the next day... all of a sudden, you get down one time and then it’s 21.    Where did that come from?    Repetitive use of a limited ability will ALWAYS produce an increased capacity.    Over that year and a half when I was making presentations and nobody bought, what I didn't realize I was learning two very valuable lessons.    I was learning how to NOT work for money.    I was learning how to hone my message and how to adjust my approach and then go back and do it again.   And that's what I mean when I say I literally became the top seller.    Went from a year and a half no sales...to making a sale...to top salesperson.    “How did you do that?”    I ran out of all the ways that wouldn't work. The only thing I had left were ways that would work.   Steve: I totally get it.    It's kind of the same thing for me... after a while, I was like, "I don't know how else to be bad, or make it not produce cash.”   Myron: Exactly.   Steve: So just so everyone else can see, I've taken so many notes that I even turned the page…   ….now I'm going down this side of the page with notes!   I have so many notes and what's funny is that I've listened to you speak so many times...    Every time I hear you speak, more and more comes out!    I have a greater understanding of why I behave the way I do.    Not just, "How do I sell more?"    It's, "How do I actually behave better?"    It's really fascinating and I want to thank you for that.   Myron: Absolutely, my pleasure bro.   Steve: So you're gonna be teaching a lot of stuff at OfferMind and you're gonna come speak...   Myron: Yes.   Steve: And at the point where you're gonna come speak, people should have a great idea of what their offer actually is.    The core offer, what they should be doing.    Horse blinders on about everything else and just hyper-focused on that one core offer…which is what I'll be doing on the first day.    But you're gonna come in and teach them how to offer the offer.   Myron: How to offer the offer in a way that people expect it.    So many people make the mistake of thinking that the offer is their person.    What do I mean by that?    What they'll do is say, "Well you'll get so many hours of my time."    I say, "How many hours of your time?”    What I want less than hours of your time is for you to have hours of my time!   Steve: Right.   Myron: Okay? So they'll sell their person.    They'll sell their pieces, "Well, this has got five books, 17 videos and 47 audios."    Well, nobody cares about the pieces.   Steve: No, I don't want that.   Myron: Nobody cares about the pieces.    They'll sell their process.    It's fine to teach people the process after they've taken advantage of your offer, but don't sell them the process!    If you sell them the process then they're not gonna buy it.    I'm gonna teach you how to offer the offer...    Q: ...and so how do you offer the offer?    When you're selling to somebody you don’t sell them the process, you only sell them the payoff.    You don't sell them your person, you don't sell them the pieces, you don't sell them the process.    Q: What do you sell them?    You sell them the payoff and you use a concept that I call Emotional Cooperation.    After you use Emotional Cooperation… (and I'll teach you what that means when I get there - at OfferMind…)    ...then you use what I call Logical Justification.    When you combine Emotional Cooperation with Logical Justification, you become what I call a Psychological Artist.    You can hang pictures in people's minds for them to refer to that help them see your offer in a more favorable light. OFFERMIND???Steve: That is powerful stuff and I’m taking notes like CRAZY.    If anyone's watching or listening to this now, and they're like, "Will OfferMind be worth it?"    ...first of all, if you're NOT convinced by now… I don't know what to tell you!    What would you say to somebody who's like, "You know what, I don't know if I should show up to OfferMind?"   Myron: What does that mean?    Steve: Right.   Myron: No, no, I know what you mean.    I'm like, "I don't know if I should show up for OfferMind?"    Some of the greatest marketing and sales minds in the world alive today are gonna be there teaching you how to get BETTER at creating offers, and offering those offers…   ...if you don't know if you should be there…? Perhaps we should come get your family and take them to safety!?!   It's that kind of deal.  THE TWO THINGS...One of my old mentors, Charlie "Tremendous" Jones... I love that man and he was so amazing.    He changed my life in so many ways.   Steve: Oh, I didn't know he was! Oh, that's cool. Wow.   Myron: Oh yeah, I knew Charlie.   Steve: Oh, that's amazing.   Myron: Yeah, I knew Charlie.   Steve: Cool.   Myron: He lived in the same town as me. I used to go visit him.   Steve: That's amazing.   Myron: Like, I would go hang out with him.    Charlie used to say:    Your life would be the same 10 years from now as it is today, except for two things, the books you read and the people you meet.   When he said, "The people you meet", he is talking about the people you associate with.    I have found that NOTHING in this world ... in this life...changes your life for the better like going to live events.    Live events are my vibe.    I get to meet people and interact with people.    If I had never gone to Funnel Hacking Live, I wouldn't even know you and we wouldn't even be having this conversation right now.   Steve: No, definitely not.   Myron: When you were at Funnel Hacking Live in San Diego, 2016 and I was at Funnel Hacking Live 2016... I don't even know if I remember meeting you.    Do you remember meeting me?    Steve: No.   Myron: Probably not. No.   Steve: No, no.   Myron: Probably not, right?    We were both there, just as attendees.     And now you're having your event, and I'm coming to speak at your event!   You learn from me, I learn from you.    We make each other's lives better and we help each other's students, it's like...    ...does it get any better than that?!    Steve: I don't know?!   Myron: You will meet joint venture partners and they can open doors for you that you can't open for yourself just by going to live events in general...    But OfferMind! Like really?!!    I mean where will an assembly (other than at Funnel Hacking Live) of this level of marketing and sales genius be converged in ONE place at the same time other than OfferMind?    If you're not there ...where else would you be?!    Steve: I don't know? I've asked the same question.    I'm like, “I don't know why you wouldn't show up to this, it's pretty ridiculous…”   Myron: Your life will change.    I love what JR Ridinger used to say, he is a guy who is the president of a network marketing company I used to be a part of.    He said, "You can change your life in two days."    How long is OfferMind? Two days or three days? Two days?    Steve: Two days.   Myron:    You can change your life in two days. You can get more accomplished in two days than you get accomplished in a whole year by being smart enough to get yourself to that next event. Steve: There’s something about it...   Myron:    It collapses timeframes   It gives you a synergy    It gives you a level of focus that you can't get...that's diffused when you're out here doing your own thing in the workaday world.    When you come into a space where there are that many people focused on sales, focused on marketing, focused on offer creation, dude, it changes everything.   Steve: Yeah.   Myron: Yeah, I'm speaking at OfferMind.    But I'm not just going to OfferMind 'cause I'm speaking, I'd be going to OfferMind if I wasn't speaking.   Steve: Yeah.   Myron: Let's not get it twisted, ladies and gentleman.    Steve needs to go to events, I need to go to events, Russell needs to go to events.    The teacher who has stopped learning has lost his right to teach.   Steve: Okay, amen.    I think about like wings on a plane.    I tell everyone, if you're being coached by someone who's not also being coached, stop listening to them!   They're not practicing the very thing they're teaching you.   Myron: Absolutely.   Steve: Get away from them.     Myron: Absolutely.   Steve: Oh man.   Myron: Don't get stuck like Chuck in a pick-up truck.   Steve: Well hey thanks so much for being on here, thanks for being in Sales Funnel Radio.   I'm just incredibly excited to have you on.   Myron: Me too.   Steve: Guys, go to OfferMind.com and grab your ticket.      By the time while I'm saying this right now, we're pretty much out of VIP seating -  stuff is filling up very quickly.    Go get your ticket and we'll see you September 2nd and 3rd!   You’ll get to listen to Mr. Myron Golden teach you how to offer the offer that I'm gonna teach you how to build on day one.   Myron: May I borrow one of your words?    Steve: Yes.   Myron: BOOM!   Steve: BOOM!   BOOM!    If you're just starting out you're probably studying a lot. That's good. You're probably geeking out on all the strategies, right? That's also good.   But the hardest part is figuring out what the market wants to buy and how you should sell it to them, right?    That's what I struggled with for a while until I learned the formula.    So I created a special Mastermind called an OfferMind to get you on track with the right offer, and more importantly the right sales script to get it off the ground and sell it.    Wanna come?    There are small groups on purpose, so I can answer your direct questions in person for two straight days.    You can hold your spot by going to OfferMind.com.    Again, that's OfferMind.com.

Secret MLM Hacks Radio
93 - Our Past Doesn't Reflect Our Capacity

Secret MLM Hacks Radio

Play Episode Listen Later May 22, 2019 18:50


I'm very excited today and I have a very special guest.   This is somebody who had been an extremely active participant in the community and, honestly, I get excited every time I see you comment.   I'm very, very pumped to have you on today. Please welcome to the show, Tricia Robino. Very excited to have you.   GUEST FROM THE SECRET MLM HACKS COMMUNITY   Tricia: Very excited to be here Steve. Thank you so much for having me.   Steve: This is going to be awesome.   A few weeks ago we were looking through and thinking “Now who would be really fun with a cool story to just bring on the show?” And immediately, Coulton was like, “Oh my gosh, you got to get Tricia on”.   That's exactly when I reached out and I’m so glad you that you could make it. Thanks for jumping on.   Tricia: Yeah, no problem.   Steve: Just so everyone gets to know you a little bit. How did you get started in MLM?   Tricia: Well that's a great story, because I'm in the wellness space just like you.   Steve: Nice.   Tricia: Just after my son was born, which was 40 years ago, I got out of shape. So I was trying to get back into shape.   I got really super hooked on the wellness industry. I was an aerobic instructor and then owned a health club.   What it came down to was, I really wanted to make money doing what I loved and so I thought it was going to be the health club.   I really wanted success and I really wanted to feel good and have people think I was doing something really, really cool. Because all my brothers and sisters, they're like CFOs, they're lawyers, they're dentists.   Steve: You have an unofficial bar, right?   Tricia: Exactly. I had this bar and so believe it or not, owning a health club was cool. And I actually was able to make money. At one point I made $10,000 a month.   Steve: Cool.   HOW DO YOU KNOW YOU’RE MAKING IT AS AN ENTREPRENEUR? Tricia: That's kind of how I was making it. But what happened was ... Have you ever heard of this big company called 24 Hour Fitness?   Steve: No.   Tricia: Yeah, right. They opened in San Leandro. I'm in Oakland, CA.   They opened 20 minutes away from me. It exploded and this space was very difficult to make money in. I mean it was super, super hard.   And so, I went bankrupt.   Steve: Sure.   Tricia: So like all good entrepreneurs, I filed my bankruptcy.   I had to do it, but it was pretty devastating.   It was embarrassing to be quite honest with you.   My son looked up to me, I was embarrassed. It pretty much devastated my life at that point. I got a divorce. I mean it was just like that whole story of everything just fell apart.   I had $267 in the bank. My dad had to bail me out. I had to write that letter to my sisters to see who could help me.   I mean it was just really, really, rally hard.   Steve: Oh man.   Tricia: But I didn't want to get a job. I quickly realized I loved working for myself and I did not want to get a job.   I would've rather lived underneath the bridge than have to work for somebody else.   But I needed to make money... And what did I know how to do? I knew how to grow a business. I had been growing business for 13 years.   So I worked as a business consultant. Which is another way of saying, “You know I don't have a job, I don't have anything, so I'm just going to help other people make money.”   I remember the day when I picked up this book called “Rich Dad, Poor Dad.”   DO YOU LOVE WORKING FOR YOURSELF?   Steve: It's the gateway drug for every entrepreneur.   Tricia: So I read this book called "Rich Dad, Poor Dad" in about three trips to the bathroom. It was like I was glued to this.   I realized that I wasn't a gym owner. I wasn't an aerobic instructor, I was this thing called an entrepreneur.   And that's when it really sunk in that I was an entrepreneur and he talked about network marketing.   I'm one of those guys that literally started looking for a network marketing company. I've been in network marketing of 16 years.   I was looking for a network marketing company. I literally recruited my upline to get me into the business, and I was 53.   So side note, I did not quit my job, which is what I always recommend to everybody. Get excited, but don't quit your job yet.   So I didn't quit my job, I kept working, but I was just in love with the whole industry. I jumped in, hook line and sinker, worked part-time with a full-time attitude.   Back then we had this incredible system, which was about lead generation, and I really loved that system because we called it scrubbing the leads.   We would have a lead come in, but we had a system where they would get more and more interest. They had to jump through hoops to get to the next level, so I knew that they weren't just sort of kind of interested.   Steve: This person's actually serious versus kind of dabbling.   Tricia: Because of the system, I was able to move up our marketing plan really fast. Everybody has different levels in their marketing plan. In 4 years, I got to the 1%.   BUILDING A SUCCESSFUL COMMUNITY   Steve: Oh wow.   Tricia: Yeah, through a system.   Steve: Wow.   Tricia: Which was great. It was fast, but really slow at the beginning.   Steve: Sure, it felt slow I'm sure.   Tricia: It felt like I couldn't get to making even $3,000 a month.   I couldn't get to that point where I really felt like I could quit my job and literally I didn't quit my job at the very beginning because I knew that I wanted to advertise.   I've always believed in advertising, I've been an entrepreneur for a very long time. So I wanted to make sure I had some wiggle room right there.   I was finally able to quit my job. We do a lot of personal development. I hear you, I was at Funnel Hacking Live 2 times, I've been to Offer Mind, I've been to Boise to see you, so I know that you're in to that too.   Jim Rome worked with our company for years and years. So I had a chance to meet him, get to know him, spend some weekends with him.   Personal development was another reason that I moved up the marketing plan. Then things changed, right?   I've been in this industry for 16 years. Here's the thing, if you don't expect it to change, you're not going to do very well.   I change all the time, right? And to be honest, that's what makes it fun for me.   Steve: Yeah, me too.   AN ENTREPRENEUR LOVES CHANGE   Tricia: If you're an entrepreneur and you like change, then just keep your eyes open. So that's what I've always done.   Our model kind of changed to the point where it was more face to face. People were starting to do lots of fit camps and opening up nutrition clubs and things like that. You know I did it, but I didn't love it.   Steve: Yeah, it bothered you a little.   Tricia: I do networking marketing because I like the time freedom, I want to work from home. I travel, that's one of my passions.   You know, I really want to be able to travel and do the things that I love. It's a great model, it really works, I love face to face.   I was hearing people from the stage, all these different network marketing companies and doing so much with social media and I'm like “This really sounds like fun.”   About a year and a half ago, I got my first ClickFunnels account and that's where I heard about you. When we had the round tables and I was trying to squeeze my way into your table.   Steve: That's right as I was standing on the chair screaming?   START WORKING ON YOUR BUSINESS!   Tricia: Yeah. But I still liked you anyway. I was like "He's my kind of guy."   I started to become acquainted with you and then as soon as I got home, I think pretty much after I got home is when you launched Secret MLM Hacks. And I was like, "Well, of course I've got to sign up for that”.   We completed the whole thing. I mean we were just like "Okay, let's do this, and we've got to do this, and he's closing it down." I can't remember what it was but-   I just have notes, upon notes, upon notes. I did it ALL.   Steve: So what's happened in your business as a result of it?   Tricia: As a result of it, I have been able to really focus on completely working online.   Steve: That's awesome.   Tricia: And I've been able to duplicate it too. I published a book and right now, I'm just finishing up. I hacked your funnel.   Steve: Good.   Tricia: So I'm just finishing up. The FREE plus shipping.   Steve: Nice.   Tricia: It's actually done. I have to just do the final touches.   Steve: Sure.   Tricia: I hooked up with Anchor and started a podcast.   Steve: Nice.   Tricia: I've done a 5 day workshop with a quiz and there’s a funnel for that.   Steve: Wow.   Tricia: I have almost finished a membership funnel. I'm working on my application funnel. I haven't completed that yet, but I have started on it. I'm doing monthly events.   WORKING ON YOUR SALES FUNNELS   Steve: For your team and such or is it for bringing in new people?   Tricia: It's to bring in new people.   Steve: That's awesome.   Tricia: I'm doing 5 day wellness workshops.   Steve: Oh cool.   Tricia: In fact this one workshop, this one group, I have over 1,100 people in it right  now.   Steve: Wow! Holy cow.   Tricia: Yeah, so that's good. I've been creating a community of brand new people. I have a community of product users. I've got a community of people who are moving up the marketing plan. I have a community of my builders. I’ve really focused and really heard you when you say it's not the WHAT, it's the WHO.   Steve: Yeah.   Tricia: So I've really been working on my WHO.   Steve: That's so cool. You've got more audiences that this has let you bring in. You can train them more. Has it helped you sell more product so far?   Tricia: Yeah, absolutely. But within the framework of how we can sell the product I have, that's going to be part of my free plus shipping for my book.   Steve: Nice. Yeah, okay. I love that. Put something in the front, you sell it all on the back anyway. Totally love that.   Tricia: Exactly. Yeah, so that's worked out really, really good.   ARE YOU NERVOUS ABOUT BECOMING AN ENTREPRENEUR?   Steve: What would you say to somebody then who's getting nervous about trying this?   This whole concept of the internet plus MLM is so foreign to so many people. What would you say to somebody who's nervous about that?   Tricia: About the internet?   Steve: Yeah, just about using it. All the tools we have, so many people are so scared of it.   Tricia: Here's my note. It works for me, and I've been able to validate those numbers and that is one of the things that I'm keeping close track of.   How much money do I spend, how many leads do I get, how many people go through my funnel, what's the end result, how much money am I making? We have people moving like they've never moved before, using social media tools.   Steve: Right, they're on fire.   Tricia: They're on fire and it's the next... I'm not even going to say it's the next new thing, it IS the new thing.   I would do it because you get everybody prepped for it. It's like you have to create the attractive character. People don't know that they're cool, you know? I didn't know I was cool until I put on my green glasses, was just myself, no apologies for anything, just have fun.   Steve: What does your upline think about all of this?   Tricia: I've got real supportive people in my organization. In fact, the person that first mentioned ClickFunnels to me, was my upline.   Steve: Oh that's awesome.   Tricia: That's never been an issue at all.   THERE ARE DIFFERENT KINDS OF ENTREPRENEUR   Steve: That's so awesome.   One of the big things that I hear from people when I'm talking to them about this or they're starting to see what it is that I'm proposing and they're like “What, this is so foreign.”   One of the biggest things that I hear from people, and you just kind of touched on it a little bit but they say things like “Steven, I'm nothing like you. I don't want to have to be like you in order to have success in this.”   I'm like “Whoa, that's not at all how this works, you know. You get to be you, LOUDLY"   Tricia: Not only do my clients need different personality types, and they are going to be different personality types, we all enhance each other.   In network marketing we work together and so therefore, if you have members of your team in there with new people, then the new people have everybody's story.   THE MOST VALUABLE PART OF THE SECRET MLM HACKS COMMUNITY   Steve: What would you say has been the most valuable thing so far that you've gotten from the program?   That you've actually been able to use and apply, and you're like, "Wow, that was good."   Tricia: I hear you in my head all the time. But this is something that you said at Funnel Hackers, because I was just in Nashville.   You said at Funnel Hackers and that is, “Just do the next thing.”   Just take the next step, and that is how you have set up the whole training. Especially after I have completed the program, it's like “Okay, just build one funnel. Make it good.”   Right? Then the next step is whatever that is. And when I think about “Oh Steve just says just take the next step,” I don't have to get this whole thing figured out. I just have to go to the next step, I have to get this funnel finished and launched.   I have to do the marketing for it. That's the next step and I think for me, especially as an entrepreneur, I just want to gobble up the whole horse, I think that's the thing that I hear you saying in my head the most.   Steve: Absolutely, well thank you so much and we really appreciate it. Any parting words?   Tricia: I do have one parting word, because we can make up stories about being too old or we can make up stories about not understanding technology and I just want people to understand that's just a story.   It's just a learning curve and there's so many people that are out there to help you, just dive in. Just dive in and have fun. That's the big thing, you know? Make it a fun experience.   JOIN THE SECRET MLM HACKS COMMUNITY   I know it's tough to find people to pitch after your warm market dries up, right?   That moment when you finally run out of family and friends to pitch. I don't see many up lines teaching legitimate lead strategies today.   After years of being a lead funnel builder online I got sick of the garbage strategies most MLMs have been teaching their recruits for decades.   Whether you simply want more leads to pitch or an automated MLM funnel, head over to secretmlmhacks.com and join the next FREE training.   There you're gonna learn the hidden revenue model that only the top MLMers have been using to get paid regardless if you join them.   Learn the 3-step system I use to auto recruit my downline of big producers WITHOUT friends or family even knowing that I'm in MLM.   If you want to do the same for yourself, head over to secretmlmhacks.com.   Again that’s secretmlmhacks.com.  

Secret MLM Hacks Radio
89 - Increasing Team Volume...

Secret MLM Hacks Radio

Play Episode Listen Later Apr 17, 2019 31:58


*increase team volume, secret mlm hacks, teach your downlines, the power of the internet   Listen to a recent Secret MLM Hacks course member, Nick Bradshaw, as he tells us how is team volume nearly 20X'd after using these modern MLM recruiting principles...   INSIDE SECRET MLM HACKS   This is an interview that I've done with one of my good, Nick Bradshaw. He's got his own show but he wouldn't tell me what it is. You should track him down and ask him.   We have about 500 people in the Secret MLM Hacks program. For the next few episodes, I'm actually going to share with you guys some of the interviews I've been doing with people who are in the program and share what's been happening.   Nick  has almost 20X-ed his team volume since using the Secret MLM Hacks methods, which is crazy. I didn't know it was that much! I thought it was just doubling, not 20X!   He's going to walk through and talk about how he's been using this stuff and teaching the same strategies to his downline, which is ultimately what's been my goal in creating this stuff.   It's not so that everybody has to join Steve Larsen. It's so that you can learn how to do this stuff on your own and then teach your downlines and explode stuff.   A lot of MLMs are refusing to be influenced from the top down on the strategies that I'm teaching. I'm just telling you… This is the landscape of the atmosphere that we're in around here.   A lot of big MLMs are not wanting to take on some of the strategies like the internet, which is ridiculous. It's because they don't know it themselves. They don't know how to train or teach on it.   The strategy I've been teaching is actually to go from the bottom up. It's for the little guy.   HOW TO TEACH YOUR DOWNLINES   Secret MLM Hacks has been focused on training from the ground up. I don't care what MLM in you're in. That's why I'm not here pitching you guys all the time. I'll drop every once in a while what I'm in if you guys are interested, but that's not the purpose of it.   The purpose of it is for me to go and influence MLM from the bottom up. To hand tools to people inside of MLMs from the bottom up who can go reteach it to their people and explode past their uplines.   That's been the point and it's been working. We've had a lot more MLMs reaching out, asking things like, "Would you come build funnels for us?" I'm like, "Where were you when I was talking about it earlier?" It's flipped the whole table on its head.   I have a very special guest today. Somebody I have been watching and seeing everything that has been going on... And I've been impressed.   There’s not many people in MLM who use the power of the internet. I've got a very special guest for you today. It's very easy to see who is in MLM online because there aren't that many. When I first saw other people doing it I was like, “Oh my gosh I'm not alone!” I was so excited about it.   I want to introduce you to and welcome Nick Bradshaw.   SECRET MLM HACKS INTERVIEW WITH NICK BRADSHAW   Steve: Hey man. Thank you so much for being on here.   Nick: Dude it's been absolutely my pleasure. It really really is.   Steve: It's gonna be awesome I'm pumped for it. Just so people understand more about what you do, tell me when you first got into MLM?   Nick: I've been in the MLM game myself about two and a half years. Funny enough, my wife is actually the one who started all of this and I jumped in halfway through. It's really skyrocketed and taken off from there.   My wife's been doing this for about five years. And during that time I was actually a car salesman. I was working 60 - 80 hour workweeks, every single week.   When I started in car sales I had one kid and then next thing I know, I had two kids. I blinked three times and next thing you know I'm sitting next to a six and four year old kid. I'm like, “Where did all the time go?”   I was burnt out on it. I had set all these goals and I had reached the goals. I had worked my way up the corporate ladder so I could provide for my family and let my wife be a stay at home wife.   I got to that roadblock that said, “Where do I draw the line of how much time I'm spending at work versus how much time I'm spending at home?”   From there it was like, “Alright, well what do I do? How do I remedy this, how do I fix it?”   Steve: Something's gotta change, right? We've gotta shake it up a bit.   WHAT IS INSIDE SECRET MLM HACKS?   Nick: How do I be a better father to my kids? How do I be the father that I want to be rather than just the provider and someone that my kids don't even know? I was literally leaving for work before they woke up and I was coming home two hours after they'd already been in bed.   That's where my journey started with MLM. My answer to all of that was, “I'm gonna jump on board and help my wife build this business”.   And so that's what I started doing. I've got all these sales skills. I've been doing this hardcore sales stuff for five years now. My wife was relatively well. She was a silver rank in her company which equated to $2,500 a month.   So I said, “Okay, if I'm gonna quit my job and I'm gonna do all of this, I’m gonna quit cold turkey”.   Steve: You just up and left?   Nick: Yeah, just up and left. I said, “I'm done”.   Here's the crazy part… We moved from Indianapolis to Austin, Texas two months afterwards. We completely restarted. Hit the reset button.     I've got all these sales skills and one of the things that I see really lacking inside of the MLM world was people knowing how to sell. So that was the problem that I said I can fix.   I jumped into our team trainings and I started doing all of these things. I started teaching them menu selling (which is a car world term) but it's just narrowing down the options.   Instead of giving them this huge, 16 page spreadsheet of all of these things that they can buy, you're gonna narrow it down and say, “Okay you have this option, this option or this option.”   HOW TO INCREASE TEAM VOLUME WITH SECRET MLM HACKS   I started doing that and in four months, our team volume jumped from $30,000 a month to $80,000 a month.   Steve: Wow, big jump.   Nick: Yeah big jump. Just within a couple of months of just getting people to understand how the sales process actually works and implementing those skills.   But then we really came to a plateau. You can only do so much to the customer base that you already have.   Steve: Right. You need some more people eventually.   Nick: Eventually you need more people. That was the brick wall that I ran into at that point. I was like “Okay, so how do I do this?”   Marketing, duh.   If sales pushes and marketing pulls, I need to pull more people into this business.   But I had no idea how to do it because I'm not a marketer. I've been doing sales my entire life. And honestly, that's when I found Steve Larsen. I started listening to Secret MLM Hacks and I signed up to ClickFunnels.   From there… I failed. Miserably. On my face.   Steve: Sure. We pretty much all do the first few rounds.   Nick: I jumped in and I'm like, “Oh this is gonna be awesome! I'm listening to you but I'm not really hearing you”, you know what I mean?   Steve: I always laugh when people are like, “I've heard this training before”, and I'm like, “No it takes a few rounds, go again.”   Nick: I jumped in and started building these funnels and I'm like, “This is going to be awesome” and then I hit launch...   And I launch that first funnel and nothing. It was just crickets and I'm like, “Alright, back to the drawing board”.   INCREASE TEAM VOLUME WITH CLICKFUNNELS   I paused my ClickFunnels account because I realized that I didn’t have the skills that I need to be successful doing what I'm doing.   Steve: Right.   Nick: That's when I really jumped into it and I remember the time specifically. I was at a leadership retreat which is an invite only retreat for a company. I had just gotten Expert Secrets and Dot Com Secrets. I bought the black book with the funnel hacker's cookbook and all of that. And I brought it with me.   I'm sitting in our hotel room and I started reading Expert Secrets and I didn't put it down. I went all through the night and the next morning. When it was time to get up and go to the retreat I was still sitting there with my book on page 240 or something like that.   All of these things just started hitting me and it was like the fire was lit. I started really consuming and I even started hacking Secret MLM Hacks.   Steve:  I noticed that's what you were doing. I watch a lot of people do that which is great and I think they should model it.   Nick: When I was hacking Secret MLM Hacks somehow, someway I ended up in the membership site and I hadn't paid for it. I messaged you and I'm like, “Dude, I have no idea how this happened but I'm here.”   Steve: We were in the middle of tweaking some stuff. Yeah, I remember that. It's not that way anymore.   Nick: It's not that way anymore. A whole new revamped course and everything. I got there and I started watching your videos, consuming and I implemented.   For my relaunch basically modeled exactly what you were doing. This was probably seven months ago, eight months ago?   HOW LONG DOES IT TAKE TO INCREASE TEAM VOLUME?   Steve: A while ago now, yeah.   Nick: Since then we went from$80,000 a month in volume to averaging about $150,000 a month in volume.   Steve: WHAT? I didn't know it was that big dude… Are you serious?   Nick: Yeah. In the past 12 months, we've done a little over $1.5 Million.   Steve: So you're saying it works?   Nick: I'm saying it works dude. That's probably about the time that you really started noticing me singing your praises. I'm sitting here inside of my own business and I'm watching these things grow and accumulate exponentially.   And I'm trying to teach this stuff to my team and get it through their heads… There's no other way!   Steve: I don't know another way either. I'm not making fun of you who are like, “I love talking to friends and family. I love going to home and hotel meetings”. Good on you. But you can only do that for so long.   It's so much better to have something automated.   Nick: Yeah, absolutely. I start learning more about marketing and it's a constant learning curve obviously.   But you know that? It’s so true that MLM is a personal growth opportunity with an income opportunity attached to it.   Steve: Right.   Nick: That's what it is. It's a great way to start for the traditional person who doesn't know anything about marketing or sales. You can start talking to family members and friends and doing all of that.   But the reason that 99% of us out there are failing is because we don't ever move past that portion of it.   The growth never happens and where we get into real marketing or real sales.   PERSONAL GROWTH WITH SECRET MLM HACKS   Steve: Reaching out to your network only gets you so far. After a while you have to learn how to attract more people, market to them, change beliefs, sell and close.   It's funny when people are like, “I'm just gonna treat this like a hobby.” You're not going anywhere then, sorry.   It's a business not a hobby.   Nick: That’s the way that I see this. We talked about this the other day. The way that I see MLM moving, the way that I see this momentum going... It's having a rebirth, almost.   If you've lived in our world, it's changing the way that it's happening. We're slowly moving out of those 1960's origins and moving to 2020.   You're seeing a lot more sales and marketing professionals get into the game. I'm trying to teach everybody that, I'm trying to show everybody that.   If you're not moving in the direction that things are going, you're going to become extinct.   You're going to have real professionals in this game, doing things, exploding and leaving everybody else in the dust.   Steve: There are social media platforms that were never around until 10 years ago. The distribution channels that exist now are massive and you can tap into them for near nothing.   Most MLMs are mad when you go do that kind of stuff. What is wrong with you? You could be selling so much more if you just use them! It doesn't mean you have to be on Facebook saying “MLM”.   What are you guys are doing right now that's working best for you? I'm just interested in that, because the course is big. Secret MLM Hacks is not a small course.   What is it in there that has been most helpful so far?   TEACH YOUR DOWNLINES WITH SECRET MLM HACKS STRATEGIES     Nick: The thing that I think that's been most helpful… It's just gotta be the confidence to go out and PUBLISH.   Steve: Oh yes.   Nick: The confidence to go out and publish and talk about what you're doing. It's one thing to sit there and learn it for yourself. It's another to go out and actually teach people what you're doing.   Steve: Sure.   Nick: Not only because, in my personal opinion, I think that you learn it better and but you learn how to communicate it better. The more that we've been publishing, the more that we've been putting it out there, the more that it attracts people.   Steve: Sure.   What's being published right now? Is it a podcast right now?   Nick: I've started a small little podcast at the moment.   Steve: What is it called? Feel free to shout it out.   Nick: I don't know if I want to at this point...   Steve: That's okay then, never mind.   Nick: I'm still trying to find my voice. My wife's Instagram account has been blowing up. She's got 42,000 followers right now.   Steve: That's big.   Nick: We do a lot of not direct marketing there. More like back page marketing.   Steve: Sure, that's one of my favorite kinds. Especially in MLM.   Nick: I modeled you and I set up my own little course. I started targeting people who want to make money online. The people who actually want to own a business. Not people who want to do a hobby.   Sending people through that mini-course has yielded great results.   THE POWER OF THE INTERNET AND MLM   Steve: That's awesome.   What does your funnel look like right now? I talk so much about funnels, and most of the MLM world is still very new to the funnel term and concept. But what is it that you guys are doing right now?   Nick: The big thing we're doing right now is the little mini course which basically teaches marketing for MLM.   Steve: Sure, that's awesome.   Nick: The big idea behind that is, if you want to recruit more people into MLM and you don't want to talk to your friends and family, then:     You have to target people who actually want to own a business but people who aren't necessarily getting the results that they want out of the current business that they're in.   Setting up this little mini course that teaches people how to market. People who actually want to learn how to market their MLM. Then we invite them to join the downline.   At the end of this course I affiliate for you and I say, “Hey, there's two ways that you can learn this…”   Steve: Which I see by the way, thank you.   Nick: “... You can either go join Steve's Secret MLM Hacks and learn it from the master. Or you can join my downline and I'm gonna teach you exactly what I'm doing to grow my downline to do $1.5 Million per year.”   You can say in your current business and learn from Steve or you can join me and learn from me.   Catching that low hanging fruit, I suppose. Taking advantage of the way that the current MLM system is.   You have so many people that are unsatisfied with the business that they have because they're not learning the things they need to run their business.   TAKE THE OPPORTUNITY TO INCREASE TEAM VOLUME   Steve: Which reeks of opportunity for the rest of us who actually know what the heck's up.   Nick: Exactly. That's exactly what it is. It's kind of like a smorgasbord of low hanging fruit.   Steve: It is, yeah.   Nick: As far as extra recruiting goes and getting new people, it's great when people actually want to use the product, they believe in the product, they love the product and all of those things.   That's an amplifier but it's not a requirement.   Steve: So you guys have a course, you're selling, you're driving traffic to the course and then on the back you’re saying, “Hey, if you want to come join, this is what we've got”.   Nick: Exactly.   Steve: That's awesome. I was filming some training for my own team three weeks ago now. And I just wrote RECRUITING.   That is what most MLMs teach you and the method for it is just walk around. Think about the power of what we're doing with this stuff.   We're taking the recruiting model and replacing something in front of it so that we're not actually promoting the MLM.   How long did it take you to create your course?   Nick: I created the course in about seven days.   Steve: RIGHT? It's not crazy, man. You create this course so then you're no longer promoting an MLM. So Facebook is okay with you suddenly.   You drive traffic to that and take the money to dump it right back into ads. It's amazing and it changes the whole model.   It's literally INFO PRODUCT + MLM. Mashing together two different industries.   Are you doing phones sales as well? Closing them on the phone?   TEACH YOUR DOWNLINES THE POWER OF THE INTERNET   Nick: To a degree yes. I will offer that to people and I have an application process (modeled after you).   Nine times out of 10 when someone goes through the application process, I set up my auto-responder. My email service will kickback a set of emails that walk them through the process of setting up their account.   Then I've done an automated overview. A business overview that teaches them about the company.   During this entire time, I never even mention my company's name.   Steve: This is the craziest part! Same thing!   Nick: I've literally modeled what you've done.   Steve: I LOVE IT!   Nick: For months my entire office was covered with print out after print out of exactly what you did.   Once I finally mapped it out in my head, it was more about the concepts at hand.   Another thing that I think a lot of people struggle with inside of the funnel world is that they think it's about pages.   Steve: Right yeah, it's not.   Nick: It about the framework. What is the state of mind that he's putting every single person in?   Once I finally understood the framework behind it, I knew that's why I failed the very first time that I tried ClickFunnels. Because I thought that it was just all about pages.   But once I understood the core framework and moving somebody through the funnel and how that's done, then all of a sudden it made sense.   Steve: Right.   INCREASE TEAM VOLUME WITH SELF-LIQUIDATING OFFERS   Nick: One of the coolest things that happened out of all of this and how I feed this recruiting machine is by putting self-liquidating offers throughout the course.   The course is dripped out over five days and on each day there's a small self-liquidating offer.   Whatever I talk about that day, I then give them an offer to say, “Hey, if you want to learn this more in depth right now, click this”. Then it goes to a new page with a little sales video for an offer for $7.   Right now it's $1.50 per opt in on the front end and on the back end it's churning out $38.   Steve: You're speaking louder than whole MLMs even know how to!   Nick: Exactly and it pays for itself 17 times over. I'm paying myself to recruit people.   Steve: Last week on Secret MLM Hacks we put $1400 in and we got $20,000 back out (not including how many people got recruited and then they get handed the same recruiting systems). I don't know how it fails.   The biggest issue is the education. Most MLMs don't know how to do this which is understandable. It's a newish thing.   What would you tell to somebody who is on the fence about trying this?   ON THE FENCE ABOUT SECRET MLM HACKS?   Nick: The biggest thing that I would tell people is fail and fail fast. Just do it.   When we over think it, nothing ever gets done. I'm a perfectionist myself which is why I listened to Secret MLM Hacks 18 months ago and I just started doing this six to eight months ago. It wasn't really until the last three months that it really took off.   I’m still constantly tweaking and doing things to it but the fact is that I just did it.   I finally put down the pen, I finally put down the book and I went out there and I did it. Then I hit publish and I wasn't scared to feed the machine up front and put a little bit of money into it.   Nothing is ever gonna get done if I just sit here and read books. The knowledge is great...   Steve: But nothing happens.   Nick: You just gotta do it. Be active in your pursuit of what you want.   Steve: Be clear about the fact that this is not a hobby.   We've treated this like an actual business. We've got phone closers, we're talking to people and training.   I hate when someone joins because they're trying to do you a favor. Then they're wondering why they don't go build.   You recruited the wrong who! We gotta change your who altogether!   Nick: Every bum on the side of the street needs an opportunity.   Steve: Right!   Nick: I live in Austin and if you walk down downtown Austin you're guaranteed to see about 10 every 100 yards.   They might NEED an opportunity, but they don't' want it. You gotta find those people that actually WANT to succeed in whatever it is that you're doing.   DO YOU WANT THE SECRET MLM HACKS OPPORTUNITY?   Steve: Dude I am so thankful that you got on here. Thank you so much for sharing. I did want to ask one last question.   How many people have you been recruiting since you turned it on six months ago?   Nick: I would say we're probably getting five to seven a month.   Steve: That's awesome! On autopilot?   Nick: Yeah, on autopilot.   Steve: And the quality of person is really high which is awesome.   Nick: Five to seven a month is what we're recruiting into our organization and we get paid for a lot of people that say no to us as well.   Steve: Yeah, they bought the thing up front which is the beauty of it.   Nick: And I say five to seven, that's five to seven that we ACCEPT.   Steve: We get three to four applicants a day but I immediately cut out at least half off them because I can just tell…   Nick: Once you get to a certain point, you have to be able to say no. You have to self-select and be able to weed out people because otherwise it just becomes too overwhelming.   Steve: Then you turn into a life coach rather than a “Here’s what we're doing in our company this week” coach.   Nick: Exactly.   Steve: With love, I'll say that as tenderly as I can.   Nick, thank you so much for being on here, I really appreciate it. This was awesome, man. Really means a lot that you jumped on.   HEAD OVER TO SECRET MLM HACKS NOW   I know it's tough to find people to pitch after your warm market dries up, right? That moment when you finally run out of family and friends to pitch. I don't see many up lines teaching legitimate lead strategies today.   After years of being a lead funnel builder online I got sick of the garbage strategies most MLMs have been teaching their recruits for decades. Whether you simply want more leads to pitch or an automated MLM funnel, head over to secretmlmhacks.com and join the next free training.   There you're gonna learn the hidden revenue model that only the top MLMers have been using to get paid regardless if you join them. Learn the 3-step system I use to auto recruit my downline of big producers without friends or family even knowing that I'm in MLM.   If you want to do the same for yourself, head over to secretmlmhacks.com. Again that’s secretmlmhacks.com.

Land Academy Show
Finance Friday with Steven Butala, Jill DeWit & Justin Sliva (LA 903)

Land Academy Show

Play Episode Listen Later Jan 25, 2019 25:10


Finance Friday with Steven Butala, Jill DeWit & Justin Sliva (LA 903) Transcript: Steve:                   Steve and Jill here with Justin. Jill:                          Hello. Steve:                   Welcome to the Land Academy Show on this Friday, it's a special Friday. I think this is the first time all three of us are doing it. Jill:                          I think so. Justin:                   It is, it is. Steve:                   Here at tending Land Investment Talk, I'm Steven Jack [Butella 00:00:15], with guests, Justin [Slieva 00:00:17], and Jill [DeWitt 00:00:17], broadcasting from sunny Southern California and Dallas-Forth Worth. Today, Justin and I talk about Finance Friday with special guest, Jill, which is a little bit strange. Jill:                          Thank you. Steve:                   I can't even read it, it's so strange. Jill:                          You a little confused right now? I kind of like this. I just get to sit back and coast, Justin:                   And relax. Jill:                          And comment now and then. Yeah, this is awesome. Steve:                   I'm gonna say some revealing stuff about Jill. Jill:                          Oh, great. Justin:                   Okay. Steve:                   Jill loves to be the only girl. Like, wherever we're just with a bunch of guys, she's like, "Yeah, I like being the only girl." Jill:                          Actually, it is nice. I understand the dialog. I understand, yeah I get it. It's good. Steve:                   Before we get into the show today and I find out the deals that Justin's doing and the stuff that Jill's doing, let's take a question posted by one of our members on the Landinvestors.com online community, it's free. Jill:                          Do you want me to add? Steve:                   Sure. Jill:                          Travis asked, "Has anyone successfully used the CoreLogic API to fetch their data from RealQuest Pro instead of the GUI?" Steve:                   User interface. Jill:                          Oh, the new user interface. Got it. "What would be a quick and helpful way to get the number lots in a given area if that's possible? Faster than searching county by county on their website, any ideas? Steve:                   Yeah, so the RealQuest API is literally the backend. CoreLogic API of parcel facts. Actually, yeah. I have a lot of experience using that. This will be solved, what you're trying to accomplish when we release DataTree, access to DataTree. The searching function and the parcel checking function based on geography, even map searching it, is instantaneous. It's leaps and bounds above what we use for RealQuest. However, the real value in RealQuest is it has, I think, a superior search function for land. Actually, Justin, go ahead and comment. I know you have experience with both too. Justin:                   Yeah. DataTree is ton of better on houses. It just leaps and bounds better on houses; but, when you get into RealQuest, they're actually getting their lots down. It's way, way easier to use than RealQuest. For someone who may have less than half the price on what the data is, it's worth it for me to pay more on data in RealQuest, because it's so much easier to manipulate with land. It works out for us a lot better. Steve:                   Same exact experience here. Exactly. So, with House Academy, which is just a couple of months away from release? Jill:                          A couple months. Steve:                   The subscription to DataTree will be included much like RealQuest prop. Jill:                          Because, I personally would like to have a life. So, that's why House Academy's going to be not next week. A month or two. Justin:                   Are you missing date night? Jill:                          What's that? I don't know what that is. Justin:                   We literally have a meeting after we're done r...

Sales Funnel Radio
SFR 15: Interview - Jaime Smith reveals his FREE coding secrets in CF Pro Tools, exclusive for ClickFunnels users

Sales Funnel Radio

Play Episode Listen Later Oct 17, 2016 46:18


Click Above To Listen Or Listen In iTunes Steve: All right everyone. I've got a very special guest on with me today. I'm very excited for this actually. I've been looking forward to this interview for a long time. Guys I want to introduce to you Jaime Smith. He's done amazing things with the ClickFunnels community. Jaime thanks so much for joining. I want to talk a little bit about how you got your start. All the cool things you've done. First of all I want you to know, actually Russell and I were talking about you because you've done so many things for the ClickFunnels community. You remember that video, you may not, but I put a video out and I was like hey Russell and I we're looking for some help for some poor things and things like that and you reached out. We were going through this list of people. Over and over and over again I was like, Jaime's the man. Jaime would be the man, Jaime would be the man. The only reason why, I don't know ... He's so good. I think he'll get bored. Jaime: Ah. Well thanks man I appreciate that. I appreciate that, yeah. Steve: Yeah and Russell's saying, hey he's done so much for the ClickFunnels community himself. It's not like we're asking you to, it's not like we've done anything to do extra promotion for you or anything. It's like everyday I see a new thing that you've done for the ClickFunnels community, for all of us non coders and it just blows our minds. It's like black magic to me man. I have no idea how you do what you do. Jaime: Yeah well lots of years of kind of doing some intense stuff. Honestly my background is as a senior web app developer. I've been working since 2000. Started out, my first project was actually an enterprise level project with Eli Lilly. I've always been the cowboy coder writing enterprise level applications. Always web based. I've done desktop software and stuff like that but that's not as much fun for me. After doing enough of those things you learn how the back ends work. I'm able to take some of that experience and see how the front end works, and get into the ClickFunnels admin area and see okay, I can kind of tell from the URLs and the functions that are available how the backend pieces are pulled together. That allows me to say, okay well if the backend works this way, then if I add this to the front end, then the backend should support it. Just having that visibility into both sides of how things work makes it easy for me to go in and know that if I can customize the front end a little bit it'll work with the backend. Also just being able to inspect the code that's being spit out by the ClickFunnels tools on the front end, and add some java script into them that just adds a little functionality or a little style or whatever. It just kinda comes easy so I figure, hey if I can throw some of that stuff out and help people out then that's, I would love somebody to be able to come in and help with all the things that I am not the greatest at. Steve: Yeah. I cannot even imagine what those topics could be because I mean, you've been in the ClickFunnels community for a long time and I have also. I got in right after beta. I was building stuff and it was fantastic, my buddy and I are making money together. All of a sudden I started seeing, whose Jaime Smith? You keep putting things like, hey anyone want some cool CSS that's going to make, yada yada yada. I was like, holy crap I don't know how to do that. Yeah. Then like the next day it'd be like, hey someone else want some java script I wrote that's going to make you're whole funnel act like an e-commerce store. I was like, what? Oh my gosh. It was like over, and over, and over again. I got to tell you, that's one of my biggest regrets. I went to college for, I finished with a marketing degree but before that I was actually a CIT computer degree. I remember I went through one semester, I was sitting in one of my coding classes. Maybe it was the teacher, but I cannot blame it on that with a clear conscience. I don't know what it was but sitting and coding, I remember getting out of there and going, I'm never going to sit in front of a computer all day.  Jaime: Yeah, and now you're doing it. Steve: It's the one thing that I wish I had learned, was how to actually program. My dad was an executive at IBM. He and I, we ran like a 120 port network inside of our house that we built together, running through the walls. We did so much stuff together and it was awesome. I just have never learned the guts of it. I'm totally jealous of your skills man, it's fantastic. Jaime: Yeah, well. Yeah it's a blessing and a curse sometimes because I see some of these questions come up like, hey can I do this? Then it's like that itch that you just have to scratch. Okay I'm not going to rest until I figure out how to do this thing. It's a lot of fun. I think, my background's kind of weird. I don't know what it is. I feel, I was talking with somebody actually I was just out in Boise here last week for an event there with Russell. The Ignite Inner Circle Program. That was great. While I was there I was talking to somebody and just talking about my background. I just felt like, what I said was I feel like my biggest blessing, and I hate to say my genius because I'm not trying to brag by any stretch of the imagination- Steve: Go for it. We'd love to hear it. Jaime: I feel like my biggest area of genius is my ability to extrapolate and apply a concept I've learned in one area to a completely different area. I started when I was young doing mechanical stuff. My family actually owned a hardware store and my dad did a lot of installations, hot water heaters, central air units, and stuff like that. 10 years old I'm installing furnaces, and air conditioning units, and hot water heaters, and running electricity, and doing all this mechanical stuff. Not really any training it was just, hey your dad needs a hand so I'll just watch what he does, he'll tell me what to do, and I'll go do it. I kind of took that and then when I graduated high school I actually went into the army and I was a helicopter mechanic for 4 years. I was able to take some of those mechanical skills and apply it and look at the engineering of things. I always felt like I could tear stuff down and reverse engineer how it worked. Then I've been able to take some of that reverse engineering skill and apply it to technology. That's what programming has been for me. Honestly I've only had a few actual college level classes in programming. Most everything is all self taught. Steve: You're kidding me? Jaime: No. Steve: Oh my gosh. Jaime: Over 16 years of reverse engineering other stuff that's already working or going in and saying, it's always kind of been on the job. Hey, you need to learn this. Okay great let me go get a reference manual and I'll figure it out. I've just been really blessed to be thrown into just a bunch of different projects in different languages, and different platforms, and used in different frameworks and technologies. Being able to say okay, these things all kind of have similar ways of doing things. If I can take the concept from one and apply it into another then it's going to get me to a solution that much faster- Steve: So, I'm sorry about that. Jaime: Oh no. That's what I've been able to do with ClickFunnels is be able to say, okay I know I can take the concepts I've learned from the backend programming and from the front end programming, I can combine them with this online marketing which I've also been a student of for the last going on 12 years now. Just come up with these creative solutions to these problems that people are having, and problems that I'm having. Steve: It's interesting because I was thinking about that. If you can step back and look at abstractly what you're doing with the funnel. I mean that's got to tie directly into what you did growing up. Jaime: Mm-hmm (affirmative). Yeah, absolutely. Yeah, yeah. I've been extremely blessed to have some fantastic opportunities to get experience that a lot of people just don't get. Sometimes I have to remind myself, or I have people tell me this, that because I see what I do as just really easy, but then I'm like anybody could do it. In fact I've said that many, many times, I could train a monkey to do what I do. It's not that hard, it's just once you know the concept it really is pretty easy. It's just for me I've been exposed. I don't feel like I've got any special genius or any special intelligence ability that other people don't have. It's just I've had the great opportunity to be exposed to experiences where I've had to make a project work. It's just experiences that the majority of people don't get an opportunity for. I feel truly blessed to be able to do what I do. Steve: Well I think it's fantastic. For those of you who are listening and don't know, what Jaime does is he'll look at what everyone's doing in ClickFunnels and watch the community and the Facebook page, see where people who don't know how to code are running into these walls. He'll just come out there and, hey here's a free tool that I just built, or drop this piece of code in and now ClickFunnels totally changes. I mean it's amazing. It's incredible what you do. Jaime: Thanks man, thanks. Steve: I mean you're obviously working on CF Pro Tools. I'd love to hear a little bit more about that. I also want to ask, before we get into that, I don't know. It's a little weird to bring this up. Tell us about your failures you know. I want to know a little bit more, behind every success story there's always like this struggle I feel like. In marketing we tend to take whatever the best case study that we were able to get and market that only. Or whatever the best results are and market that only. The other 90% are like pure crap or it's just this massive, massive struggle. I was just wondering if you could tell us a little bit about, she the struggle that produces CF Pro Tools. What led you to get there? Jaime: Sure. Absolutely. Yeah. Yeah. There's plenty of meat there to chew on. Steve: Sure, there always is. Anytime anyone talks, oh yeah there's lots of that. Jaime: Oh yeah. Yeah. Like I said I've really been studying online marketing for the last 12 years of so. Really I've had this passion for hey, I've always wanted to be an entrepreneur. I guess that's the thing. I never wanted to be the guy that just had a job and just worked my job and just did my thing. Now every once in a while I look back and say, man I worked in a factory building cars for a while. That was kind of mind numbingly nice. It's like hard work, but every once in a while I'd like to go back and just feel like okay I can just do my job and go home and not have to worry about anything afterwards. Steve: Turn the brain off, yeah. Jaime: Yeah switch off and not be constantly on the clock. Then I remember that no, I hated that gig too. It seems like I always do that in the spring time. Be like, oh it'd be awesome to have an outside job putting on roofs or something like that. Then come August in Indiana when it's 95 and 100% humidity I'm like oh yeah now I remember why I don't do that. I wouldn't last very long. Yeah. I've been studying online marketing for a lot of years. Really felt like okay this is my opportunity this is where I can actually make some thing happen and really take a business, I always thought with minimal effort and the right scale I can just make this huge business and live that internet dream, laptop beach lifestyle. It's 12 years later and I'm still not on the beach, and I'm still not working at my laptop. Yeah. I started, and honestly I've looked at so many things, and I'll say probably the biggest failure I've had in, and a lot of people talk about this but it's so easy to get sucked into, is the shiny object syndrome. That's biggest struggle. I'm finally learning after 12 years of doing this that that's been my biggest downfall, is constantly being attracted and constantly jumping ship and moving to the next thing. I've done pretty much everything you can think of in internet marketing, I've tried it. Starting out with running niche ad sense sites and building those up. I had a little bit of success there. I made a few hundred bucks here and there on different sites. Okay that's great. Then you run into a little struggle and you're like oh that doesn't work and you just dump it, you move onto the next thing. In the process of doing that I actually built out, again using my technology background and as a developer I actually built a product around taking PLR content that I was getting in a monthly membership where you'd get 1,000 articles a month or whatever in different niches for free. Go and build your website around these, throw ad sense on it, you'll make money. Great. I did that and I thought okay, I'm going through and doing this and there's got to be a quicker, better way to build out a network of sites. I figured out a way to take word press, and this is back like word press 2 days, to use word press what was called multi user or word press MU, and use that to build a network of these niche sites, just on different sub domains. I figured out how to do that and I actually was in a community similar to the Facebook group, specific to this product, had about 1,000 members or so. Kind of the same thing I've been able to do with CF Pro Tools, just jump into the community, help out as much as I can, show people what I'm doing and how to use the technology to build these sites up more quickly, and actually build a training program. Like 28 videos on how to use word press, and how to use the network, and how to drive traffic, and how to do all this stuff. Put that together and just poured a ton of time into it. That was probably my first little success where I sold like $1,700 worth of this course. I'm like okay awesome, this is going. Then word press came out and changed their version. I'm like I do not want to go back and re-record 28 videos. Steve: 28 videos, yeah. Jaime: It was like 6 hours worth of video training. That's immense, I'm like no. I'm not going to keep up with this. I just kind of dumped it, moved onto the next thing. I probably could have been successful with that if I would have stuck with it. It got hard, there's surely some other shiny object that's easier to do over here, and jumped ship. I just did that repeatedly for the last 10-12 years. Have learned the hard lesson that that just doesn't work. Anyone of the things that you pick you can be successful at online. There's very few things that if you don't ... There's been plenty of plans laid out that will work if you apply the right leverage. I think you just have to pick one and go with it. For me the latest has bee CF Pro Tools and jumping into a community where we've got, what 20,000 plus active members now inside the ClickFunnels Facebook group. We've got ClickFunnels users I think, I heard recently is right around 20,000 active users of ClickFunnels right now. Steve: Yep. Jaime: It's a huge community, so it's a huge opportunity and that's great. That's where my focus has been. I actually enjoy it. I posted on the group not too long ago that ClickFunnels makes what I do easy, the community makes it fun. I do enjoy it. Steve: Yeah. I completely agree with that. I want to go back just real quick to something you mentioned. You just touched on it, and I'm learning this lesson, I don't know I fee like any of us who do anything entrepreneurial we all have learned this less every 6 months. It comes in a wave. The shiny object syndrome. It's huge. What's funny is in college I 100% had shiny object syndrome but I kept telling my wife, no, no I'm just at an age of exploration. I'm going around all over the place like, yeah I'm doing real estate here, writing e-books there, door to door sales here, I was all over the place. It was good for learning, but after a while you have got to drop an anchor and you have to learn to say no. I'm laughing that you brought this up because like 3 days ago I was Voxing Russell and I was like hey man, someone approached and they're like hey got this cool thing, wondering if you want to jump in on it in your free time. Which is kind of a joke. Russell's like, you know what man as a friend, stop. You have so many cool things going on already. He's like don't, just as a friend you cannot say no anymore. By the way, he's like if you have time to focus on 2 things it means you're probably not doing enough in number 1. You know what I mean? Jaime: Right. Steve: I thought that was fantastic that he said that. I have not really ever had success in something until I became a mono maniac. You really have to obsess over it. It's the only thing you think about. All your time is put towards it. You don't go home and just like veg out on the couch. After a couple months then something will blow up. Anyways. I thought that was really key and wanted to just point that out. I remember when Russell said that I laid on my bed like for a long time. Just was like, man he just defined the last 4 years of my life. Why was I so close to it, I couldn't see it. It's so obvious when you hear it but you look at it you're like man, what can I simplify and cut it. That's usually not the mentality everyone's taking on. It's more of a, what can I be a beast at and take on more, and more, and more. It's actually very much the opposite of how you do things. Jaime: Yeah. Yeah. Absolutely, yeah. You know when somebody starts a conversation with, hey, as a friend. You know that's probably not going to be what you want to hear sometimes. Steve: No, no, no.  Jaime: That's what you got to like about guys like Russell that can jump in and tell you what you really need to hear, whether it's what you want to hear or not. That's awesome. It's great advice as well. Yeah. Steve: Do you mind bringing us to a little bit of CF Pro Tools? Jaime: Sure. Steve: I'd like to, feel free to go through it. I was wondering also, I probably should have asked you this before but, I mean everyone here obviously we like to hear the numbers. If you wouldn't mind a few things on that or take us through your funnel and kind of how it works. Jaime: Sure. Steve: If that's all right with you. Jaime: Yeah. Absolutely, absolutely. Yeah it really started out, CF Pro Tools was just, as a I thought through, you know I built out a couple of these custom java scripts. The first one somebody had asked for was the ability to add a checkbox directly onto the buy button. Normally we see this check boxes to say hey I agree to the terms and conditions. What somebody was saying was hey, I added this to my page and it's kind of cutting down on my conversion rate. I'd really like to be able to put this checkbox directly on the buy button, that way they're at least looking at the buy button when they have to check it. Maybe that will help with conversions. Maybe it will be a way to fill the bill of requirement for, you know some processors require that hey if you're going to sign somebody up for a trial subscription you need to have somewhere on the page that identifies that they agree that they're signing up for a trial subscription and they're going to be charged again in 30 days. That really was where the need came from. I thought you know [inaudible 00:19:48] they posted in the Facebook group and said, hey is it possible to do this? I just posted back and said hey it's not possible to do it out of the box but I can certainly add some java script that adds a check box to your button. I dug in the easiest way to do that and make it still flexible with the ClickFunnels editor. You can still edit the button text, you can still edit the subtext which is actually what I used for the checkbox agreement. Basically I just said hey we've got this subtext, I can just pre-pen a checkbox to that event. Or to that text. Then you've got a check box. It's like okay cool that works. It just kind of started there. Then a couple of other things come along. I'm like okay now I've got 2 or 3 of these things. To me, if you've ever used AWeber, and you've heard of Jack Born there's AW pro tools which is AWeber pro tools. I thought you know hey, I kind of like that name. I like the product. I've used AWeber and AW pro tools for a long time. I thought you know that's kind of what I'm working on here, is little pieces that I can add to ClickFunnels that don't come out of the box. When I'm registered, CF Pro Tools. I thought well I'll just throw them in a free membership area and give people access. That way I can kind of keep up to date, add new scripts, I can send out emails, and do all that. Now it's a library of 16 different scripts that are in there for free. I've had over the, well I think I was actually just recording a video early this morning, I think I registered my own account in that membership area March 13th. Just prior to funnel hacking live at the end of March this year. I threw it all together and since then I've had a ton of people say, dude why aren't you charging for this? How much can I pay you for this? All kinds of other things. It was just like, no it's always been my goal, I've heard many, many times. I always attribute this to Frank Kern is probably the person that sticks out the most in my mind as saying, "If you want to help somebody you need to show them how you can help them by actually helping them." I take that as kind of, lead with value. Which complete side note, I was able to register the domain name a couple of days ago, leadwithvalue.com. I thought okay that's what I try and live by. Lead with value, show somebody that I can help them by actually helping them. I thought the best way to do that was to get in front of the community. The best way to get in front of the community is by actually helping them do things. The best way I can do that is just throw some stuff out for free and say, hey I'm going to throw this value out there and there's no strings attached. Just jump in and grab it. It's been hugely successful for me. I always feel like if you go into something and you provide value without any expectation of return, that value is actually going to return to you probably 10 times more than you put into it. Steve: 100%. Jaime: Yeah. That's truly been how this has gone for me. It's been great. After doing this for quite a few months now, just providing as much value as I can. I've finally come up with a few scripts like wow this really is like a major game changer. After building up a pretty good sized library I felt like okay now I actually want to make something work with this, make something happen. I've had enough people say hey I want to pay you, I want to pay you, I want to pay you for this. I fell like you've given me all this value I need to pay you. Please make something available to us as a paid product. I thought well I'll just add on a section to my membership that is a VIP club. Basically where I throw these kind of high value scripts in there. People can sign up and I'll just throw monthly scripts of these high value nature into this membership and let people join in. I rolled out the CF Pro Tools VIP club. Through, the first script I threw in there was my CF cart mode script which basically takes ClickFunnels which as you know out of the box, the order form just supports adding 1 product at a time to your order. You can have 3-4 products listed on your order form, but you have a radio button so you can only select 1 of those products to purchase. I thought well hey again looking at the structure of the code on the front end and seeing that hey I notice how some of these variables are named, and just from my experience on the backend I know that okay if it's named this way it probably means we can send multiple values into it. Steve: At the same time, yeah. Jaime: At the same time. I determined that hey I could probably send multiple products into the cart and have them process the order just fine. I tweaked the front end a little bit to change those radio buttons to check boxes. That was the first iteration. I tested my order and hey, guess what it all worked. I was able to send in multiple products to the cart and have them process in a single order, as a single transaction in ClickFunnel. I was like, awesome. Then I had people ask hey is there any way that I can have a quantity selector? I thought, hmm. I wonder if I could combine the 2. I made the CF cart mode which is the combination of, it works probably best for say you're selling t-shirts. You have 4 different sizes, small, medium, large, extra large, and you want people to be able to order more than 1 at a time. The cart mode gives you the ability to have a drop down selector for quantity. The ability to add each of the products individually. You could say, hey I want 2 smalls, 3 larges, and 4 mediums and ClickFunnels will process that on the back end all perfectly. It adds up totals, sends everything across to your payment processor as your total amount and then your order confirmation page shows each of the shirts that were ordered. It works pretty awesome. Steve: I'm blown away that, I mean I have an account with CF Pro Tools. I logged in there and I just could not believe all the stuff that was in there. When you look at what, you know ClickFunnels is what people want as far as like the structure and the ease and stuff like that. Then there's all these little tweaks and features, and customizations people need based on what their business is, or what industry they're in. Yours is like, it's the other side of that man. It's like if you've got CF Pro Tools and you've got ClickFunnels, there's is literally no other product on the planet that is like it. It's pretty amazing. I like that you said that though about the bait. You decided for a long time to give tremendous value up front for free for a long time. I kind of came to that realization, I don't know it was like 6 months ago also. It was like man, everyone wants me to build these funnels constantly. It's like the thing that everyone asks me to do. I was like, well I may as well toss all the ones that I've built and make them free and put them in a site. That's what salesfunnelbroker.com is. You go in there and you can download the entire website, salesfunnelbroker.com just for free. The amount of doors that's opened up is amazing. It's counterintuitive because people are like, whoa I don't know man. I could charge 5 grand for that easily, and it's true. It's like ugh. That's kind of the realization I've had recently. What people would normally pay for, go ahead and make that free and you become this rock star in their life and [inaudible 00:27:27] like crazy. I'll get all these personal messages. I'm sure that you get them too, like man thanks so much, this is helping me, I've sold more because of this, or whatever it is. Anyways. I'm just saying I completely agree with that. That's fantastic. At what point did you decide to start charging for all of that? Jaime: Yeah that really was just in the last few weeks that I opened up the doors on the VIP club. Really what it came down to is okay, I'm still working I hate to say a full time job but I had kind of committed to a 25 hour a week job. That was, you know it's what I've always done so it's what I knew. It's always kind of that foundation, that safety net but I thought, this is only going to get me so far. I really need to ramp up and scale up my income potential. People are asking for this, let me just throw it out there and see what works. Finally I just flipped a switch in my head and said okay I need to make something out there. I just need to do it. This is the other one of my big failures, and that has been perfection. Always worrying about, well I'm not quite ready to put it out yet because it's not perfect. I really need to perfect my message, my sales letter, my report, my whatever. I'm working on a book here and I need to make sure it's perfect before I can roll it out. One motto that I keep reinforcing in myself and I try and share with everybody that I see having the same problem is, in my opinion perfection is the enemy of progress. Steve: Love it. Jaime: When I'm trying to make things perfect it keeps me from actually putting anything out there that could be successful. I really just, I had written several of these scripts, I had tested several things. CF cart mode was one of them that I built and I tested for myself. I thought okay it's not quite 1,000% ready so I'm just going to hold on to it. I thought, you know what, no. I'm just going to throw it out there. I'm going to put a separate section of my membership up and I'm going to put a sales page up and I'm going to put a buy button on it and I'm going to let people go and buy it. With my goal, within a 24 hour period to go from concept to completion. I did that and I turned on, flipped the switch, and 5 days later I was 5 figures. I was like okay. Now we're onto something. Yeah it was very cool. Very cool. Steve: That. Do you mind sharing with us the funnel a little bit? Or at least the way you bring people through? I mean I've been through it it's fantastic but, squeeze page, order form, whatever. Jaime: Sure. Sure. Absolutely, yeah. Really the first iteration was just to kind of capture the traffic that I already had. I had about 700 members inside the free version of CF Pro Tools. My thought was okay I just need to get in front of those people that already know and love me. I hate to say that in a boastful way but- Steve: It's true though, you're a brand, it's fantastic. Jaime: Yeah. I just kind of want to get in front of those people that are already hot prospects, that already know who I am and already know the value of the scripts. It's a pretty simple process. It's just a video that says, hey I'm Jaime I'm with CF Pro Tools. I'm the creator, this is what I've got for you. I've got a membership area where I'm going to be throwing these high value scripts in a monthly basis. I'm also going to be doing monthly share funnels. I'm also going to be doing some video training. If you want to jump in there's a monthly membership or there's a yearly membership. The funnel is basically that. You're signing up to either pay by the month or pay by the year. I kind of really just throw some spaghetti at the wall as far as price. I put a normal price, in my mind I thought o normal price should be around 67 bucks a month. Then my thought on the yearly price actually came from a guy name Rory Mcnally I did a mastermind session with Trey Lowell and Harold a while back and Rory was there. He shared just this absolutely golden nugget that I will share with you. I give 1,000% credit to Rory because this is just brilliant. He said, in fact he won the prize. Trey did a little contest and there were 16 people or so in the room. Everybody got to give their number 1 tip. The prize was one of those new 360 degree cameras. Steve: Oh sweet. Jaime: Just see people doing all these videos. It's like a $500 camera. He said okay the person gets the number 1 tip gets this $500 camera. Rory won that and his tip was this, if you've got a membership area and you can figure out what your average stick rate is. Say your average stick rate is 4 months. People come in, they sign up, they stay for 4 months in your membership and then they bail. Then really what you want to do is offer a yearly plan at just 1 month more than what their monthly was cost wise. Steve: Oh man. Jaime: You just got an extra month of income out of them that you weren't going to get if you just kept charging monthly and to them when they sign up that seems like a huge bargain. You're getting all the money up front that you can now turn around and reinvest in even more advertising to drive even more traffic to that great deal. It's just the quickest way to scale your business dramatically. I thought, that is absolutely brilliant. Steve: That is brilliant. Jaime: Of course I'm just starting this so I have no idea what my average stick rate is but I thought you know what, I'm going to go on the 4 month premise. I'll just say okay if people were to stick for 4 months then lets charge 5. I just did a hey get 12 months for the price of 5 on my yearly plan. I basically wanted to do right around a 50% discount for the launch. For those people who have been around I want to give them the most value and the most love I can by being huge promoters and supporters of CF Pro Tools. I went with at $37 a month initial price that will go up probably around the first of September. Then $197 which is roughly 5 times the monthly to sign up for the year. I just put it all on a single order form, here's you're 2 payment options. I got a couple of buttons, I actually modeled the funnel university- Steve: Oh sweet. Jaime: The funnel [inaudible 00:33:43] .com funnel. That's what I used there. It worked perfectly. I threw that out there and right away had people start signing up, which was great. The one thing is that I did figure out is that, and I actually have changed the price now a little bit for the yearly plan, was because I was getting everybody into the 197 a year. Which was great to come up with a big launch, but as you're running a membership you kind of want to have a little monthly recurring, right? Steve: Yeah you want the continuity there, yeah. Jaime: Exactly. I thought I'm not getting any continuity here. I literally had like 95% of my sales were for the 197 for the year. I thought, well I've got to be able to support admin stuff in each month so I probably ought to make it a little less enticing to go with the yearly. I bumped that price up to 247. That's kind of balanced things out a little bit more. Whereas I'm getting new sign ups no, I'm getting a little better mix of the monthly versus the yearly. Steve: Man that's amazing. Okay. That's fantastic. I've been thinking of that, we have this thing above the door. Actually I can basically see it right now. The ready, fire, aim you know? Jaime: Yeah. Steve: I think that's so cool. You've just done that. You just put it out there, see what happens, and then tweak as you go. People get so stuck doing the other way around, just waiting, and waiting, waiting. Jaime: Yeah. That's huge. I need to get one of those and put it above my door, above my desk as I'm looking at the wall each day with the computer and everything. Yeah. It makes such a huge difference. I mean you're going to get a result. Tony Robbins talks about this, and I've learned over the years that there are no mistakes. There are no failures. There's only results. That result may not be what you want, but it's giving you a result. It's a lesson you can learn from it. Throw it out there and see what you're result is. You just have to have that sensory acuity, to use one of Tony Robbins' words, that sensory acuity to know is this a result I was looking for? If not, what kind of difference can I take out of this that I can make a tweak and maybe move in the right direction. A little 2 degree changes, expand it out and make a huge difference. Just making little shifts, and make little changes, and keep at it. Eventually you'll find the success you just have to get started. Yeah. It's been very cool and I back into that, just to jump back into the funnel a little bit. I did [inaudible 00:36:05] I got the VIP club. Which a lot of people have been signing up for, I was converting about 10%. Which is really what I was looking for. My goal was to get 10% of my existing free members signed up into the paid membership. That's about where we ended up at. I fell like, okay I hit that target. Really that's just a number that I pulled out that I said I feel like I'll bee successful if I could get 10% of people that took something for free to actually pay for a little bit more. Steve: Now are you currently driving traffic as well? Are you buying adds for this? Jaime: I am not. I have not done any traffic generation other than sending emails out to the existing list. Steve: That's amazing. 5 figures, internal launch, and you just crafted it as you went. Jaime: Yeah. Steve: That's awesome. That's awesome. Jaime: Yeah. I was very happy with it. Then the other layer of it is I thought okay, I've got the monthly membership on the front end. I need to have something to offer on the backend. I want to be able to work with people on a little more personal level. What I did was I'm going to create the Platinum club. Everybody wants to be a VIP and everybody wants to feel important. The Platinum club is again another level of exclusivity. I learned this from Russell, everybody wants, well people will pay extra just to feel a little more special. My goal is always to provide more value. The way I can do that is with the Platinum club we offer monthly group coaching calls. Where I'll get on the phone I'm guessing, we haven't actually done the first one yet. It'll be probably coming up in the next week or so. 2, 3, 4 hours. However long it takes to go through, address the training. I'll be doing training on technical topics, and how to use ClickFunnels, and how to integrate different things. We'll be doing these on a monthly basis and go through all that. Answer any questions that come up during that process, and then also do some coaching. Then also do hot seats where if I've got a member that has a funnel that they're working on that they want to review, we'll pick somebody from the group and we'll go through their funnel and help from a technical perspective as well as just a conversion and just strategy perspective so that everybody can benefit. Everybody always learns from seeing somebody else going through the process. Steve: Oh yeah. Jaime: That's a great way to provide some value. Then I'll also be doing some much more in depth training videos on how I work. I've been completely blessed to work with some of the biggest names in the ClickFunnels world at least. I've worked with Liz Benny, I've worked with Trey Lowell, I've worked with Dean Holland, I've worked with Joel Erway. I've worked with all these people so to be able to see what all they're working on, and kind of be involved in that process, and to help them with different aspects of their funnels. It brings great experience. If I can take and share some of that experience with other people, then I would love to be able to do that. This is, the Platinum club's kind of my way to be able to do that. Steve: That's fantastic. I mean that's exciting. It's fun too like when ... I don't know I just feel like there's energy and movement and momentum is such a huge part of this. Cannot wait to launch forever. That's fantastic. Well hey. Okay. I take notes like crazy. I've got a full page of notes going. Jaime: Awesome. Steve: Just to kind of recap. You said some cool stuff. Perfection is the enemy of progress. Jaime: Mm-hmm (affirmative). Steve: That's huge. There's not failures, only results which is so big. Oh that's such a huge lesson. I mean you think about the mental I don't know, I call it mental shelf space. It's like how much your brain can kind of handle at once. I mean think about how much mental shelf space these people dedicate towards making sure they don't fail. Jaime: Right. Steve: It's very, very freeing to realize there aren't any. Anyways people will pay more just to feel special. I 100% see that all the time. Yeah. I'm pretty sure, because I sell my own funnels also like in the ClickFunnels marketplace, and all over. I think a lot of people don't even use the things that they're buying. They just want to feel like they've made progress. Anyways. Jaime: Yep. Steve: That's fantastic. Jaime: Yeah, that's the other thing too. This honestly, I'm guilty of this myself. I definitely know that people do this, a lot of people do this. It's probably the majority of people do this is, they go into something and they have an itch. They need to scratch that itch. As soon as somebody buys your product, they have scratched that itch. A lot of people will never consume your product because just the fact of purchasing it made them progress towards scratching that itch. That was just all they needed. That's what, get that shiny object syndrome because if we don't actually completely get rid of the itch, we just scratch it for a little bit, it's going to come back. Then we figure well this thing that I just kind of scratched the surface with, it kind of got rid of the irritation for a little bit. Now it's back. I'm going to have to try something else and maybe that will finally get rid of the problem. It usually doesn't because we didn't fully scratch it. People will do that. They'll buy your product and not consume it. It's just part of human nature. Steve: Yeah, yeah. Which isn't always a bad thing. Jaime: No. I mean absolutely not. It served well. As long as you do a good job and do it ethically and actually deliver something that could fulfill their need if they actually followed it, then you've done your job. That's another reason why you don't have to worry about being perfect with everything. You just have to get it out there. You've got a lot more chance of helping people actually be successful if you release something versus sitting and working on it constantly. Steve: Well I'm looking at this huge page of notes. I know you just kind of gave it, but I guess what kind of advice would you give here as we end? As you get started, I mean I'm looking at, you have quite the journey. You have quite the story going on here. This is awesome. Jaime: Yeah. yeah. Honestly the biggest advice is just, stick with it. Here's a little story I've shared before. I love this story. This story actually, I heard originally from Joel Osteen. I just thought it was brilliant and just a huge indicator. To me it attaches perfectly to internet marketing. That is, that there was a psychology study done with some apes. These scientists build this enclosed facility and in the center of this enclosed facility they've got this pole. At the top of this pole they've got this big bunch of bananas. Then they put in these 3 monkeys I think. They put in these 3 monkeys into this enclosure and of course monkeys love bananas. This first monkey runs and scurries up the top of the pole to grab this bunch of bananas. As soon as he got to the top the scientist, through the top of the enclosure, squirted him with a hose. He got doused with this bunch of water. Man he shoots back down the pole, never got the bananas. Gets to the bottom, then he's afraid to go back up the pole. Then the next monkey does the same thing. He's like hey I'm going to go up and get these bananas. He runs up to the top of the pole to grab these bananas and they dump this bucket of water on him. Again he gets doused with the water and back down the pole he goes. He's like, I'm not going back up, scared to even get near the pole now. The third monkey starts to make his way up the pole and the other 2 monkeys grab him and pull him down. Steve: Interesting. Jaime: They do this and they think, okay well let's take one of the monkeys out and we'll put a new monkey in. Now they've got a new third monkey. Again this monkey sees this pole, sees the bananas, goes and tries to go up. The other 2 monkeys grab him and pull him down. Then they thought well okay. Let's pull one of the monkeys out, put a new one back in. They do the same thing and this happens again. They do this again, and again, and again to the point where now none of the monkeys that are in the enclosure have ever been doused with the water. For whatever reason it's become inherent that you cannot be successful at getting these bananas and they all will pull each other down. Now nobody will even try to go up and get the bananas. I see that as kind of internet marketing. You get in it sometimes and you will get excited and jazzed about something. You'll go and talk to your friends, or you'll talk to your family, or talk to somebody else online. They'll say ah, that's never going to work. You don't even need to try. I knew a guy that got into that and he failed. You need to just stay down. People are going to pull you down when you think you've got something, you're going to be successful at. You're always going to have people around you that will pull you down, but if you persist, don't let the doubters, don't let the haters pull you down and keep you from being successful. I did that for a long, long time. You talked to people and they said, oh yeah that's crazy. That's a scam. You cannot make money online. It's just not possible. We see all over the world people that are being successful on the things we want to be successful with it. It's absolutely possible. You just have to stick to it. You have to pick the thin, the vehicle you think that's going to give you the success, and stick to it, and do that. You can be successful. That's one of the big things. Don't let the haters drag you down. You can make it to the top and you can grab your banana too. Steve: That's fantastic man, what a great story. I appreciate that. Jaime: No problem. Steve: Man I don't even want to say anything else because I don't want to ruin it. There's a glow right now. The room I'm in is actually a little brighter. Jaime: Awesome. Steve: Hey where should people go to check out your stuff? Jaime: CFProTools.com is just the quickest way, you can get signed up, get into the free membership area there. Once you're inside there's great buttons if you want to get upgraded. If you're not already in the ClickFunnels Facebook group, jump in there. I'm in there all the time so jump in and connect with me there. I'd love to connect with everybody. Steve: Mr. Jaime Smith you have dropped tons of gold and I appreciate that so much. Thank you so much for taking the time to do this. Jaime: Awesome man I appreciate it Stephen. Steve: Awesome. Okay I'll talk to you later. Jaime: Take care. Steve: Bye. Jaime: Bye. Thanks for listening to Sales Funnel Radio. Please remember to subscribe and leave feedback. Have a question you want answer on the show? Get your free t-shirt when your question gets answered on the live "HeySteve!" show. Visit salesfunnelbroker.com now to submit your question.

Sales Funnel Radio
SFR 9: Interview - Dallin Greenberg and Kristian Cotta Discuss Their Political Quiz Funnel...

Sales Funnel Radio

Play Episode Listen Later Sep 17, 2016 50:03


Steve: Hey, everyone. This is Steve Larsen and welcome to Sales Funnel Radio.   Speaker 4: (music starts) Welcome to Sales Funnel Radio, where you'll learn marketing strategies to grow your online business, using today's best internet sales funnels. And now, here's your host, Steve Larsen. (music ends)   Steve: All right you guys. Hey, I am super excited. Today I've got two very special, kind of unique guests on the podcast. As you guys know, a lot of times, I record my own thoughts on things that Russell and I are doing to make marketing awesome, but I like to go and interview other people as well. Today I've got on the show with me, it's Dallin Greenberg and Kristian Cotta. These guys have a pretty awesome unique way for building funnels. Anyways, I want to welcome you. Thanks for joining me.   Dallin: Appreciate it.   Kristian: What up.   Steve: Hey. I actually was thinking about it and Dallin, I don't even remember how we actually met. It wasn't that long ago, was it?   Dallin: Ah, no, not very. Just a couple weeks.   Steve: Just a couple weeks ago.   Kristian: I think Dallin met you the way that him and I kind of joke about he's the black box back alley hacker. He does all the ...   Dallin: If there's someone I want to meet, I find a way.   Kristian: He's the unconventional guy. You won't find his practices in a book or a manual.   Steve: Crap, that makes me a little nervous.   Dallin: Yeah, don't mess ... I told Kristian the other day ...   Kristian: Not black hat, black box.   Steve: Yeah. We can call it whatever we want, right? No, just kidding.   Kristian: Yeah.   Steve: Well, hey thanks for-   Dallin: I told Kristian, the other ... Oh, I'm sorry.   Steve: No, no, you get a say. Thanks for letting me wake you up at the butt crack of dawn and still being willing to share some cool stuff.   Dallin: Yeah.   Steve: How did you guys start meeting or working with each other?   Kristian: I'll let Dallin take that one.   Dallin: Yeah. I was working on a kind of unique project. We had a guy up in Scottsdale that owns a software. He's the developer. It's a software that does algorithmic stock trading and he was stuck with his marketing. He's a big guy. He's got a lot of stuff going, but anyway, we were trying to help him get some plans going.     I had actually watched Kristian on Periscope. I'd met a lot of guys on Periscope and one day I noticed Kristian was actually in Chandler, which is only a few miles away from me. Like I said, if I see someone, I'm going to find a way to meet him, so I'll comment in his Periscope a few times and little by little, end up getting his contact info. Day later we're in a Starbucks together talking about a plan that we can do, well I was more impressed with Kristian, what he was doing. My partner that I was working on with this marketing plan for this software developer, we were on kind of different pages. I have a background in sales and Kristian's dynamic was a little more my still, so my partner ended up leaving and I ended up asking Kristian, "Hey, is there anything on the side that you're working on or that I think we can do together?"   Steve: Mmm.   Dallin: Badda bing badda boom. We've ... I feel like it's the perfect love story. We've been hanging out pretty much ever since.   Steve: As long as he says the same thing, I guess that is true, right?   Dallin: Yeah. Yeah.   Kristian: Yeah, no. The funny thing, Steve, about Dallin is I'd been with ClickFunnels, I was one of the first 50 people that signed up for the beta version of ClickFunnels.   Steve: Wow. You're from the dark ages, Man, that's awesome.   Kristian: Dude. Yeah. We were just talking yesterday because we literally I mean the crazy part ... I'd been so resistant to start using Actionetics.   Steve: Yeah.   Kristian: Until I had to transfer from Infusionsoft to AWeber, AWeber to ActiveCampaign and we're trying to do something and it's like, "Dude, why don't we just use Actionetics?" It's all in here." I'm like, "Fine." We're switching everything over and I needed ... I'd been doing funnels and learning about ... like when I first signed up for ClickFunnels, I didn't know what a funnel was. I wasn't even sure what Russell had explained to me. It just sounded so cool and I was like, "Dude, I'm going to figure this thing out because what he's talking about and the numbers, I'm like, "That's what I need to be doing. That's it." I been doing this for two and a half years, which is kind of a long time in funnel years.   Steve: Yeah. Yeah, it is.   Kristian: It's not really that long of a time in regular terms, but I got on Periscope and started kind of talking about my business. At the time, I was trying to grow this fitness, be an online fitness guy.   Steve: Yeah.   Kristian: I'd used funnels to grow an email list of 3,500 people and I got on to Periscope and nobody cared about the fitness. They wanted to know how I was growing my email list and how I was doing my, how was I doing this business.   Steve: Interesting.   Kristian: Then I kind of became one of the funnel guys on Periscope and was a speaker at the Periscope Summit. I got this notoriety on Periscope for, they call me the King of Funnels. I'm like, "No, guys. I know some really big funnel guys on Periscope." They're like, "No, King of Funnels."   Steve: Wow.   Kristian: It's been like two and a half years of this little journey of learning funnels where it's been ... I'll tell you the three guys I credit everything to are Russell, Todd Brown and [Lo Silva 00:06:09].   Steve: Mmm.   Kristian: I actually had just finished the PCP coaching program with Todd Brown and those guys. Dallin, when he came to me was like, "Dude, this stuff you're talking about is awesome." I said, "Well, let's, I need a guy that gets it. That is driven and ... " that was Dallin. Now we've got this little, little agency we're trying to scale.   Steve: That's awesome, because good partners are hard to find. I remember I started doing this back in college. My buddy and I were driving traffic for Paul Mitchell and we were doing all this stuff. I ended up firing, going through nine different partners. It's cool that you guys found each other, you know what I mean? That's pretty rare just right there.   Kristian: Yeah. If you go back and talk about Dallin's ... there's a couple of key things that I was looking for, because I have an entire course. You love Periscope. I saw some of your Periscopes on YouTube and ...   Steve: Dang it. Man, those were the new days for me.   Kristian: Yeah. I was a speaker at the Periscope Summit in January.   Steve: Cool. Wow.   Kristian: Dallin's helped me develop this program and it's something that we've rolled out in beta and we're going to roll out as a digital product. It's called the Live Video Funnel. I've been working with Todd Brown and the guys at MFA on the entire sequence and the packaging and all that kind of stuff. They're calling Kurt [Malley 00:08:00] speaking at Marketing Funnel Automation Live in October and one of the things they're saying is that the biggest opportunity of 2017 is, they call it the Facebook Live Funnel, but I'm going to let you guys in on a little note. Facebook Live and Periscope don't work the same way. Even though they're both live video, they're different, so Dallin ... I needed somebody to help me with that aspect. I couldn't ... to be honest, you know this Steven,   Steve: Yeah.   Kristian: I couldn't do all that, every single thing, every single aspect of a funnel.   Steve: No.   Kristian: The script writing, the copy writing, the editing, the videos for the VSL's, the strategy, the email marketing sequences, all the social media.   Steve: Yeah.   Kristian: What I'm really good, compliments what Dallin's really good at, like I said, his ability to get in on Facebook and recruit people. He has this really strong sense about building a team, which is one of those things that ... we both get along with people, but Dallin's good at that recruitment process. When you want to build and scale something and you need the right people, you need somebody like that.   Steve: That's awesome. That's awesome. Yeah, it's hard to find that stuff. Dallin, you and I, we were talking a little bit about some of the trials you guys went through. Obviously individually you do, but you guys met each other, what have you guys been working on and I guess what was the ... What are some of the issues you guys have run on, I guess, getting to where you are. You know what I mean?     Unspoken stories, you know that where none of us put in our marketing hardly ever unless it's part of our sales letter. "I was in the dumps, but now I'm flying high." These are like, really what kind of issues did you guys run into what you're doing now? What are you doing now, first of all?   Dallin: Well, the majority of our issues actually are from more individual sides. We're actually doing really good with our projects together.   Steve: Mmm.   Dallin: Your typical issues you run in together are testing. That's what funnels are, right, it's testing, testing, testing, testing. There's always that down side until you ... it's just a numbers game, right, until you find something that works. As far as the personal side, because I believe that this kind of runs, this is the fire that's on the inside, the Y factor from what I call it, right. My background's in sales, so I did door-to-door for years. I think, Steven, you've mentioned that you flirted with that a little bit but, I was really good at it.   Steve: Yeah. Yeah. That's like, I'm sorry to interrupt, but that's one of the best educations I've ever had.   Dallin: Yeah. Yeah.   Steve: I've got a marketing degree and I don't know what I learned from it. You know?   Dallin: Well, that's actually just what I was going to say. I was going to school for business and marketing and be honest, my classes were super redundant. I hated them. I was like, "Man, this is for years I've been planning on doing this and ... " Anyway I got into sales and I did pretty good at it. I just kept going. I ended up doing more recruiting and for six, seven years going out on the summers and taking a team out and helping manage and recruit and sell.   Steve: Yeah.   Dallin: You learn so much from just talking to people, the sale cycle, funnels, a different type of funnel, right?   Steve: Yeah.   Dallin: Learning how to build value to the point where it doesn't matter what you ask for money, because they love it so much that they're going to buy. It taught me a lot. Well, long story short, I made my transition. I was doing alarms and home automation. I made my transition with this solar boom.   Steve: Mmm.   Dallin: Solar's on fire and fortunately for us, we live in Arizona, one of the sunniest places in the world. Solar was hot, but a lot of stuff was happening politically. A lot of the utilities are trying to shut down solar here just because of different costs. It's a mess. They succeeded and actually the utility ... There's two main utilities in Arizona. They succeeded shutting down solar where I live.     In order for me to get work, I'd have to go an hour a day just to prospect clients, let alone keep my pipelines, my relationships, my contracts, everything going, because they're longer projects. It was really funny because I was really bummed because I was really excited about this transition. It was a huge jump for me because we were so comfortable with what we were doing, making awesome money and it was kind of just this really big leap of faith. Well, last April, fast forward a little bit, last April, our little girl, our daughter, she was four years old. She got diagnosed with leukemia.   Steve: Oh man.   Dallin: When that happened, we literally were going to leave for another summer, two days after she was diagnosed. It was crazy. Everything was just happening and days and days and days sitting in the hospital. I had always wanted to do something online my whole life, but I didn't want to ... I didn't know exactly what was happening. I didn't know where I wanted to put my foot in. I didn't want to mess with inventory and selling one off things. I wanted to do something on a big level. I just didn't know how to do it.     In the hospital you got a lot of time to yourself and so I'd study these things. I'd start looking at different processes. I'd find patterns. I would sign up for everyone's email list, not because I cared about their product. I wanted to see their system. I wanted to study the funnel. I wanted to study the email sequences and I started seeing the patterns.     That's when I kind of got into a lot of this other stuff with Periscope and live stream. I was like, "Man, this is the future. I get it." I think every guy that's doing any sort of digital marketing has a day where they, it kind of clicks and they say, "Holy smokes. I can really ... This is powerful. This is how you can reach a lot of people." What everyone wants to do is have a voice and do something.     I ended up switching my major, going to school for persuasion and negotiations were my sayings. I was a business communication major and I had that emphasis in persuasion and negotiation. Looking back on everything now, it was just perfect. Everything kind of worked out really, really good. I was kind of like, my little side, so we really hit this kind of rock bottom where it was like ... financially we took a massive hit because I wasn't able to go out, drive an hour and do all this kind of stuff. This last year-   Steve: Yeah. You needed to be home. Yeah.   Dallin: This last year has really been an investment of my time and I just kind of feel like I went back to school. I feel like I'm getting way more out of this school than four years of collegiate, right?   Steve: Easily. Man, how's your daughter now? If you don't mind me asking.   Dallin: She's awesome. She's in a maintenance phase right now, got another year left of treatments, but she's ... hair's back and muscles coming back and went back to school. She's in a really, really good spot right now. Appreciate it.   Kristian: She's strong too. You should see her.   Steve: Really?   Dallin: Yeah.   Steve: That's amazing.   Dallin: It's from everything that she went through. She got down to, had to relearn to walk, lost all her muscles. She was a little skin and bones and now she's this little muscle ball.   Kristian: Now she's a beast.   Dallin: She's awesome.   Steve: I appreciate you guys sharing that kind of stuff. I mean it's ... because most of the ... I've never interviewed anyone on this who hasn't gone through something crazy, you know. It's not like the path is always clear, either. Usually it isn't.   Dallin: Yeah.   Steve: There's a lot of times I wake up and come here, I'm like, "I don't even know. I know I got to work on something, but I don't know what." It's like going through this hazy fog, so I appreciate that. Then there's all the personal side and all the things going on. Yeah, I first started getting into this stuff, little bit similar with door-to-door sales. I started looking around going, "What the heck?" We're driving out and there's all these billboards everywhere. I was like, "People call these things ready to buy." I'm knocking on people's doors all day long and they're not wanting to buy it when they wake up. I've got to go convince people who weren't planning on spend money. Like, "How do I do this?" I start putting ads everywhere and that's how I started getting phone sales and stuff. I was like, "There's something to this." Anyways, I-   Dallin: See, that's funny because I was kind of the same person. All the other managers are, "Dallin, stop trying to reinvent the wheel. It works."   Steve: DS, yeah.   Dallin: DS, this. I'm like, "No, guys. There is a better way." My motto in everything in life is there is always a better way. I don't care what you say and what's working. Something can be tweaked and something can be done to scale.   Steve: Yeah. Yeah, definitely.   Kristian: Which is funny, because Russell always says, "You can tell the pioneers because they're lying face down with arrows in their back."   Steve: Yeah.   Kristian: I guess in this case, it wasn't really pioneering. You were trying to find the people laying face down.   Steve: Yeah. Yeah.   Dallin: Yeah.   Steve: Side stepping all the other people who were already face down because they knocked 400 doors that day, right?   Dallin: Yeah, seriously.   Steve: What are you guys working on right now though? You guys mentioned that there's some awesome things going on. What's your current funnel, if you don't mind talking about that? [inaudible 00:18:19] sounds like, maybe ...   Kristian: Dallin said like perfect timing. I feel like it has been. We joke about being a startup because ultimately we are, to the point that we're even in the process of creating our business plans and our SOP's and all that kind of stuff, so that we can talk to some investors. We have some investors that we're talking to in order to really have the capital that we think we need to be able to scale this thing quickly, instead of Facebook ads tested at $10 a day for 50 weeks.   Steve: Yeah. Yeah.   Kristian: Yeah. The whole reason I got into learning funnels was, you guys talked about door-to-door sales and I have 15 years of commercial real estate experience. I worked with clients like L.A. Fitness and McDonald's. I represented McDonald's for the state of Arizona and Burger King and Taco Bell, so pretty big name companies.     There's a lot of guys that would be happy with that, but the problem I had was that I kept looking at the deal size of what I was doing. It was constantly kind of like this feast or famine situation where you either had a huge check or you had nothing. Literally, nothing. It kind of got to the point where I was like, "Man, there's a better way to do this." Very similar. You guys hear the consistent theme here? There's a better way.     That was kind of the first step of me saying, "I'm going to figure out how to streamline this" so that it wasn't even so much ... I just kept seeing all the guys that were buying the properties doing all these big deals. They weren't even in real estate. They had these other businesses that were generating cash flow and here I am putting these deals together that are making, Dallin and I had this exact conversation, making these guys over a million dollars and they're like, "Oh hey, thanks. Here's 40 grand."   Steve: Yeah. Yeah.   Kristian: What's wrong with this equation? I'm the one that did the whole thing, the financials and all that. I just didn't have the money. That was the start of it.   Steve: Yeah.   Kristian: Then you add on top of it that we got into a network marketing company and did really well, but we got stuck right under about 10 grand a month for like 18 months. It turned into another full time job where I was 40, 50 hours a week at every Starbucks from east to west meeting people. I'm like, "This is not working."   Steve: Yeah.   Kristian: Those two combined, I was like, "If I get online, I can figure out how to do both of these. I don't have to pick because I can leverage myself."   Steve: That is kind of the funny thing I learned about ... because I got into an MOM. I went and did exactly what my upline was saying. Got 13 people my first move.   Kristian: Oh, wait, your [inaudible 00:21:42] not duplicatable.   Steve: No. Not at all.   Kristian: I don't care. If I find enough of the right people, it won't have to be.   Steve: Yeah. Yeah. My first month, I recruited 13 leeches. Man, they wouldn't do a dang thing unless I was like pushing them in the back with a cattle prod. I was like, "Ah. There's got to be a better way to do this." That's why I took it online and did a lot better. I definitely relate with that.   Kristian: Yeah. The crazy part about this is, like Dallin was saying, he's, shoot, some of the advanced strategies ... Dallin's has this like ... he understands and can see what the outcome is that we're trying to do. He gets it. He gets the whole flow and process of this, of how funnels work. He's been studying them. I just think for a big part, he just needed to connect certain pieces and be able to see what's going on behind the scenes that you can't see online.   Steve: Yeah.   Kristian: We talk about ... the hardest part about knowing how to do funnels is focusing because when you understand it and it clicks and you realize what you can do, it's like .... Someone starts talking you're like, "Oh my God. I know how to make money with that. Oh my God."   Steve: Yeah.   Kristian: It's like entrepreneurial ADD exacerbated.   Steve: Yeah.   Kristian: Forget entrepreneurial ADD. This is like an entrepreneurial ADD addiction.   Steve: Yeah.   Kristian: That's the issue, so we've had to get very focused on okay what's the quickest and most pressing thing at the moment that we can make money with, so that we can reach our long term goals. Like I said, Lo Silva is one of the guys that I credit a lot of what I learned from. There's three little things that I take from them and that's think big, start small, scale fast.   Steve: Interesting. Think big, start small, scale fast.   Kristian: Yeah, that's kind of our little mantra.   Dallin: Yeah. That leads into basically what we're doing now. Our whole plan without getting too much into detail is we have a very, very big picture. Just like a funnel, we have our personal value ladder. Our big picture is more in investments, real estate, things like that. Those are our high tickets. Right.   Steve: Yeah.   Dallin: For the time being, we need to make sure that we couple that with clients, so we have our lead gen system, our agency that's doing multiple things, SCO work and funnels, and social media strategies and management and that way it can help us scale. Our agency essentially fronts the bills and I guess the best way to put it is we want everything that we do to be self-sufficient. If we build something, the entire goal-   Steve: Keep it in hands.   Dallin: Well, yes and no. The entire thing is for that project to sustain itself, so you understand once you get going with your Facebook marketing and such, it gets to the point where you reinvest X amount back into it. Then it lives, it breaths on it's own kind of. It just needs to be monitored, right.   Steve: Yeah.   Dallin: If we have this solid balance between us of we have clients coming to us for done-for-you services, that's awesome. That's cash. That keeps us busy. That keeps workers of ours busy. Then in the meantime, if we can couple that with 40, 50% of our other time for in-house projects, because Kristian and I already have entrepreneurial ADD, we're always thinking of ideas. We always have something going on or a lot of times a client that comes in has something that sparks an idea.   Steve: Yeah.   Dallin: We'll, like you said, we'll keep them in-house and then we funnel them. We get them to the point where they self-sustain and all of a sudden, we have our house projects, our client projects and it's just a very healthy business model. You don't see a lot of very sustainable and scalable models. You know what I mean?   Steve: Yeah.   Dallin: Especially, because I've been with very, very, very big companies with these companies I've sold for and you find ... one of the things I like to do is study patterns and development. I'm really into the business development side of things. You look at the ones that have made it, that have succeeded and that are scaled to the massive, massive billion dollar companies and that's kind of what they do. They make sure they have kind of that happy medium, that solid balance in all these different areas and factors and that's kind of what we're trying to do.     One of the projects we're working on right now is a political campaign funnel. This is just one that's easy to scale and we're just pretty much hacking it and taking advantage events which one of the things coupling social media with funnels is current events, man. That's, they kill. If you can find something trending and good and that has ... that you can milk for a long time, you better believe we're going to find a way to make, pinch money out of it, right.   Steve: Yeah. Isn't it the-   Dallin: I'll let Kristian talk about that.   Steve: The political campaign funnel, is that the one you downloaded I think from Sales Funnel Broker?   Kristian: Ah, no.   Steve: Maybe that was you, maybe it wasn't. I don't know. There's some guy, he downloaded it and came back and he's like, "This is the coolest thing ever." I was like, "Just the share [funnel 00:27:53] free one I got from someone else. Glad you like it."   Kristian: Yeah, no. I got the idea from actually from Funnel ... I got part of the idea from Funnel U. To be honest, as much as we know about funnels, something clicked when I watched Russell's video inside the membership site for the political bridge funnel, where it was like, "I see it." It was that coupled with the, the funnel stacking I got that whole idea of moving them from a front end funnel to a webinar funnel to a high ticket and how you stack those.   Steve: Sure.   Kristian: Bridging and when all the sudden the bridging made sense to me, I said, "Oh my God." Just like what Dallin was talking about here. Ultimately our goal is to, take the same amount of time to do all this work to go and work with somebody and do a commercial real estate transaction, where we're an investor or we're buying the property and people are investing with us, as it does to sell a t-shirt. Just time is time, it's just the size of the value and how you frame your mind around it. We are in the process of growing our agency. The whole point of it is to, if you think of construction companies, really good construction companies constantly have work that's in place to keep their employees working, so that they have the best team, right.   Steve: Mmm. Yeah.   Kristian: That's what they're always talking about is we just have to keep work so we can keep these guys busy. It's not about keeping them busy, but we also want to have the team in place because ultimately when we have our ideas, we can get them shipped quicker.   Steve: Yeah. I've been approached by a few people lately and they're like, "I got these awesome guys. I absolutely love them." He's like, "What work do you have? I just don't want them to go anywhere else." He's like, "I don't care what it is. I just got to bill."   Dallin: That's exactly what it is.   Steve: Yeah, interesting.   Kristian: Yeah. That's the idea, but to get back to what we're doing right now is I got the idea of how Russell explained the political bridge and my dad had ordered 100 t-shirts from my best friend. My best friend did all the screen printing for the Super Bowl in Santa Clara.   Steve: Jeez.   Kristian: He's got one of the largest screen printing companies on the west coast, based here in Phoenix. He has a company very similar to what Trey Lewellen started with Teespring.   Steve: Interesting.   Kristian: He's set in and he came to us and said, "Hey, why don't you partner with me and just handle the marketing on this." He's talked to me about doing some marketing for them for different aspects of their company. Now we're working together and the whole idea came up I said, "Well, you know what? I think I can do it." Before I was hesitant because I was like, "Well, I'm in the digital media space. I'm selling digital products." That was big hangup was I've got to sell to these entrepreneurs.     Then when this political bridge funnel that Russell talked about when he talked about how you move people from this list to this list, I went, "Oh my God. I can build a list in anything. I can just bridge them." It was a combination of that video inside of Funnel U and my participation in Todd Brown's PCP, Partnership Coaching Program, where they were really working on educational based marketing, and script and copy writing. The confidence level in my own ability to write copy had shifted to where now MFA is outsourcing some of their done-for-you client work to Dallin and I and having me write copy and script for their video sales letters.   Steve: What?   Kristian: Yeah.   Dallin: That's real, man.   Kristian: That tells you the ...   Dallin: We scale fast. Remember that third principle. We scale fast.   Steve: Yeah. Yeah. I wrote all those down. That's amazing. What's funny is that people don't realize that it literally is the exact same amount of work to do a small company as a big one.     My buddy, I mean as far as building a funnel and things like that, my buddy and I were building an [inaudible 00:32:11]. It was the first funnel I ever built with ClickFunnels and it was a smartphone insurance company and we were ... we got out of that for a lot of reasons, but it was interesting though because I was building it. We put it all out. That's actually when I got into ClickFunnels and it was right after ClickFunnels left beta. I was like, "Hey, I'm going to build this whole thing out before my ClickFunnels trial runs out." I'd never built one and I just killed myself for the next little while. We got it out.     Then this guy approaches me in Florida. He's like, "I need a funnel for some of my ..." He was selling water ionizers or something. I was like, "Oh man. This is a big company. They're already making a couple million a year." I was blown away. I was like, wait, this is the same exact amount of work as it was for the small little startup. Anyways, I thought that was interesting you said that.   Kristian: Yeah. That's what we talk about is that it's easier to work with those bigger companies. They get it.   Steve: Yeah.   Kristian: You work with the smaller companies and they're worried about how much money it's going to cost them. The reality is that the more we put ourselves in a position to work with guys like you and Russell and guys like Todd and Lou Coselino and David Perriera and all them at MFA, they're saying, "Man, why are you, how come you're not charging double and triple?"   Steve: Yeah.   Kristian: Dallin and I are sitting here like seriously if they're willing to pay us to write scripts for, to outsource their ad copy to us for some of their client work, what's that say? I mean, we're literally working with, doing work for the guys that are considered the best in the industry.   Steve: That's ... Yeah. Yeah.   Kristian: It's just a mindset shift is what it is. That has made it a little easier to have a conversation with someone and say, "You know what? We can take on this project. Here's how much it is."   Steve: Yeah.   Kristian: They're like, sticker shock. Well, sticker shock. You can go and just have someone build the pages for you, but it's not going to convert. I know that for a fact because copy os what converts, right.   Steve: You know Tyler Jorgensen?   Kristian: You know what, it sounds familiar. I think I-   Steve: He said the same thing to me. He's like, "You charge 10 grand to build a custom funnel?" I was like, "Yeah." He's like, "Why not 15?" I was like, "I don't know. I'd never thought about that before." I thought 10 was kind of the mark. He's like, "No, no, no, no. I'd do 15, 20, 25." I was like, "You've got to be kidding." That is is just a mindset shift. You'll get better people to build for anyways, whatever it is.   Kristian: The big thing for us-   Dallin: True and at the same time ...   Kristian: Yeah, I don't know.   Dallin: You there?   Kristian: Yeah, you cut-   Steve: Kind of lost you there.   Kristian: The big thing for us is really to build a team, Steve, and to have that team in place and be able to have people that focus on all the different areas of the funnels, so that they get really, really good at that. They don't have to know the whole process because that's what I've spent the last two and a half years doing, right.   Steve: Wow.   Kristian: They can be part of this and be part of building something and helping these clients and really enjoy what they're doing. Then, like I said, when we have these ideas we can ship them. I know you want to know and your audience probably wants to know what it is that we're doing, which is what got you in. I mentioned my friend, Bryant. He's got this company like Teespring. He's got everything in place to roll this out. We had this idea for how to start doing that. We took advantage of knowing that the campaigns going on right now. I mentioned to you I think my dad bought like 100 Trump t-shirts from him. I was like, "Those are really cool shirts." My dad's like, "Yeah, man You should do this funnel stuff and figure out how to sell these to everyone. Look how crazy everyone is about Trump. Trump's going to kill it." At the time, it was still in the Republican Primaries. I'm like, "Well, I don't want to go build a funnel."   Steve: Yeah.   Kristian: "Then trump doesn't win the primaries." But as he started pulling away I'm like, "Oh, let's start testing some stuff." We tested one funnel and surprisingly the Facebook campaign got a lot of clicks, but there wasn't a lot of opt-ins and conversions on the funnel. What it did and I think this is one of the biggest skill sets that people who are elite develop versus people that are frustrated and saying this isn't working for me is understanding the information that they're getting and what to do with it. You might not have a winning campaign or a funnel that's making money, but to understand what kind of info you're getting and how to use that to do the next thing is that whole testing process is what separates those that are killing it from those that are getting killed. That first funnel that we did, didn't make money. Not at all.   Steve: Yeah.   Kristian: I mean it lost $1,200. I went to Dallin and I said, "Dude, this is awesome." He's like, "Huh?" I said, "Look at the retargeting list that we got." Then we went and we tweaked this and I said, "What if we change the front end," and at that time Mike Pence had just been named Trump's VP. I'm like, "Who the hell is Mike Pence? I never heard of this guy before." I started asking people, they're like, "No." Unless you're from Indiana, you don't know who Mike Pence is. I go, "Should Trump have picked Mike Pence? Isn't there someone else." I'm like, "Boom. Is there a vice presidential debate in the Republican Party?"   Steve: Yeah.   Kristian: We created a little mini survey around is Mike Pence the right one. First of all, you've got all these people that love Trump and they're hardcore republicans and now you're creating an internal debate. Everyone wants to voice their opinion, but they don't want to be judged.   Steve: Yeah. People get pretty intense about that for sure.   Kristian: Yeah. We created a mini survey.   Dallin: Oh yeah.   Kristian: We created a mini survey and we had this retargeting list from the first time and we started running ads. I didn't expect and I don't think Dallin either, that it was going to do as well as it did, but I mean, we had in less than 12 hours, we had 500 email opt-ins.   Steve: What? Oh my gosh.   Kristian: I was like, "Oh my God." I'm like, "Holy crap." I'm like, "What the hell's going on?" Of course the first goal is to try and get the funnel to break even. What we had to do was we were getting so much information so quickly that we really had to be on our toes and make adjustments and modifications. What we figured out through the first week of testing this is there's so much activity on this funnel. Just to give you the stats, after what was Dallin, really 6 days of running the ads, we got 2,600 email subscribers?   Dallin: Five and a half, yeah.   Kristian: Yeah. Five and a half days, we got 2,600 email subscribers.   Steve: Wow.   Kristian: K, the funnels not at break even, but here's what I want whoever's listening and whoever wants to take this information understand is the testing process. We figured out between two front end offers-   Steve: Which one was the winner.   Kristian: Which one's working better.   Steve: Yeah. Which one's the awesome one. Yeah.   Kristian: It's still not winning. Our free plus shipping is not, it's not helping us break even. The reason for that is because we're getting so many opt-ins. On a normal free plus shipping, you're not getting as many people clicking on the ads, right.   Steve: Right.   Kristian: Well, we're getting 5, 6 times the amount of people subscribing to the email-   Steve: Would you, in that scenario, would you ever try and get even less people. It'd be counter-intuitive maybe, but I would just start tweaking the free plus shipping, I guess.   Kristian: No. No. Well, no. We can't-   Dallin: The strategy-   Kristian: Yeah. We can't really tweak it because it's not like we're going to offer anything cheaper than free plus shipping. When you start looking at all the different things we can offer, there's not a lot of options, but here's what Dallin and I have figured out is that we think we've created a new funnel. It's not really new in the sense of what you and I and Russell and all these other guys think of.   Steve: True.   Kristian: In terms of Russel and [Daygin Smith 00:41:29] coming up with the black box funnel, right.   Steve: Yeah.   Kristian: It's just soft offer funnel, a front end soft offer. We think that we've come up with what we call a backdoor funnel.   Steve: Interesting.   Kristian: You get so many people on your email list. You get as many people to take the first offer and you get as many people to take your upsell as possible to figure out how close to break even you can get. If you look at 2,600 people, we go back and look at the numbers, only about 115 of those 2,600 ever saw the offer.   Steve: Huh.   Kristian: Now we have an opportunity to present those people with the offer again. Well, how do you do that in a way that's going to get a lot of people to open the e-     All right. Want me to ...We cut off here at the point of high dramas. As I was mentioning, we got so many email subscribers and such a lower number based on the email subscribers because we didn't expect to have that many, that we still weren't at break even, but we have a ton of people that we can show an offer to. It's a little different obviously because our price points ... We're doing apparel and things like that.   Steve: It's like delaying the offer almost on purpose, right. I mean this is ... awesome.   Kristian: Yeah. Remember, we started this whole thing with a survey, right, something that people were very passionate about, so a lot of polarity in there. They want their opinion-     They also want to know what everyone else thinks, where they fall in line here. We thought, "Oh my God. Somebody that votes, that voices their opinion, takes the time to put a vote in wants to know what the results are." We created a results page that shows them the results and has a special offer that all those people haven't seen. When we send it in the email and we tell them here's the results of the survey, the open rates are and the click through rates are sky high.   Steve: How long are you waiting to actually send them this results page?   Kristian: A couple of days, so-   Steve: Oh really. Wow.   Kristian: Yeah. I mentioned Actionetics. The whole reason that we started doing this is because we wanted to ... since we're having people take a survey and we're offering them this gift, we want to make sure we get as many people that take us up on that gift for taking the time to vote. We have a few of those triggers built in there, "Hey, don't forget to grab your free gift. We noticed you took the time, maybe something happened. Go back here and grab your gift." Then we make sure that everybody sees the results page a couple of days later.   Steve: A couple of days. That definitely is a different style for sure. You don't think that hurts conversions at all?   Kristian: No, I mean. It's a survey, right?   Steve: Sure.   Kristian: The point of high drama and the suspense and all that. We're still testing it, again, like I mentioned earlier that the biggest thing I think that separates those that are successful and those that aren't is to understand the type of information that you get.   Steve: Yeah.   Kristian: We may found out that we need to send the results sooner, but we don't know. We've got to test.   Steve: It's interesting positioning too of you saying, "Hey. It look's like. Thanks for taking it. Here's your results. I don't know if missed this, but just jump back and get that." That's interesting. Like they missed it. They missed the gift.   Kristian: Yeah. Yeah. "You forgot to grab your gift." That's our first step and then in the email that comes after they've taken the survey, "Hey, we're in the process of tallying up the results. We'll send them to you as they're updated."   Steve: Interesting. It keeps the loop open, basically.   Kristian: Hmm-hmm(affirmative). Exactly. Exactly.   Steve: Man, that's awesome. Well, hey is there a URL that we can go check that out on? I don't want to pollute or dilute any of your stats, so if not that's fine, but ...   Kristian: Yeah. We're just running ads to this right now.   Steve: Good.   Kristian: We're in the process of, like I said, this was just an idea that my dad came up with. I've got to give him credit for the initial idea, but now it's turned into kind of a new business entity, right.   Steve: Yeah.   Kristian: We're growing this email list and the concepts that Russell talks about the how to bridge funnels and lists and things like that. We're starting to build a list now in that republican, conservative, survivalist category. We're going to take it a step further and build out a home page and start doing some different stuff with it.   Steve: That's interesting. You're going to go through and who's going to keep opening all the emails over and over again, looking at all the stats of all the people around. These are the hyper active political caring people. You know what I mean? That's awesome. That's a really clever way to segment out those people. That's fantastic.   Kristian: Yeah. Yeah. You never know where your next business entity is going to come from.   Steve: Interesting. Gosh, well, hey, I know we've been on quite a while. Thanks for dropping all the bombs of gold you guys did. I don't know what happened to Dallin, but ...   Kristian: Yeah. He just texted, said thank you. He's trying to get back on, but I know we've got to take the kids to school and stuff, so-   Steve: Awesome. Well, hey man, I appreciate it. Thank you so much and this was awesome.   Kristian: Well, thank you so much. I appreciate it, Steve. Love meeting new people that are doing the same thing as us and glad that we can reach more people that are trying to learn how this works and kind of help them understand the process and that if they just stick at it and keep testing. That's really the big thing I think is testing and learning is how you get better at it.   Steve: You're kind of a scientist going through this, for sure. Going in an industry you know will make money obviously, but whatever you're doing specifically, you might almost always be the first. The think big, start small and scale fast. That's huge.   Kristian: Yeah. If anyone wants to connect with us, Dallin and I are both on Facebook. We mentioned Periscope. I do a lot of broadcasting on there with what I call the Live Stream Marketing Funnel Show. We're rolling, if people are interested in learning how to use live video, we've got that coming out. Yeah. Connect with us on social media. Kristian Cotta and Dallin Greenberg.   Steve: Okay, yeah. Then you've got the Health Success Podcast. Guys, go check him out at Health Success Podcast as well as he said Live Stream Marketing?   Kristian: Well. Yeah. Just go to KristianCotta.com. It'll take you right there.   Steve: Cool. Awesome.   Kristian: Kristian with a K.   Steve: Kristian with a K. Cotta, right?   Dallin: I'm in.   Kristian: Kristian with a K. Cotta. Dallin's in here. He just got back in.   Dallin: Dude, I don't know what happened. I was getting all excited what Kristian was saying and then just cut off.   Kristian: It's the point of high drama, that's what we were talking about.   Dallin: I know. It was. That's what I told Amy. Is it over?   Steve: It is now.   Kristian: Yeah. We're just wrapping it up.   Steve: Awesome.   Dallin: Sorry.   Steve: It's good. Hey, thanks guys so much.   Kristian: All right. Take care, Steve.   Dallin: See you man.   Steve: All right. Bye-bye.   Speaker 4: (music starts) Thank for listening to Sales Funnel Radio. Please remember to subscribe and leave feedback. Have a question you want answered on the show? Get your free t-shirt when your question gets answered on the live Hey Steve Show. Visit salesfunnelbroker.com now to submit your question. (music ends)

Devchat.tv Master Feed
022 iPhreaks Show – Networking with Steve Madsen

Devchat.tv Master Feed

Play Episode Listen Later Sep 26, 2013 58:25


Panel Steve Madsen (twitter github Light Year Software) Andrew Madsen (twitter github blog) Ben Scheirman (twitter github blog NSSreencast) Jaim Zuber (twitter Sharp Five Software) Pete Hodgson (twitter github blog) Rod Schmidt (twitter github infiniteNIL) Charles Max Wood (twitter github Teach Me To Code Rails Ramp Up) Discussion 00:45 - Going Rogue Video 01:21 - Steve Madsen Introduction Light Year Software 02:00 - Networking with iOS WiFi Connection Speedtest.net HTTP Live Streaming 07:58 - Bandwidth and Quality of Connection 12:23 - Network Link Conditioner 15:29 - Reachability 24:27 - Networking Gotchas 26:54 - NSOperation Dependency 29:41 - AFNetworking RestKit 33:54 - Logging of Networking Requests and Response Runscope 38:49 - Networking Technologies 41:27 - WebSockets faye SocketRocket 45:48 - Fallacies of Distributed Computing Picks ARC vs. MRC Performance (Andrew) Machine language: how Siri found its voice (Andrew) Philips hue (Ben) hue (Ben) CopyPasteCharacter.com (Ben) Glyphboard (Andrew) Lawyers (Jaim) Runscope (Pete) estimote (Pete) Acme Pale Ale from North Coast Brewing (Pete) XCOM Enemy Unknown (Pete) RubyConf (Chuck) Airbnb (Chuck) Platform University (Chuck) Little Snitch (Steve) Upton Tea (Steve) Clojure: Enemy of the State (Rod) Hire Rod (Rod) Next Week Build Automation with Patrick Burleson Transcript CHUCK: Hey everybody and welcome to Episode 22 of The iPhreaks Show! This week on our panel, we have Andrew Madsen. ANDREW: Hi! I’m not a robot; I’m just going to [unclear] [Laughter] CHUCK: Ben Scheirman. BEN: Hello! I’m eagerly waiting of the arrival of GTA 5. So if the doorbell rings, I may run to go get it. CHUCK: Alright! Jaim Zuber. JAIM: Hello from Minneapolis! And also, not a robot. CHUCK: Pete Hodgson. PETE: Good morning from…I am not a robot. [Laughter] CHUCK: Rod Schmidt. ROD: Hello from Salt Lake! CHUCK: I’m Charles Max Wood from DevChat.tv. Before I introduce our guest, I just want to make a real quick announcement. This Friday, meaning last Friday when you get this episode, was my ‘Freedom Day’. It was the day I was laid off from my job 3 years ago and went freelance. I’m celebrating that by putting up a free video that kind of chronicles my journey through freelancing and going from laid off to actually making enough money to live on. I’m going to have a lot of lessons that I learned in there and stuff, so if you’re interested, you can get that at GoingRogueVideo.com. BEN: Whoo-hoo! Congrats! CHUCK: Thanks! We also have a special guest, and that is Steve Madsen. STEVE: Hello from the Columbus, Ohio. CHUCK: Can we get you to introduce yourself real quick? STEVE: Sure! I own Light Year Software, which is a small consultancy here in Columbus specializing in Rails and iOS development. I’ve been doing that for about 7 years now since relocating back from the San Francisco Bay Area. CHUCK: Was it named after the unit of measure, or the cartoon character? STEVE: Unit of measure. CHUCK: Okay. STEVE: I was looking for something science-y. CHUCK: Awesome. PETE: What’s the cartoon character? CHUCK: Toy Story. Buzz Lightyear. PETE: Oh! Oh, yeah. CHUCK: Alright, we brought you on to talk about “Networking”. STEVE: Yes! That’s a big topic! CHUCK: I was going to say [laughs] it was kind of a broad topic. What in particular is interesting about networking with iOS or Cocoa? STEVE: Specifically about iOS, obviously, we’re talking about mobile devices. I think it’s safe to say that since mobile devices became as popular as they did with the introduction of the iPhone, the possibilities on how for us to build apps that communicate back to servers or communicate with people nearby have gone up a lot. CHUCK: Yeah, that makes sense.

The iPhreaks Show
022 iPhreaks Show – Networking with Steve Madsen

The iPhreaks Show

Play Episode Listen Later Sep 26, 2013 58:25


Panel Steve Madsen (twitter github Light Year Software) Andrew Madsen (twitter github blog) Ben Scheirman (twitter github blog NSSreencast) Jaim Zuber (twitter Sharp Five Software) Pete Hodgson (twitter github blog) Rod Schmidt (twitter github infiniteNIL) Charles Max Wood (twitter github Teach Me To Code Rails Ramp Up) Discussion 00:45 - Going Rogue Video 01:21 - Steve Madsen Introduction Light Year Software 02:00 - Networking with iOS WiFi Connection Speedtest.net HTTP Live Streaming 07:58 - Bandwidth and Quality of Connection 12:23 - Network Link Conditioner 15:29 - Reachability 24:27 - Networking Gotchas 26:54 - NSOperation Dependency 29:41 - AFNetworking RestKit 33:54 - Logging of Networking Requests and Response Runscope 38:49 - Networking Technologies 41:27 - WebSockets faye SocketRocket 45:48 - Fallacies of Distributed Computing Picks ARC vs. MRC Performance (Andrew) Machine language: how Siri found its voice (Andrew) Philips hue (Ben) hue (Ben) CopyPasteCharacter.com (Ben) Glyphboard (Andrew) Lawyers (Jaim) Runscope (Pete) estimote (Pete) Acme Pale Ale from North Coast Brewing (Pete) XCOM Enemy Unknown (Pete) RubyConf (Chuck) Airbnb (Chuck) Platform University (Chuck) Little Snitch (Steve) Upton Tea (Steve) Clojure: Enemy of the State (Rod) Hire Rod (Rod) Next Week Build Automation with Patrick Burleson Transcript CHUCK: Hey everybody and welcome to Episode 22 of The iPhreaks Show! This week on our panel, we have Andrew Madsen. ANDREW: Hi! I'm not a robot; I'm just going to [unclear] [Laughter] CHUCK: Ben Scheirman. BEN: Hello! I'm eagerly waiting of the arrival of GTA 5. So if the doorbell rings, I may run to go get it. CHUCK: Alright! Jaim Zuber. JAIM: Hello from Minneapolis! And also, not a robot. CHUCK: Pete Hodgson. PETE: Good morning from…I am not a robot. [Laughter] CHUCK: Rod Schmidt. ROD: Hello from Salt Lake! CHUCK: I'm Charles Max Wood from DevChat.tv. Before I introduce our guest, I just want to make a real quick announcement. This Friday, meaning last Friday when you get this episode, was my ‘Freedom Day'. It was the day I was laid off from my job 3 years ago and went freelance. I'm celebrating that by putting up a free video that kind of chronicles my journey through freelancing and going from laid off to actually making enough money to live on. I'm going to have a lot of lessons that I learned in there and stuff, so if you're interested, you can get that at GoingRogueVideo.com. BEN: Whoo-hoo! Congrats! CHUCK: Thanks! We also have a special guest, and that is Steve Madsen. STEVE: Hello from the Columbus, Ohio. CHUCK: Can we get you to introduce yourself real quick? STEVE: Sure! I own Light Year Software, which is a small consultancy here in Columbus specializing in Rails and iOS development. I've been doing that for about 7 years now since relocating back from the San Francisco Bay Area. CHUCK: Was it named after the unit of measure, or the cartoon character? STEVE: Unit of measure. CHUCK: Okay. STEVE: I was looking for something science-y. CHUCK: Awesome. PETE: What's the cartoon character? CHUCK: Toy Story. Buzz Lightyear. PETE: Oh! Oh, yeah. CHUCK: Alright, we brought you on to talk about “Networking”. STEVE: Yes! That's a big topic! CHUCK: I was going to say [laughs] it was kind of a broad topic. What in particular is interesting about networking with iOS or Cocoa? STEVE: Specifically about iOS, obviously, we're talking about mobile devices. I think it's safe to say that since mobile devices became as popular as they did with the introduction of the iPhone, the possibilities on how for us to build apps that communicate back to servers or communicate with people nearby have gone up a lot. CHUCK: Yeah, that makes sense.

English Podcast
Entendendo o uso do ING – English Podcast #13

English Podcast

Play Episode Listen Later Jan 29, 2013 32:11


Olá, amigos do English Experts! O bate-papo de hoje é sobre o -ING, quando falamos dele lembramos logo do gerúndio que em português são as terminações -ando, -endo e -indo. Mas não vamos falar só sobre o gerúndio, vamos abordar várias de suas aplicações. Acredite! Essas três letrinhas são responsáveis por dezenas e dezenas de perguntas na comunidade. Ouvir o English Podcast Assista ao episódio no Youtube Assine o canal do English Experts para dicas de inglês em vídeo. Participaram do Programa Adir Ferreira (professor de inglês) e criador do Adir Ferreira Idiomas. Ana Luiza (professora de inglês) e criadora do blog Inglês Online. Alessandro Brandão (host) coordenador do English Experts. Links discutidos no podcast Barry Schwartz: The paradox of choice Como pronunciar o "ING" no final das palavras em inglês Podcast com o professor Steve Ford (part 3 of 3) Dica de pronúncia inglesa: leave e live Você já usa -ING como substantivo no inglês? Como eu uso a forma -ING como sujeito da frase? Usos da terminação -ing Global McDonald's commercial: I'm lovin' it English Made in Brazil: verbos que podem ser seguidos pelo -ing Stative Verbs Uso do "ING" depois de verbos Gerúndio no início de frases em inglês Preposições + ING Facebook Inglês Online Facebook Adir Ferreira Idiomas Trecho em inglês: Ana entrevistando Steve Ford (Ana) So, it's great to have you back Steve. (Steve) Oh! Great to be here. (Ana) ...a little question here: How to use ING in English? And that’s another big topic, I guess. (Steve) That’s an excellent question. It’s an excellent question. And I have something to say about that, because I have heard some people trying to imitate the ING sound in relaxed American speech, so they’ll say ‘workin’, ‘talkin’. Which is great, you know, when we speak informally in American speech we use that. The danger is to use that all the time. And I have heard some people, you know, they try to speak like a native speaker and that becomes their normal, you know? So they say “Hi Steve, I’m workin’ on this and then I’m doin’ that”, and, I mean, here in North America we use that to kind of sound cute, to sound informal sometimes, but, you know, not all the time. It’s, it’s something that, you know, just like in Portuguese, you wouldn’t be at work saying to your boss “Can I have some dinheirinho?”, you know. (Ana) Oh, OK. (Steve) So that’s the equivalent in English. You should really try to pronounce the ING sound in English… semi-formal or formal contexts. (Ana) OK. Can you say the two versions for us? (Steve) Sure. “I’m working”. So you can hear this… it’s more complete, ING, you know? It’s more alongated. And “I’m workin’” So maybe that guy, that business executive… He is working on Wall Street, and maybe there’s somebody who’s workin’, workin’ in the streets. So you really wanna be careful, ’cause as I said, I have noticed some non-native speakers trying to sound like a native speaker and using workin’ and doin’ for everything. Be careful. (Ana) Alright! Assine no iTunes English Podcast no iTunes Vitrine e Edição André Oliveira Sugestões, críticas e elogios Envie sugestões, críticas e elogios nos comentários. O seu feedback é muito importante para nós.