Podcast appearances and mentions of nick one

  • 13PODCASTS
  • 44EPISODES
  • 19mAVG DURATION
  • 1MONTHLY NEW EPISODE
  • Jun 17, 2025LATEST

POPULARITY

20172018201920202021202220232024


Best podcasts about nick one

Latest podcast episodes about nick one

Oracle University Podcast
Oracle GoldenGate 23ai: The Replicat Process

Oracle University Podcast

Play Episode Listen Later Jun 17, 2025 12:06


In this episode, Lois Houston and Nikita Abraham, along with Nick Wagner, Senior Director of Product Management, dive into the Replicat process in Oracle GoldenGate 23ai.   They discuss how Replicat applies changes to the target database, highlighting the different types: Classic, Coordinated, and Parallel Replicat.   Oracle GoldenGate 23ai: Fundamentals: https://mylearn.oracle.com/ou/course/oracle-goldengate-23ai-fundamentals/145884/237273 Oracle University Learning Community: https://education.oracle.com/ou-community LinkedIn: https://www.linkedin.com/showcase/oracle-university/ X: https://x.com/Oracle_Edu   Special thanks to Arijit Ghosh, David Wright, Kris-Ann Nansen, Radhika Banka, and the OU Studio Team for helping us create this episode. ---------------------------------------------------------------- Episode Transcript: 00:00 Welcome to the Oracle University Podcast, the first stop on your cloud journey. During this series of informative podcasts, we'll bring you foundational training on the most popular Oracle technologies. Let's get started! 00:25 Lois: Hello and welcome to another episode of the Oracle University Podcast. I'm Lois Houston, Director of Innovation Programs with Oracle University, and with me is Nikita Abraham, Team Lead: Editorial Services.  Nikita: Hi everyone! If you've been listening to us these last few weeks, you'll know we've been discussing the fundamentals of GoldenGate 23ai. Today is going to be all about the Replicat process. Again, this is something we've discussed briefly in earlier episodes, but just to recap, the Replicat process applies changes from the source database to the target database. It's responsible for reading trail files and applying the changes to the target system. 01:04 Lois: That's right, Niki. And we'll be chatting with Nick Wagner, Senior Director of Product Management for Oracle GoldenGate. Hi Nick! Thanks for joining us again today. Let's get straight into it. Can you give us an overview of the Replicat process? Nick: One thing that's very important is the Replicat is extremely chatty with that target database. So it's going to be going in and trying to make lots of little transactions on that system. The Replicat process only issues single row DML. So if you can imagine a source database that's generating hundreds of thousands of changes per second, we're going to have to have a Replicat process that can do 100,000 changes per second on that target site. That means that it's going to have to send a lot of little one record commands. And so we've got a lot of ways to optimize that. But in all situations you're really going to want very, very low ping time between that Replicat process and that target database. This often means that if you're going to be running GoldenGate in a cloud, you're going to want the Cloud GoldenGate environment to be running in that target data center, wherever that target database is. 02:06 Lois: What are the key characteristics of the process, Nick? Nick: Replicat process is going to read the changes from the trail file and then apply them to the target system, just like any database user would. It's not doing anything special where it's going under the covers and trying to apply directly to the database blocks. It's just applying regular standard insert, update, delete, and DDL statements to that target database. A single trail file does support high volume of data replication activity depending on the type of Replicat. Replicats do preserve the boundary of their transactions. So in the situations, by default, a transaction that's on the source, let's say five inserts followed by a commit will remain five inserts followed by a commit on the target site. There are some operations and changes that do affect this, but they're not turned on by default. There are things like group transactions that allows you to group multiple transactions into a single commit. This one could actually improve performance in some cases. We also have batch SQL that can change the boundaries of a transaction as well. And then in a Parallel Replicat, you actually have the ability to split a large transaction into multiple chunks and apply those chunks in Parallel. So again, by default, it's going to preserve the boundaries, but there are ways to change that. And then the Replicats use a checkpoint table to help with recovery and to know where they're applying data and what they've done. The other thing in here is, like an Extract process can write to multiple trails and write subsets of data to each one, a Replicat can only process a single set of trail files at once. So it's going to be attached to a specific trail file like trail file AB, and will only be able to read changes from trail file AB. If I have multiple trails that need to be applied into a target system, then I have to set up multiple Replicats to handle that. 03:54 Nikita: So, what are the different Replicat types, Nick? Nick: We have three types in the product today. We have Classic Replicat, which should really only be used for testing purposes or in environments that don't support any of the other specialized Replicats. We have Coordinated Replicat, which is a high speed apply mechanism to apply data into a target system. It does have some parallelism in it, but it's user defined parallelism. And then we have our flagship and that's Parallel Replicat. And this is the most performant lowest latency Replicat that we have. 04:25 Lois: Ok. Let's dive a little deeper into each of them, starting with the Classic Replicat. How does it work? Nick: It's pretty straightforward. You're going to have a process that reads the trail files, and then in a single threaded fashion it's going to take the trail file logical change record, convert it to an insert, update, or delete, and then apply it into that target database. Each transaction that it does is preceded by a change to the checkpoint table. So when the transaction that the Replicat is currently doing is committed, that checkpoint table update also gets committed. That way when the Replicat restarts, it knows exactly what transaction it left off and how it last applied the record. And all the Replicats work the same way with regards to checkpoint tables. They each have their own little method of ensuring that the transaction they're applying is also reflected within the checkpoint table so that when it restarts, it knows exactly where it happened. That way, if a Replicat dies in the middle of a transaction, it can be restarted without any duplicate data or without missing data. 05:29 Did you know that Oracle University offers free courses on Oracle Cloud Infrastructure? You'll find training on everything from multicloud, database, networking, and security to artificial intelligence and machine learning, all free for our subscribers. So, what are you waiting for? Pick a topic, head over to mylearn.oracle.com, and get started. 05:53 Nikita: Welcome back! Moving on, what about Coordinated Replicat? Nick: The Coordinated Replicat is going to read from a set of trail files. It's going to have multiple threads that do this. So you have your base thread, your coordinated thread that's going to be thread 1. It's going to process the data and apply it into that target database. You then have thread 2, 4, 5, 6, and so on. When you set up your Replicat parameter file for a Coordinated Replicat, the map commands that maps from one table on the source to a table on the target has an additional option. So you'll have an option called a range or thread range. With the range and thread range option, you can actually tell which table to go into which thread. 06:38 Lois: Can you give us an example of this? Nick: So I could say map Scott.M into thread 1 and I want Scott.Dept into thread 2. Well, this is fantastic until you realize that Scott.M and Scott.Dept have a foreign key between them or a child dependencies, parent-child relationships. What that means is that now I'm going to have to disable that foreign key on the target site, because there's no way for GoldenGate to coordinate the changes in one thread to another thread. And so you really have to be careful on how you pair your tables together. If you don't have any referential integrity on that target database, then you can use parallel coordinated Replicat to really high degrees of parallelism, and you get some very good performance out of it. Let's say that you have a table that's really got too much data for even a single thread to process, that's where the thread range comes in. And thread range command will use something like the table's primary key to split transactions on that table across multiple threads. So I can say, hey, take my table Scott.M and I want to spread transactions across threads 10, 11, 12, 13, and 14 and then spread them evenly based on the primary key. And Coordinated Replicat will do that. So you can get some very high performance numbers out of it and you can really fine tune the tables, especially if you know the amount of data coming into each one. While this does work great, we observed that a lot of customers really don't know their applications to that level of detail, and so we needed a different method to push data into that target database, where we could define the parallelism based on the database expectations. So instead of the customer having to try and figure out what are the parent-child relationships, why can't GoldenGate do it for me? And that led to Parallel Replicat.  08:26 Nikita: And what are the benefits and features of the Parallel Replicat process?  Nick: So Parallel Replicat has been around for quite a few years now. It supports most targets, it was Oracle initially, but now it's been expanded out to a lot of the non-Oracle targets and even some of the nonrelational database targets. It has absolutely the best performance of any Replicat process out there. You can use it to split large transactions as well. So if all of a sudden you have a batch job that does a million inserts followed by a single commit, I can split that across 10 threads, each thread doing 100,000 inserts. And it's aware of your transaction dependencies, that's the cool thing. So in Coordinated Replicat, you had to worry about how to split your tables up, in Parallel Replicat, we do it for you. 09:11 Lois: And how does Parallel Replicat work? Nick: So there's three main processes to the Parallel Replicat. You have your first is the mapper process. This is going to be responsible for taking the data out of the trail files and putting them into kind of our collator and scheduler box. As transactions go from the trail file, they get put into this box in memory where they're processed. There's a collator process that will look at these processes and go, OK, as they're coming in, let me read some of the data in them to determine how they can be applied in Parallel or not. And so the collator process understands the foreign key dependencies on that target database. And it's able to say, hey, I know that my two tables are these two tables, have a parent-child relationship, I need to make sure that changes on those tables go in the correct order. And so if all of a sudden you see an insert using the parent record and then another insert into the child record and they're mapped together, GoldenGate will ensure that those two transactions go serially and not parallel where they could get applied out of order. There's then a scheduler process that's going to look at this and say, OK, now that I'm taking transactions from the collator process, who's already identified whether or not transactions can be applied in parallel or serial, and I'm going to feed them off to applier processes that are ready and waiting for me to apply those changes into the database. And then the applier process is waiting for the scheduler process to send its transactions and say, OK, what's my next one? Where's the next transaction I should be working on and applying? And then the applier process is the one actually applying the changes into that target database, again, just using standard DML operations. So there's a lot of benefits to this one. You don't need to worry about your foreign key dependencies, you can leave all your foreign keys enabled. The collator process will actually use information within the trail file to determine which transactions can be applied in parallel, and which one needs to be applied serially. 11:13 Lois: Thank you, Nick, for this insightful conversation. There's loads more to discover about the Replicat process, and you can do that by heading over to mylearn.oracle.com and searching for the Oracle GoldenGate 23ai: Fundamentals course. Nikita: In our next episode, Nick will take us through managing Extract Trails and Files. Until then, this is Nikita Abraham… Lois: And Lois Houston, signing off! 11:37 That's all for this episode of the Oracle University Podcast. If you enjoyed listening, please click Subscribe to get all the latest episodes. We'd also love it if you would take a moment to rate and review us on your podcast app. See you again on the next episode of the Oracle University Podcast.

Oracle University Podcast
Oracle GoldenGate 23ai: New Features & Product Family

Oracle University Podcast

Play Episode Listen Later May 6, 2025 17:39


In this episode, Lois Houston and Nikita Abraham continue their deep dive into Oracle GoldenGate 23ai, focusing on its evolution and the extensive features it offers. They are joined once again by Nick Wagner, who provides valuable insights into the product's journey.   Nick talks about the various iterations of Oracle GoldenGate, highlighting the significant advancements from version 12c to the latest 23ai release. The discussion then shifts to the extensive new features in 23ai, including AI-related capabilities, UI enhancements, and database function integration.   Oracle GoldenGate 23ai: Fundamentals: https://mylearn.oracle.com/ou/course/oracle-goldengate-23ai-fundamentals/145884/237273 Oracle University Learning Community: https://education.oracle.com/ou-community LinkedIn: https://www.linkedin.com/showcase/oracle-university/ X: https://x.com/Oracle_Edu   Special thanks to Arijit Ghosh, David Wright, Kris-Ann Nansen, Radhika Banka, and the OU Studio Team for helping us create this episode.   -----------------------------------------------------------------   Episode Transcript: 00:00 Welcome to the Oracle University Podcast, the first stop on your cloud journey. During this series of informative podcasts, we'll bring you foundational training on the most popular Oracle technologies. Let's get started! 00:25 Lois: Hello and welcome to the Oracle University Podcast! I'm Lois Houston, Director of Innovation Programs with Oracle University, and with me is Nikita Abraham, Team Lead: Editorial Services.  Nikita: Hi everyone! Last week, we introduced Oracle GoldenGate and its capabilities, and also spoke about GoldenGate 23ai. In today's episode, we'll talk about the various iterations of Oracle GoldenGate since its inception. And we'll also take a look at some new features and the Oracle GoldenGate product family. 00:57 Lois: And we have Nick Wagner back with us. Nick is a Senior Director of Product Management for GoldenGate at Oracle. Hi Nick! I think the last time we had an Oracle University course was when Oracle GoldenGate 12c was out. I'm sure there's been a lot of advancements since then. Can you walk us through those? Nick: GoldenGate 12.3 introduced the microservices architecture. GoldenGate 18c introduced support for Oracle Autonomous Data Warehouse and Autonomous Transaction Processing Databases. In GoldenGate 19c, we added the ability to do cross endian remote capture for Oracle, making it easier to set up the GoldenGate OCI service to capture from environments like Solaris, Spark, and HP-UX and replicate into the Cloud. Also, GoldenGate 19c introduced a simpler process for upgrades and installation of GoldenGate where we released something called a unified build. This means that when you install GoldenGate for a particular database, you don't need to worry about the database version when you install GoldenGate. Prior to this, you would have to install a version-specific and database-specific version of GoldenGate. So this really simplified that whole process. In GoldenGate 23ai, which is where we are now, this really is a huge release.  02:16 Nikita: Yeah, we covered some of the distributed AI features and high availability environments in our last episode. But can you give us an overview of everything that's in the 23ai release? I know there's a lot to get into but maybe you could highlight just the major ones? Nick: Within the AI and streaming environments, we've got interoperability for database vector types, heterogeneous capture and apply as well. Again, this is not just replication between Oracle-to-Oracle vector or Postgres to Postgres vector, it is heterogeneous just like the rest of GoldenGate. The entire UI has been redesigned and optimized for high speed. And so we have a lot of customers that have dozens and dozens of extracts and replicats and processes running and it was taking a long time for the UI to refresh those and to show what's going on within those systems. So the UI has been optimized to be able to handle those environments much better. We now have the ability to call database functions directly from call map. And so when you do transformation with GoldenGate, we have about 50 or 60 built-in transformation routines for string conversion, arithmetic operation, date manipulation. But we never had the ability to directly call a database function. 03:28 Lois: And now we do? Nick: So now you can actually call that database function, database stored procedure, database package, return a value and that can be used for transformation within GoldenGate. We have integration with identity providers, being able to use token-based authentication and integrate in with things like Azure Active Directory and your other single sign-on for the GoldenGate product itself. Within Oracle 23ai, there's a number of new features. One of those cool features is something called lock-free reservation columns. So this allows you to have a row, a single row within a table and you can identify a column within that row that's like an inventory column. And you can have multiple different users and multiple different transactions all updating that column within that same exact row at that same time. So you no longer have row-level locking for these reservation columns. And it allows you to do things like shopping carts very easily. If I have 500 widgets to sell, I'm going to let any number of transactions come in and subtract from that inventory column. And then once it gets below a certain point, then I'll start enforcing that row-level locking. 04:43 Lois: That's really cool… Nick: The one key thing that I wanted to mention here is that because of the way that the lock-free reservations work, you can have multiple transactions open on the same row. This is only supported for Oracle to Oracle. You need to have that same lock-free reservation data type and availability on that target system if GoldenGate is going to replicate into it. 05:05 Nikita: Are there any new features related to the diagnosability and observability of GoldenGate?  Nick: We've improved the AWR reports in Oracle 23ai. There's now seven sections that are specific to Oracle GoldenGate to allow you to really go in and see exactly what the GoldenGate processes are doing and how they're behaving inside the database itself. And there's a Replication Performance Advisor package inside that database, and that's been integrated into the Web UI as well. So now you can actually get information out of the replication advisor package in Oracle directly from the UI without having to log into the database and try to run any database procedures to get it. We've also added the ability to support a per-PDB Extract.  So in the past, when GoldenGate would run on a multitenant database, a multitenant database in Oracle, all the redo data from any pluggable database gets sent to that one redo stream. And so you would have to configure GoldenGate at the container or root level and it would be able to access anything at any PDB. Now, there's better security and better performance by doing what we call per-PDB Extract. And this means that for a single pluggable database, I can have an extract that runs at that database level that's going to capture information just from that pluggable database. 06:22 Lois And what about non-Oracle environments, Nick? Nick: We've also enhanced the non-Oracle environments as well. For example, in Postgres, we've added support for precise instantiation using Postgres snapshots. This eliminates the need to handle collisions when you're doing Postgres to Postgres replication and initial instantiation. On the GoldenGate for big data side, we've renamed that product more aptly to distributed applications in analytics, which is really what it does, and we've added a whole bunch of new features here too. The ability to move data into Databricks, doing Google Pub/Sub delivery. We now have support for XAG within the GoldenGate for distributed applications and analytics. What that means is that now you can follow all of our MAA best practices for GoldenGate for Oracle, but it also works for the DAA product as well, meaning that if it's running on one node of a cluster and that node fails, it'll restart itself on another node in the cluster. We've also added the ability to deliver data to Redis, Google BigQuery, stage and merge functionality for better performance into the BigQuery product. And then we've added a completely new feature, and this is something called streaming data and apps and we're calling it AsyncAPI and CloudEvent data streaming. It's a long name, but what that means is that we now have the ability to publish changes from a GoldenGate trail file out to end users. And so this allows through the Web UI or through the REST API, you can now come into GoldenGate and through the distributed applications and analytics product, actually set up a subscription to a GoldenGate trail file. And so this allows us to push data into messaging environments, or you can simply subscribe to changes and it doesn't have to be the whole trail file, it can just be a subset. You can specify exactly which tables and you can put filters on that. You can also set up your topologies as well. So, it's a really cool feature that we've added here. 08:26 Nikita: Ok, you've given us a lot of updates about what GoldenGate can support. But can we also get some specifics? Nick: So as far as what we have, on the Oracle Database side, there's a ton of different Oracle databases we support, including the Autonomous Databases and all the different flavors of them, your Oracle Database Appliance, your Base Database Service within OCI, your of course, Standard and Enterprise Edition, as well as all the different flavors of Exadata, are all supported with GoldenGate. This is all for capture and delivery. And this is all versions as well. GoldenGate supports Oracle 23ai and below. We also have a ton of non-Oracle databases in different Cloud stores. On an non-Oracle side, we support everything from application-specific databases like FairCom DB, all the way to more advanced applications like Snowflake, which there's a vast user base for that. We also support a lot of different cloud stores and these again, are non-Oracle, nonrelational systems, or they can be relational databases. We also support a lot of big data platforms and this is part of the distributed applications and analytics side of things where you have the ability to replicate to different Apache environments, different Cloudera environments. We also support a number of open-source systems, including things like Apache Cassandra, MySQL Community Edition, a lot of different Postgres open source databases along with MariaDB. And then we have a bunch of streaming event products, NoSQL data stores, and even Oracle applications that we support. So there's absolutely a ton of different environments that GoldenGate supports. There are additional Oracle databases that we support and this includes the Oracle Metadata Service, as well as Oracle MySQL, including MySQL HeatWave. Oracle also has Oracle NoSQL Spatial and Graph and times 10 products, which again are all supported by GoldenGate. 10:23 Lois: Wow, that's a lot of information! Nick: One of the things that we didn't really cover was the different SaaS applications, which we've got like Cerner, Fusion Cloud, Hospitality, Retail, MICROS, Oracle Transportation, JD Edwards, Siebel, and on and on and on.  And again, because of the nature of GoldenGate, it's heterogeneous. Any source can talk to any target. And so it doesn't have to be, oh, I'm pulling from Oracle Fusion Cloud, that means I have to go to an Oracle Database on the target, not necessarily.  10:51 Lois: So, there's really a massive amount of flexibility built into the system.  11:00 Unlock the power of AI Vector Search with our new course and certification. Get more accurate search results, handle complex datasets easily, and supercharge your data-driven decisions. From now through May 15, 2025, we are waiving the certification exam fee (valued at $245). Visit mylearn.oracle.com to enroll. 11:26 Nikita: Welcome back! Now that we've gone through the base product, what other features or products are in the GoldenGate family itself, Nick? Nick: So we have quite a few. We've kind of touched already on GoldenGate for Oracle databases and non-Oracle databases. We also have something called GoldenGate for Mainframe, which right now is covered under the GoldenGate for non-Oracle, but there is a licensing difference there. So that's something to be aware of. We also have the OCI GoldenGate product. We are announcing and we have announced that OCI GoldenGate will also be made available as part of the Oracle Database@Azure and Oracle Database@ Google Cloud partnerships.  And then you'll be able to use that vendor's cloud credits to actually pay for the OCI GoldenGate product. One of the cool things about this is it will have full feature parity with OCI GoldenGate running in OCI. So all the same features, all the same sources and targets, all the same topologies be able to migrate data in and out of those clouds at will, just like you do with OCI GoldenGate today running in OCI.  We have Oracle GoldenGate Free.  This is a completely free edition of GoldenGate to use. It is limited on the number of platforms that it supports as far as sources and targets and the size of the database.  12:45 Lois: But it's a great way for developers to really experience GoldenGate without worrying about a license, right? What's next, Nick? Nick: We have GoldenGate for Distributed Applications and Analytics, which was formerly called GoldenGate for big data, and that allows us to do all the streaming. That's also where the GoldenGate AsyncAPI integration is done. So in order to publish the GoldenGate trail files or allow people to subscribe to them, it would be covered under the Oracle GoldenGate Distributed Applications and Analytics license. We also have OCI GoldenGate Marketplace, which allows you to run essentially the on-premises version of GoldenGate but within OCI. So a little bit more flexibility there. It also has a hub architecture. So if you need that 99.99% availability, you can get it within the OCI Marketplace environment. We have GoldenGate for Oracle Enterprise Manager Cloud Control, which used to be called Oracle Enterprise Manager. And this allows you to use Enterprise Manager Cloud Control to get all the statistics and details about GoldenGate. So all the reporting information, all the analytics, all the statistics, how fast GoldenGate is replicating, what's the lag, what's the performance of each of the processes, how much data am I sending across a network. All that's available within the plug-in. We also have Oracle GoldenGate Veridata. This is a nice utility and tool that allows you to compare two databases, whether or not GoldenGate is running between them and actually tell you, hey, these two systems are out of sync. And if they are out of sync, it actually allows you to repair the data too. 14:25 Nikita: That's really valuable…. Nick: And it does this comparison without locking the source or the target tables. The other really cool thing about Veridata is it does this while there's data in flight. So let's say that the GoldenGate lag is 15 or 20 seconds and I want to compare this table that has 10 million rows in it. The Veridata product will go out, run its comparison once. Once that comparison is done the first time, it's then going to have a list of rows that are potentially out of sync. Well, some of those rows could have been moved over or could have been modified during that 10 to 15 second window. And so the next time you run Veridata, it's actually going to go through. It's going to check just those rows that were potentially out of sync to see if they're really out of sync or not. And if it comes back and says, hey, out of those potential rows, there's two out of sync, it'll actually produce a script that allows you to resynchronize those systems and repair them. So it's a very cool product.  15:19 Nikita: What about GoldenGate Stream Analytics? I know you mentioned it in the last episode, but in the context of this discussion, can you tell us a little more about it?  Nick: This is the ability to essentially stream data from a GoldenGate trail file, and they do a real time analytics on it. And also things like geofencing or real-time series analysis of it.  15:40 Lois: Could you give us an example of this? Nick: If I'm working in tracking stock market information and stocks, it's not really that important on how much or how far down a stock goes. What's really important is how quickly did that stock rise or how quickly did that stock fall. And that's something that GoldenGate Stream Analytics product can do. Another thing that it's very valuable for is the geofencing. I can have an application on my phone and I can track where the user is based on that application and all that information goes into a database. I can then use the geofencing tool to say that, hey, if one of those users on that app gets within a certain distance of one of my brick-and-mortar stores, I can actually send them a push notification to say, hey, come on in and you can order your favorite drink just by clicking Yes, and we'll have it ready for you. And so there's a lot of things that you can do there to help upsell your customers and to get more revenue just through GoldenGate itself. And then we also have a GoldenGate Migration Utility, which allows customers to migrate from the classic architecture into the microservices architecture. 16:44 Nikita: Thanks Nick for that comprehensive overview.  Lois: In our next episode, we'll have Nick back with us to talk about commonly used terminology and the GoldenGate architecture. And if you want to learn more about what we discussed today, visit mylearn.oracle.com and take a look at the Oracle GoldenGate 23ai Fundamentals course. Until next time, this is Lois Houston… Nikita: And Nikita Abraham, signing off! 17:10 That's all for this episode of the Oracle University Podcast. If you enjoyed listening, please click Subscribe to get all the latest episodes. We'd also love it if you would take a moment to rate and review us on your podcast app. See you again on the next episode of the Oracle University Podcast.

The Inner Life
The Inner Life - December 26, 2024 - Confession [ENCORE]

The Inner Life

Play Episode Listen Later Dec 26, 2024 51:14


Check out this encore show from October 8, 2024 Father John LoCoco joins Patrick to discuss Making a Good Confession Are all confessions created equal? (7:42) How often should we go to confession? How to avoid scrupulosity in confession? John -Reflecting on apostles...I believe confessions started when apostles were with the Lord. Nick - One of the great ways to say we're sorry is to ask the Lord to give us the grace to see us as we are. I came from a generation where it was hard to say I'm sorry. Confession is so good to have because it makes our communions enriched. Need to be conscious of our sins. (19:38) Break 1 How do you make a good examination of Conscience? (26:52) Amelina - When we go to confession and confess our sins...how do we end it? Do we say this is it or just stay quiet? Mike - What is seeking confession from Jesus vs. going to confession. I'm a new Catholic. Why do we need to go to a priest? Mary Lou - Psychological aspects of confession. Studied this as a psychotherapist. Dr. Jordan Pierson talks about many who come to him need to get something off their chest. Once they're able to say that, they become more happy and healthy. Confession is a good 'ancient' example of that. Better psychological state. (39:03) Break 2 Gemma - After confessing sins, priest gives me guidance. I felt the need to ask a question about it, but felt bad about it, so I didn't. (42:47) What is penance in the confessional? Susie - Came back to church after 49 years. I am homebound, so priest comes to my house to hear confession once a month. I know that I'm absolved, but I have a problem with forgiving myself. How do I do that? Dave - New Catholic. Been to confession, but one sin I've had in my life and don't want to do it again, but don't feel bad about it. I don't know how to put it out there.

The Inner Life
The Inner Life - October 8, 2024 - Confession

The Inner Life

Play Episode Listen Later Oct 8, 2024 51:14


Father John LoCoco joins Patrick to discuss Making a Good Confession Are all confessions created equal? (7:42) How often should we go to confession? How to avoid scrupulosity in confession? John -Reflecting on apostles...I believe confessions started when apostles were with the Lord. Nick - One of the great ways to say we're sorry is to ask the Lord to give us the grace to see us as we are. I came from a generation where it was hard to say I'm sorry. Confession is so good to have because it makes our communions enriched.  Need to be conscious of our sins. (19:38) Break 1 How do you make a good examination of Conscience? (26:52) Amelina - When we go to confession and confess our sins...how do we end it?  Do we say this is it or just stay quiet? Mike - What is seeking confession from Jesus vs. going to confession.  I'm a new Catholic. Why do we need to go to a priest? Mary Lou - Psychological aspects of confession. Studied this as a psychotherapist. Dr. Jordan Pierson talks about many who come to him need to get something off their chest. Once they're able to say that, they become more happy and healthy. Confession is a good 'ancient' example of that. Better psychological state. (39:03) Break 2 Gemma - After confessing sins, priest gives me guidance. I felt the need to ask a question about it, but felt bad about it, so I didn't. (42:47) What is penance in the confessional? Susie - Came back to church after 49 years. I am homebound, so priest comes to my house to hear confession once a month. I know that I'm absolved, but I have a problem with forgiving myself.  How do I do that? Dave - New Catholic. Been to confession, but one sin I've had in my life and don't want to do it again, but don't feel bad about it. I don't know how to put it out there.

The Viall Files
E798 Ask Nick - One Night Stands

The Viall Files

Play Episode Listen Later Aug 26, 2024 113:35


Welcome back to another episode of The Viall Files: Ask Nick Edition! We start off the episode with a Written Ask Nick about therapists. Then we get to our callers…  Our first caller can't unfollow her ex. Our second caller is wondering if she's doing too much on a first date. And, our third caller's long term boyfriend won't propose to her.   "They're conveniently thinking about all the good, and forgetting the red flags." Start your 7 Day Free Trial of Viall Files + here: https://viallfiles.supportingcast.fm/  Please make sure to subscribe so you don't miss an episode and as always send in your relationship questions to asknick@theviallfiles.com to be a part of our Monday episodes.  To Order Nick's Book Go To: https://www.viallfiles.com  If you would like to get some texting advice, send an email to asknick@theviallfiles.com with “Texting Office Hours” in the subject line!  To advertise on the show, contact sales@advertisecast.com or visit https://www.advertisecast.com/TheViallFiles  THANK YOU TO OUR SPONSORS: Altoids - Find Altoids In The Check-Out Aisle! Grab Your Tin Today!  BetterHelp - Get it off your chest, with BetterHelp. Visit https://www.BetterHelp.com/VIALL today to get 10% off your first month. Huggies - Learn More At https://www.Huggies.com  Helix Sleep - Helix is offering up to 25% off all mattress orders AND two free pillows for our listeners! Go to https://www.HelixSleep.com/Viall  Goodr - If you want to support the show and try a pair, goodr is giving The Viall Files listeners Free Shipping! You can go to https://goodr.com/viall and use code VIALL for free shipping. Episode Socials: @viallfiles @nickviall @justinkaphillips @dereklanerussell @kymccarthy23 @allisonklemes

The Breathing 411
How to Get True Health, Extended-Release Calm, and a New Personality

The Breathing 411

Play Episode Listen Later Feb 26, 2024 8:30


Work with Nick One-on-One:https://www.thebreathingdiabetic.com/coachingGet iCalm (use Discount Code NICK20):https://icalm.com?sca_ref=4079430.jIBlGS8VgPYou can read the text version and sign up for The Breathing 411 Email Newsletter here:https://www.thebreathingdiabetic.com/blog/how-to-get-true-health-extended-release-calm-a-new-personality

The Breathing 411
A Fulfilling Life, How to End, and How to Meditate without Meditating

The Breathing 411

Play Episode Listen Later Feb 19, 2024 6:57


Work with Nick One-on-One:https://www.thebreathingdiabetic.com/coachingGet iCalm (use Discount Code NICK20):https://icalm.com?sca_ref=4079430.jIBlGS8VgPYou can read the text version and sign up for The Breathing 411 Email Newsletter here:https://www.thebreathingdiabetic.com/blog/a-fulfilling-life-how-to-end-how-to-meditate-without-meditating

The Breathing 411
Clouds, Humming Under Water, and Two Practices for Today

The Breathing 411

Play Episode Listen Later Feb 12, 2024 7:51


Work with Nick One-on-One:https://www.thebreathingdiabetic.com/coachingGet iCalm (use Discount Code NICK20):https://icalm.com?sca_ref=4079430.jIBlGS8VgPYou can read the text version and sign up for The Breathing 411 Email Newsletter here:https://www.thebreathingdiabetic.com/blog/clouds-humming-under-water-two-practices-for-today

The Breathing 411
Self-Expression, Sending Messages of Calm, and How to Live Well

The Breathing 411

Play Episode Listen Later Feb 5, 2024 6:33


Work with Nick One-on-One:https://www.thebreathingdiabetic.com/coachingGet iCalm (use Discount Code NICK20):https://icalm.com?sca_ref=4079430.jIBlGS8VgPYou can read the text version and sign up for The Breathing 411 Email Newsletter here:https://www.thebreathingdiabetic.com/blog/self-expression-sending-messages-of-calm-how-to-live-well

The Breathing 411
The Cheapest Medicine, a New Breath Book, and Students of Life

The Breathing 411

Play Episode Listen Later Jan 29, 2024 10:08


Work with Nick One-on-One:https://www.thebreathingdiabetic.com/coachingGet iCalm (use Discount Code NICK20):https://icalm.com?sca_ref=4079430.jIBlGS8VgPYou can read the text version and sign up for The Breathing 411 Email Newsletter here:https://www.thebreathingdiabetic.com/blog/cheapest-medicine-a-new-breath-book-students-of-life

The Breathing 411
Smiling, Heart at Ease, and a Life-Changing Shift in Perspective

The Breathing 411

Play Episode Listen Later Jan 20, 2024 7:15


Work with Nick One-on-One:https://www.thebreathingdiabetic.com/coachingGet iCalm (use Discount Code NICK20):https://icalm.com?sca_ref=4079430.jIBlGS8VgPYou can read the text version and sign up for The Breathing 411 Email Newsletter here:https://www.thebreathingdiabetic.com/blog/smiling-heart-at-ease-life-changing-shift-perspective

The Breathing 411
A Wild Sleep Study, Becoming Great, and Being More Human

The Breathing 411

Play Episode Listen Later Jan 15, 2024 8:46


Work with Nick One-on-One:https://www.thebreathingdiabetic.com/coachingGet iCalm (use Discount Code NICK20):https://icalm.com?sca_ref=4079430.jIBlGS8VgPYou can read the text version and sign up for The Breathing 411 Email Newsletter here:https://www.thebreathingdiabetic.com/blog/tickle-your-adrenals-superhuman-is-sleep-all-in-your-head

The Breathing 411
Catch & Shoot, 20 or 50 Years, and Slow Breathing Doesn't Work Now

The Breathing 411

Play Episode Listen Later Jan 8, 2024 7:25


10-Minute Video Breakdown of New Nature Study:https://www.thebreathingdiabetic.com/slow-breathing-doesnt-workWork with Nick One-on-One:https://www.thebreathingdiabetic.com/coachingGet iCalm (use Discount Code NICK20):https://icalm.com?sca_ref=4079430.jIBlGS8VgPYou can read the text version and sign up for The Breathing 411 Email Newsletter here:https://www.thebreathingdiabetic.com/blog/catch-shoot-20-50-years-slow-breathing-doesnt-work

The Breathing 411
24 Ideas, Favorite Books of 2023, and the Secret to Healing

The Breathing 411

Play Episode Listen Later Jan 1, 2024 7:13


24 One-Sentence Breathing Ideas:https://www.thebreathingdiabetic.com/blog/24-one-sentence-breathing-ideas-for-2024The Books I Read in 2023:https://www.thebreathingdiabetic.com/blog/the-books-i-read-in-2023Work with Nick One-on-One:https://www.thebreathingdiabetic.com/coachingGet iCalm (use Discount Code NICK20):https://icalm.com?sca_ref=4079430.jIBlGS8VgPYou can read the text version and sign up for The Breathing 411 Email Newsletter here:https://www.thebreathingdiabetic.com/blog/24-ideas-best-books-of-2023-the-secret-to-healing

The Breathing 411
Health & Happiness, and How to Align with Your Life Force

The Breathing 411

Play Episode Listen Later Dec 18, 2023 7:24


Work with Nick One-on-One:https://www.thebreathingdiabetic.com/coachingGet iCalm (use Discount Code NICK20):https://icalm.com?sca_ref=4079430.jIBlGS8VgPYou can read the text version and sign up for The Breathing 411 Email Newsletter here:https://www.thebreathingdiabetic.com/blog/health-happiness-how-to-align-with-your-life-force

The Breathing 411
Life, Humor, and a Great Truth You Should Know about Yourself

The Breathing 411

Play Episode Listen Later Dec 11, 2023 6:56


Work with Nick One-on-One:https://www.thebreathingdiabetic.com/coachingGet iCalm (use Discount Code NICK20):https://icalm.com?sca_ref=4079430.jIBlGS8VgPYou can read the text version and sign up for The Breathing 411 Email Newsletter here:https://www.thebreathingdiabetic.com/blog/life-humor-a-great-truth-about-yourself

Smart Pizza Marketing Podcast
SPM #499: Pan Fried Pizza: One Person Pizza Business

Smart Pizza Marketing Podcast

Play Episode Listen Later Dec 5, 2023 39:54


Nick One sells pan-fried pizza and has just one employee. Sells out every week. Let's see how.   MY OTHER SOCIALS:

The Breathing 411
Cry More, Full Victory, and Three Gift Ideas for Breathers

The Breathing 411

Play Episode Listen Later Dec 4, 2023 7:02


Work with Nick One-on-One:https://www.thebreathingdiabetic.com/coachingThree Gift Ideas: iCalm (use Discount Code NICK20):https://icalm.com?sca_ref=4079430.jIBlGS8VgPViO2 Mouth Tape:https://www.vio2tape.com/products/vio2-unscented-mouth-tape?variant=40800110837937BeWell Breathing is Cool Sweater: https://www.bewellinschool.org/products/breathing-is-cool-crewneckYou can read the text version and sign up for The Breathing 411 Email Newsletter here:https://www.thebreathingdiabetic.com/blog/cry-more-full-victory-three-gift-ideas-for-breathers

The Breathing 411
Free 5-Star Resort, Transferring Passion, and Breathing in the Rain

The Breathing 411

Play Episode Listen Later Nov 27, 2023 7:04


Work with Nick One-on-One:https://www.thebreathingdiabetic.com/8-week-coaching-setbacksPurchase iCalm using Discount Code NICK20:https://icalm.com?sca_ref=4079430.jIBlGS8VgPYou can read the text version and sign up for The Breathing 411 Email Newsletter here:https://www.thebreathingdiabetic.com/blog/free-5-star-resort-transferring-passion-rainy-breath

The Breathing 411
An Incredible Study, Meaningful Change, and Gratitude Right Now

The Breathing 411

Play Episode Listen Later Nov 20, 2023 9:38


Work with Nick One-on-One:https://www.thebreathingdiabetic.com/8-week-coaching-setbacksPurchase iCalm using Discount Code NICK20:https://icalm.com?sca_ref=4079430.jIBlGS8VgPYou can read the text version and sign up for The Breathing 411 Email Newsletter here:https://www.thebreathingdiabetic.com/blog/meaningful-change-incredible-study-gratitude-now

The Breathing 411
Mindful Sauna, Focus on You, and Singing for Better Breathing

The Breathing 411

Play Episode Listen Later Nov 13, 2023 8:58


Breathing for Better Brain Health 2-hour Workshop:https://www.thebreathingdiabetic.com/breathing-for-better-brain-healthWork with Nick One-on-One:https://www.thebreathingdiabetic.com/8-week-coaching-setbacksPurchase iCalm using Discount Code NICK20:https://icalm.com?sca_ref=4079430.jIBlGS8VgPYou can read the text version and sign up for The Breathing 411 Email Newsletter here:https://www.thebreathingdiabetic.com/blog/mindful-sauna-focus-on-you-singing-better-breathing

The Breathing 411
How to Actually Increase Well-Being, Waves, and the Power of Breathwalk

The Breathing 411

Play Episode Listen Later Nov 6, 2023 5:44


Work with Nick One-on-One:https://www.thebreathingdiabetic.com/8-week-coaching-setbacksPurchase iCalm using Discount Code NICK20:https://icalm.com?sca_ref=4079430.jIBlGS8VgPYou can read the text version and sign up for The Breathing 411 Email Newsletter here:https://www.thebreathingdiabetic.com/blog/how-to-increase-well-being-waves-power-of-breathwalk

The Breathing 411
Heroes, the Healing Power of Breathing, and the Key to Living Longer

The Breathing 411

Play Episode Listen Later Oct 30, 2023 11:14


How to Get Started with Breathwork: A Practical Guide (90-minute Workshop; $50)https://www.thebreathingdiabetic.com/how-to-get-started-with-breathworkWork with Nick One-on-One:https://www.thebreathingdiabetic.com/8-week-coaching-setbacksPurchase iCalm using Discount Code NICK20:https://icalm.com?sca_ref=4079430.jIBlGS8VgPYou can read the text version and sign up for The Breathing 411 Email Newsletter here:https://www.thebreathingdiabetic.com/blog/heroes-the-healing-power-of-breathing-key-living-longer

The Breathing 411
When Laughter Occurs, Choosing Joy, and a New Favorite Passage

The Breathing 411

Play Episode Listen Later Oct 23, 2023 9:39


Get 15% off of ResBiotic using code BREATH411:https://resbiotic.com/products/resbWork with Nick One-on-One:https://www.thebreathingdiabetic.com/8-week-coaching-setbacksPurchase iCalm using Discount Code NICK20:https://icalm.com?sca_ref=4079430.jIBlGS8VgPYou can read the text version and sign up for The Breathing 411 Email Newsletter here:https://www.thebreathingdiabetic.com/blog/when-laughter-occurs-choosing-joy-a-new-favorite-passage

The Breathing 411
One Solution to Stress, Getting More, and the Best $0.99 I've Spent

The Breathing 411

Play Episode Listen Later Oct 16, 2023 10:17


Work with Nick One-on-One:https://www.thebreathingdiabetic.com/8-week-coaching-setbacksPurchase iCalm using Discount Code NICK20:https://icalm.com?sca_ref=4079430.jIBlGS8VgPYou can read the text version and sign up for The Breathing 411 Email Newsletter here:https://www.thebreathingdiabetic.com/blog/one-solution-stress-getting-more-best-99-ive-spent

The Breathing 411
Mind-Body Unity, the Real Power of Breath, and a Beautiful Resilience

The Breathing 411

Play Episode Listen Later Oct 9, 2023 8:39


Work with Nick One-on-One:https://www.thebreathingdiabetic.com/8-week-coaching-setbacksPurchase iCalm using Discount Code NICK20:https://icalm.com?sca_ref=4079430.jIBlGS8VgPYou can read the text version and sign up for The Breathing 411 Email Newsletter here:https://www.thebreathingdiabetic.com/blog/mind-body-unity-power-of-breath-beautiful-resilience

The Breathing 411
3 Simple Lessons, Why We Practice, and the Most Important Determinant

The Breathing 411

Play Episode Listen Later Oct 2, 2023 7:46


Work with Nick One-on-One:https://www.thebreathingdiabetic.com/coachingPurchase iCalm using Discount Code NICK20:https://icalm.com?sca_ref=4079430.jIBlGS8VgPYou can read the text version and sign up for The Breathing 411 Email Newsletter here:https://www.thebreathingdiabetic.com/blog/3-lessons-why-we-practice-most-important-determinant

The Breathing 411
Mindful vs. Slow Breathing, and How to Know the Nature of All Beings

The Breathing 411

Play Episode Listen Later Sep 25, 2023 7:32


Work with Nick One-on-One:https://www.thebreathingdiabetic.com/coachingPurchase iCalm using Discount Code NICK20:https://icalm.com?sca_ref=4079430.jIBlGS8VgPYou can read the text version and sign up for The Breathing 411 Email Newsletter here:https://www.thebreathingdiabetic.com/blog/mindful-vs-slow-how-to-know-nature-of-all-beings

The Breathing 411
Laugh More, Buddha's Breathwork, and How to Find Inner Silence

The Breathing 411

Play Episode Listen Later Sep 18, 2023 7:47


Work with Nick One-on-One:https://www.thebreathingdiabetic.com/coachingPurchase iCalm using Discount Code NICK20:https://icalm.com?sca_ref=4079430.jIBlGS8VgPYou can read the text version and sign up for The Breathing 411 Email Newsletter here:https://www.thebreathingdiabetic.com/blog/laugh-more-buddhas-breathwork-how-to-find-silence

Retirement Planning - Redefined
Mastering Retirement Cash Flow (Part 2): Understanding Changing Expenses

Retirement Planning - Redefined

Play Episode Listen Later Aug 2, 2023 19:11


On this episode, we will continue our conversation on what expenses may change when you enter into retirement. Helpful Information: PFG Website: https://www.pfgprivatewealth.com/ Contact: 813-286-7776 Email: info@pfgprivatewealth.com Disclaimer: PFG Private Wealth Management, LLC is a registered investment adviser. All statements and opinions expressed are based upon information considered reliable although it should not be relied upon as such. Any statements or opinions are subject to change without notice. Information presented is for educational purposes only and does not intend to make an offer or solicitation for the sale or purchase of any specific securities, investments, or investment strategies. Investment involve risk and, unless otherwise stated, are not guaranteed. Information expressed does not take into account your specific situation or objectives and is not intended as recommendations appropriate for any individual. Listeners are encouraged to seek advice from a qualified tax, legal, or investment adviser to determine whether any information presented may be suitable for their specific situation. Past performance is not indicative of future performance. Transcript of Today's Show: For a full transcript of today's show, visit the blog related to this episode at https://www.pfgprivatewealth.com/podcast/ ----more---- Mark: Back here for another episode of the podcast with John and Nick from PFG Private Wealth. On Retirement Planning Redefined, we're going to get back into our conversation from the prior episode about cashflow. We went through some categories, housing, work stuff, healthcare, taxes, so on and so forth, on how those expenses will change either to the plus or the minus, depending on our setup. Well, this is the time to talk about the setup. So as we are assessing our retirement expenses, we'll break these down into a couple of categories. So we're going to talk about those with the guys. John, welcome in buddy. How you doing this week? John: Hey, I'm doing all right. How are you? Mark: Hanging in there. Doing pretty well. How about you, Nick? Nick: Pretty good. Staying busy. Mark: Staying busy and enjoying. So we're taping this before the fourth, but we're dropping this after the fourth, so hopefully you guys had a good fourth? Nick, you probably went up and saw family, yeah? Nick: Heading up north to just, yeah, extended family and friends. That fourth week makes it an easier week to get away because everyone's doing stuff anyways. Mark: Yeah, yeah. It's always funny when we have the holidays and we're kind of taping the podcast ahead of time because then drop it because we're not around, so sometimes I get confused on my dates. So yeah, again, we're talking about this before the fourth about what we'll probably will be doing on the fourth. So John, are you on grill duty? Because I know I am. I'm stuck on it. John: No, no. My brother's forcing me to have a cookout at my house, so I told him if I'm providing the house, he's the one on grill duty. Mark: Okay, that'll work.   John: He's visiting from Boston, so he's excited because my other brother's down here and my sister, cousin, and actually the best man in his wedding is married to my sister, so he decided to come down.   Mark: So Marketing 101. So the second you said Boston, all I hear is these Sam Adams commercials right now, "Your cousin from Boston." Every freaking time I hear Boston, that's the first thing I think of. Or Sam Adams beer, I go right there. All through the hockey playoffs and NBA playoffs, I kept seeing those commercials so it's embedded in my brain. But hey, that's the point of marketing, right, is to be those little earworms, so you go out and buy whatever it is that you go out and buy. And speaking of that, that's my transition into the must haves versus the nice to haves. So if we're talking about those accounts, those different categories that we went through on the prior episode, guys, how do those things now play into for our cashflow? Again, cashflow is the conversation wraparound, it's the wrapper of this whole endeavor. We need to break this down. And do you guys do this with clients? Is it something you encourage them to do, because everybody's individual needs and wants are going to be a little bit differently, but do you break things up in the must-haves versus the nice to haves? Nick: I would say to a certain extent, we do. We kind of list basic expenses and discretionary expenses. Mark: So give us some musts. What's the musts? Nick: So obviously housing, healthcare, food and groceries, some form of transportation, whether it's one vehicle, two vehicles. Getting rid of debt. Those are all things that are obviously needs. [inaudible 00:03:02] Mark: Life essentials, right? Nick: Yeah, for sure, for sure. Depending upon the people, some things are discretionary. I would say most of the people that we work for can't afford to have some sort of traveling in retirement. Mark: Yeah, so is two trips a year or is it five trips a year? That's kinds how it starts to change? Nick: Yeah, exactly. Or even a big trip every X amount of years. So like a baseline travel budget of X, and then let's add one of the things that we commonly do is, let's say the travel budget is $6,000 a year from a baseline standpoint, and then every three years they want to do an additional trip of another 6,000, that's one trip. And so we can scatter that in throughout the plan and show them what it looks like and toggle that on and off. And with how we do planning, we can show them the impact of doing something like that and what it does to their plan. So for the higher tier, nice to have. For discretionary expenses, we will use our planning software and kind of show them, Hey, here's the impact on your plan if you want to do that. Because we always preface everything, it's telling people that it's your money, we're not telling you how to spend your money or what to do with your money, our job is to show you the impact of the decisions that you make. Mark: That makes sense, yeah. Nick: So let's arm you with that information so that you understand if you do these things, then let's make an adjustment accordingly. And for sometimes it helps them put into perspective where not everything is a yes or a no. And what I mean by that is, well, let's just say that there's two lifetime trips that they wanted to really do, and so they like to have a bigger travel budget, but really when you boil it down, it's like, okay, I want to make sure I go to these two places. So we make sure that we can accomplish those and make adjustments elsewhere. [inaudible 00:04:58] Mark: Yeah, because the must ... I'm sorry to cut you off, but I was thinking about this as you were saying it. The must-haves, like the housing, the health, food, you're not going to have any kind of discretionary wiggle room. Well, you don't want to. Now you could say, okay, we'll eat less food, or something like that, but that's not the goal in retirement, you don't want to go backwards. So the place typically we do make some adjustments in the cuts are in the nice to have categories. Nick: Yeah, and usually it's almost more of a toggle where even to a certain extent of, we've had conversations where, hey, if things are going really well in the markets and we're able to take advantage and take a little extra money out in years where things have gone well, that's kind of the impetus to do this sort of thing. Mark: Kind of pad the numbers a little bit.   Nick: Yeah. Mark: John, let me get you on here for, besides the expenses we covered, some of the things we went through, what are some contributing factors that will affect cashflow problems that you guys see in retirement? So all these different things, whether it's healthcare, housing, whether it's whatever, give me some bullet points here for folks to think about on things that can, not in a category per se, but like outside effectors, outside influencers, that can really cause us cashflow problems in retirement. John: The number one I'd say, concern for most people going through retirement is longevity. How long does my money need to last? Mark: And that's the great multiplier, right? Because if you live longer, it makes everything else go up. John: Correct. Yeah. So that's one thing we look at, and we do plans. We're planning for age 100, and we'll always get people like, well, I'm not living that long. But the thing is, that's always ... Mark: What if you do? John: Exactly. So it's like, Hey, listen, if you live to 100, guess what? Mark: You're covered. John: Your plan looks good. You could live to 90 and the plan looks good. So we always plan for, we again, overestimate the expenses, overestimate the life expectancy, Mark: And then you don't have to live with your cousin in Boston, right? John: Exactly. That's right. Mark: All right. What else besides longevity? John: Another big one we're seeing right now is inflation. Because with retirement, you're not getting a paycheck anymore, so your ability to earn is now gone. So your nest egg is providing that income for you and social security. And keeping up with inflation, especially the last few years has been a challenge for quite a few people. And mostly I would say for me, I've noticed my food bill has gone up drastically in the last couple of years, more than anything else is really. Because we talked about musts and nice to have, if trips go up, you could say, all right, I'm going to go on a little bit lesser trip, or not go as much, but you know, you got to eat and you got to have healthcare. So those things there are big ones to really consider going into retirement and to be aware of, is the plan [inaudible 00:07:42] Mark: Yeah, a friend of mine, for Memorial Day, we were talking about cookouts earlier, so we got July 4th, you're probably hearing this after July 4th, but how much did it cost you to buy this stuff? So a friend of mine posted a picture around Memorial Day that he bought three steaks, and he lived in the New York area, Nick, actually. And the tag on the thing was like 60 bucks for three steaks. It was like, holy moly. And I know different parts of the country are more expensive than others, but it was just where I'm at, it was like, wow. And they weren't like that impressive of a steak. So to your point, you got to eat. Nick: To be honest with you, I think there's a little bit of ... Mark: Price gouging. Nick: ... ridiculousness and price gouging going on right now from the perspective of a lot of different areas. I just got my six months notice on my car insurance, I've been complaining to everybody about it. One vehicle, no accidents [inaudible 00:08:34] John: Wait, wait, wait, wait, wait, wait. Nick, this isn't a therapy session, right? Mark: Well remembered, well remembered, John, from the prior episode. Very good. Nick: Yes. I drive probably 7,000 miles a year at the most and paying almost $2,500 a year for car insurance. But the crazy part is that, so okay, if it's always been high, that's one thing, but two years ago when I had switched companies, it was about 1,700. So again, we take ... Mark: Inflation. Nick: Do the math on that. I'm sorry, but 50% is not inflation, there's some 50% in two years and it's kind of wild. And then even just going, the area that we're in has been massive growth in this area, but even what the restaurants are charging, and it's just inflation impacts different areas differently. Mark: It's an excuse. I mean, just like anything, we've turned it into excuse, just like the supply chain problem issue. A friend of mine was trying to get his RV worked on and they were like, well, we're still having supply chain issues for a valve. And it's like, really, a valve on an RV, it's been three years. I don't know if supply chain issue really holds in that argument, but if companies are dragging their feet or employers, somebody's just taking long, that's just an excuse. And I think that's the same thing with the inflation. Is it real? Yes. But to your point, are some of these numbers really truly justified? But they can use that, well, inflation's bad. That's the excuse they use in order to hit you with a 50% increase. Nick: Yeah, and I'd say from a planning perspective, because people get concerned about that from a planning perspective, and saying, well, hey, we had much higher inflation last year than we did in our plan moving forward, and [inaudible 00:10:27] Mark: Are we going to be okay to survive it, yeah. Nick: Yeah, and the easiest way that we mitigate that from a planning perspective is we reprice current expenses. So in other words, repricing the current expenses allows us to take that into consideration, the increases that we've had, and then use more normal rates moving forward, which is how you more accurately display that from a planning side of things. Mark: Gotcha. All right, John, so you hit us with longevity and inflation as a couple of areas that can contribute to cashflow problems. Give me a couple more before we wrap up this week. John: Investment returns is another spot, depending on what type of plan you do or type of planning, if some people will really have their income depend on what their portfolio is returning for them. Mark: So we're talking about sequence of return risk, kind of thing? John: Yeah. So if you having a down year and there's not as much income coming in from your portfolio, well that could ultimately affect your cashflow. Or if it's a down year, and we go back to longevity of, Hey, how long is my portfolio going to last, just have a 20% dip in the market, you're going to be a little concerned about pulling out in that period of time, because once you pull out, you know, you realize those losses, and there's no more recovering [inaudible 00:11:41] Mark: Yeah, it's a double way, it's the market's down and you're pulling money out. So the truth that makes the longevity factor interesting. Okay. John: So one more thing on this. This is really important, and especially what we're seeing in the last couple of years where you have some type of plan where if you are dependent on that, you have almost like a different bucket to pull from in a time like this. So you really want to position yourself to be able to adapt to downturns in the market which could affect your income. Nick: One of the things, and I've been having this conversation quite a bit lately, is that previous to last year, for the dozen years leading up to that, rates in return on fixed or cash and cash equivalence was so low, you couldn't get any return on that money, that really people shifted predominantly, or at least in a large way, to take more risks, meaning more upside, so more heavily on the [inaudible 00:12:39] Mark: Well, because the market was going up too. We get addicted to that, so it's very easy to go, well, it does nothing but climb, it's done it for 12 years in a row, so let's keep going, right? Nick: Yeah. And a little bit of that's a circle where it's part of the reason it kept climbing, is because people were saying, well, and not just, but it's just a contributing factor where it's like, well, hey, I'm literally getting zero return here. So inflation's eating away at my money anyways, I might as well take a little bit more risk. And so earlier this year in the majority of our client portfolios, we took some money off the table because now we can get four to 5% in something that has no risk, and that lets us kind of at least take a deep breath, see what's going on, get some sort of return, where most of our plans, we use five to 6% in retirement anyways. Mark: Yeah, that's a good point. You just got to be careful, right? Because we don't know how long those rates will last either, so you don't want to lock yourself into anything too hefty either, without making sure it's the correct move for you. Especially, I'm thinking more like CDs for example. Nick: Yeah. We still target things that are short term, that sort of thing. But for a retiree, even from the perspective of, let's just use the million dollar number, there's a huge difference between five years ago, where if you wanted to do a one year CD and you could get 0.8%, that's $8,000 on a million bucks versus 5%, even just for a year, now it's 50,000 of income. I mean, one is you can't pay your bills, another one is going to be much more comfortable. So for a retiree, one of the sunny side or glass half full part of what we've been dealing with from an inflation perspective, is that at least there's a little bit more return on safer money as we try to re-plan and readjust. Mark: Yeah. No, that makes sense. So one more category here that I want to hit for just cashflow problems in retirement, John, you did longevity inflation and investment returns. I'm going to assume the fourth one's probably just the emergencies, the things that life throws at you in retirement years? John: Yeah, a hundred percent. Emergency funds, it's [inaudible 00:14:44] Mark: Got to have one. John: ... for that, because you just don't know what's going to happen. Mark: Murphy's Law's going to happen, right? John: Murphy's Law's been happening for the last three years. So basically a big one is healthcare expenses, which we touched on as a must have. So big health event could really dip into your emergency funds. Or again, especially here in Florida with the roofs, have talked to some clients and friends who basically were having homeowners insurance issues here, and then carriers are basically saying, Hey, for you to get renewed, you need a new roof. And all of a sudden it's like, what? I just go, my roof's fine. It's like, well, it's outdated, you know, you need a new one, or else [inaudible 00:15:24] Mark: And so they're not covering maybe the full cost or some of the cost, I guess, but they won't insure you. John: I had some friends actually get notices saying, your roof's too old. If you don't replace it, we're dropping coverage. Mark: Oh geez. Okay, yeah. John: So that's an emergency expense. Mark: Definitely. John: Roofs aren't necessarily cheap, so important to have an emergency fund because like you said, Murphy's Law, you have no idea what's going to come up and you want to be prepared for that. Mark: Yeah. No, that's a good point. Nick: The roof thing is pretty wild here too, because a lot of people have tile roofs down here. And depending upon the size of the house, a tile roof is going to cost you, what John? Between 50 and a hundred thousand dollars? John: Yeah, 50 to a hundred grand. Mark: Really? Holy moly. Nick: And so, yeah, and then if you're in a neighborhood that has association rules and all these other things, it can get a little squirrely. So just understanding even little basic things like that, where especially people that came maybe from up north where it's just shingle roofs and 10, 12 grand, 15 maybe, and then [inaudible 00:16:25] Mark: Yeah, I was going to say, my metal roof was like 20, and that was like eight years ago. Nick: Yeah. So there's just things like that where we always very much emphasize having an emergency fund. Mark: Yeah, definitely. All right, good stuff. Talking just cashflow issues, things to consider here on the podcast the last couple of weeks. So if you're worried about the cashflow or you're just worried about making sure your plan is accurate for the time of life you're in, especially if you're one of these folks that maybe got a plan, you're like, ah, I got a plan put together like a decade ago, or whatever. Well, it's not a set it and forget it, it shouldn't be a set it and forget it, anyway. Even insurance policies, sometimes it's very easy to get one and throw it in the drawer for 20 years and forget about it, but all those things can be looked at and reviewed and see if there's a better way to put a strategy together. So if you need a first opinion or second opinion, reach out to John and Nick and the team at PFG Private Wealth. Find them online at pfgprivatewealth.com. That's pfgprivatewealth.com. Don't forget to subscribe to the podcast on Apple, Google, Spotify, whatever the case might be. Whichever podcasting platform app you like, just type in retirement planning redefine in the search box. Or again, find it all online, pfgprivatewealth.com. For John, Nick, I'm your host, Mark. We'll catch you next time here on the podcast. This has been Retirement Planning Redefined.

Retirement Planning - Redefined
Ep 46: The Most Important Birthdays In Retirement Planning

Retirement Planning - Redefined

Play Episode Listen Later Apr 26, 2022 21:32


There are certain age milestones where you should really pay attention to your retirement planning progress. On this episode, we'll look at the most important birthdays as you approach retirement and cover the exact things you should be checking off your to-do list at each age. Helpful Information: PFG Website: https://www.pfgprivatewealth.com/ Contact: 813-286-7776 Email: info@pfgprivatewealth.com Disclaimer: PFG Private Wealth Management, LLC is a registered investment adviser. All statements and opinions expressed are based upon information considered reliable although it should not be relied upon as such. Any statements or opinions are subject to change without notice. Information presented is for educational purposes only and does not intend to make an offer or solicitation for the sale or purchase of any specific securities, investments, or investment strategies. Investment involve risk and, unless otherwise stated, are not guaranteed. Information expressed does not take into account your specific situation or objectives and is not intended as recommendations appropriate for any individual. Listeners are encouraged to seek advice from a qualified tax, legal, or investment adviser to determine whether any information presented may be suitable for their specific situation. Past performance is not indicative of future performance. Transcript of Today's Show: For a full transcript of today's show, visit the blog related to this episode at https://www.pfgprivatewealth.com/podcast/ ----more---- Mark: Hey, everybody. Welcome into another addition of the podcast. This is Retirement Planning Redefined, with John and Nick and myself, talking investing, finance, retirement, and birthdays.   Mark: We're going to get into important birthdays in the retirement planning process. As we get older, I don't think any of us really want birthdays, but these are some things we need to know. They're pretty useful. Some of this is pretty basic. Some of this stuff's got some interesting caveats in it as well. So you might learn something along the way. It can go a long way towards that retirement planning process.   Mark: We're going to get into that and take an email question as well. If you've got some questions of your own, stop by the website, pfgprivatewealth.com. That's pfgprivatewealth.com.   Mark: John, what's going on, buddy? How you doing?   John: A little tired. Got woken up at 2:00 in the morning with two cranky kids.   Mark: Oh yeah.   John: So if I'm a little off today, I apologize.   Mark: There you go. No, no worries. You get the whole, they climb the bed, and then you're on the tiniest sliver?   John: I got one climb into bed, I think kicked me in the face at one point.   Mark: Oh, nice.   John: Another one climbed into bed missing out on the other one, because they share a room. Then I had the sliver. I woke up almost falling off the bed.   Mark: There you go. And usually freezing because you have no blankets.   John: Yeah, yeah.   Mark: That's usually the way it goes. Nick's sitting there going, "I don't know what you guys are talking about."   Mark: What's going on, buddy. How you doing?   Nick: Yep. No. Pretty low maintenance over here.   Mark: Well, that's good. Hey, don't you have a birthday coming up?   Nick: I got a couple months still.   Mark: Okay, a couple months.   Nick: Yeah, I just got back from a trip a few weeks ago. Some buddies that I grew up with, a group of us have been friends for a really long time, I guess, going back to middle school. We're all turning 40 this year, so we rented a house in Charleston, and all survived.   Mark: Nice. There you go.   Nick: Yeah. It was good.   John: This is how you know Nick's turning 40. He came back with neck pain.   Mark: Exactly.   Nick: Yeah.   Mark: Hey, when you start to get a certain age, you start going, "When did I hurt that?" It's like, "I didn't even do anything." Yeah. You don't have to do anything.   Mark: Well, you know what? That's a good segue. Let's jump into this.   Mark: We're going to start with age 50. I turned 50 last year. First of all, the thing that sucks is you get the AARP card. I don't know about all that. That's annoying as a reminder that you're 50.   Mark: But the government does say, "Hey, let me help you out a little bit here if you need to catch up on some of the retirement accounts, help building those up." Talk to me about catch up contributions, guys.   Nick: Yeah. Essentially what happens is when you hit 50, there's two types of accounts that allow you to start contributing a little bit more money. The most basic one is an IRA or a Roth IRA, where the typical maximum contribution for somebody under 50 is 6,000 a year. You can add an additional thousand to do a total of 7,000 a year. The bigger one is in a 401(k) or 403(b) account, where you're able to contribute, I believe it's an extra 6,500 per year.   Nick: This is also a good flag for people to think about where, hey, once that catch up contribution is available, it's probably a good time, if you haven't done any sort of planning before, to really start to dial in and understand your financial picture a little bit more. Because if you talk to anybody that's 60, they'll tell you that 50 didn't seem too far back. So that's a good reminder to dig into that a little bit.   Mark: Yeah. It adds up. It's not necessarily chicken feed. You might hear it and think, "Well, a thousand dollars on this type of account over a year, or 6,500 on the other type of account, whoopedidoo." But if you're 50 and you're going to 67, let say, for full retirement age, and we'll get to that in a little bit, that's 17 years of an extra seven grand. It's not exactly chicken feed, right?   Nick: No. It's going to be big money down the road.   Mark: Yeah, exactly. So that's 50.   Mark: John, talk to me about 55. This one's really similar to 59 and a half, which most of us are familiar with, but most people don't understand the rule at 55. So can you break that down a little bit?   John: Yeah. We don't see people utilize this too often, but an example would be let's say you're 50, 55, 56, and for whatever reason, you leave your current job. You have an opportunity, at that point...   John: Let's give a bad scenario. You get laid off. If you didn't have a nest egg saved up in savings, there's an opportunity to actually access some money from your 401(k) plan without penalty. What you'll do is, basically, you take the money directly from the plan, and you just have it go to your bank account, and the 10% penalty's waived.   John: Now, some people need to be careful with this. Once you roll it out to an IRA, this 55 rule here, where the 10%'s waived, ceases to exist. It has to go from the employer plan to you directly in that situation. It's a nice feature if someone finds themselves in a bad situation, or they need access to money, and the 10% penalty's gone, but you still have to pay your income tax on that money [crosstalk 00:05:03]   Mark: Of course. Yeah. That caveat being, it's only from the job that you've just left, right? It can't be from two jobs ago kind of thing. It's got to be that one that you've just walked away from, or been asked to leave, or whatever the case is. That's that caveat.   John: Correct.   Mark: It's basically the same rules, Nick, as the 59 and a half. It's just is attached to that prior job. But 59 and a half is the more normal one. What's the breakdown there?   Nick: Yeah. Essentially what happens is, at 59 and a half, you are able to take out money from your qualified accounts while avoiding that penalty without any sort of caveats. One thing to keep in mind is that usually you're taking it out from accounts that...   Nick: For example, if you're currently employed, the process of taking it out of the plan where you're employed can be a little bit different, but it's pretty smooth and easy if you have an IRA or something like that outside of the employer plan.   Nick: One other thing that happens in most plans, for people at 59 and a half, is, and we've seen it a bunch lately, where a lot of 401(k) plans have very restricted options in fixed income and those sorts of things, where most or many plans allow people to take inservice rollovers, where they're able to still work at their employer, but roll their money out of the plan to open up some options for investments outside of the plan.   Nick: That's not always the best thing for people. Sometimes the plans are great. Fees are really low. Options are great. So it may not make sense, but oftentimes people do like having the option to be able to shift the money out without any sort of issue.   Mark: Okay. All right. So that's the norm there. You got to love that half thing. You always wonder what the senators or whoever was thinking when [crosstalk 00:06:56]   John: Finally, they got rid of the 70 and a half [crosstalk 00:06:58]   Mark: Yeah. They get rid of that one. Yeah. We'll get to that in just a minute as well.   Mark: John, 62, nothing too groundbreaking here, but we are eligible finally for Social Security. So that becomes... I guess the biggest thing here is people just go, "Let me turn it on ASAP versus is it the right move?"   John: Yeah. So 62, you're now eligible. Like you said, a lot of people are excited to finally get access to that extra income. You can start taking on Social Security.   John: Couple of things to just be aware of is, any time you take Social Security before your full retirement age, you will get a reduction of benefit. At 62, it's anywhere, depending on your full retirement age, roughly 25 to 30% reduction of what you would've gotten had you waited till 66 or 67.   Mark: They penalize you, basically.   John: Yeah.   Nick: Yeah. Actually, if you do the math, it ends up breaking down to almost a half a percent per month reduced.   Mark: Oh wow.   Nick: Yeah. It really starts to add up when you think about it that way.   John: Yeah. We always harp on planning, so important if you are thinking about taking it early, once you make that decision, and after a year of doing that, you're locked into that decision. So it's important to really understand is that best for your situation.   John: Other things to consider at this age, if you do take early, Social Security does have what they call a earnings penalty slash recapture. If you're still working and taking at 62, a portion of your Social Security could be subject to go back to them in lieu of, for a better term, [crosstalk 00:08:27]   Mark: It's 19,000 and some change, I think, this year, if you make more than that.   John: Yeah.   Mark: Yeah.   John: Yeah. Anything above 19,000 that you're earning, 50% goes back to Social Security. [crosstalk 00:08:36]   Mark: Yeah. For every two bucks you make-   John: 5,000 goes back to Social Security. So that's really important.   John: Something that I just want to make, last point on this, is that earnings threshold is based on someone's earned income, and it's based on their own earned income, not household. That comes up quite a bit, while people say, "Well, I want to retire and take at 62, but my husband's still working. Am I going to have a penalty if I take it?" The answer is no. It's based on your own earnings record.   Mark: That's where the strategy comes into play too. Because if you are married, then looking at who's making more, do we leave one person's to grow, as we're going to get into those in just a second, to grow towards that more full number.   Mark: Again, that's all the strategy. It may make sense for one person to turn it on early, and the other person to delay it. That's, again, part of the strategy of sitting down and talking with a professional, and looking at all the other assets that you have, and figuring out a good move there.   Mark: Nick, let's go to Medicare. 65 magic age.   Nick: Yeah. Actually, my dad turns 65 this year. So we've been planning this out for him. He is a retired fireman, so he has some benefits that tie in with his pension.   Nick: One of the things that came up, and just something that people should think about or remember, even if they are continuing to work past 65, is it oftentimes makes sense to at least enroll in Medicare Part A. You can usually enroll as early as three months before your birthday. The Medicare website has gotten a lot easier to work with over the last year or two.   Nick: Part A, the tricky thing is that you want to check with your employer, because usually what happens for the areas that Part A covers, which is usually hospital care, if you were to have to be admitted or certain procedures, it's figuring out who's the primary payer, who pays first, who pays second. So making sure that you coordinate your benefits. Check in with HR, if you're going to continue to work.   Nick: If you are retired and are coming up on that Medicare age, make sure that you get your ducks in a row so that you do enroll. Most likely you're going to start saving some money on some healthcare premiums.   Mark: Technically, this starts about, what, three months early? It's a little actually before 65. I think it's three months when you got to start this process, and three months before and after.   Nick: Yep. Yeah. You can typically enroll three months before your birthday, and then through three months afterwards. There can be some issues if you don't enroll and you don't have other healthcare, at least for Part A. There can be penalties and that sort of thing.   Nick: Frankly, with Medicare and healthcare in retirement, this is a space that we typically delegate out. We've got some good resources for clients that we refer them to, because there are a lot of moving parts, and it can be overwhelming, especially when you start to move into the supplements and Advantage plans, and all these different things.   Mark: Oh yeah. And it's crucial. You want to make sure you get it right. A lot of advisors will definitely work with some specialists, if you will, in that kind of arena. So definitely checking that out when we turn 65.   Mark: Again, some of these, pretty high level stuff, some of this stuff we definitely know. But we wanted to go over some of those more interesting caveats.   Mark: Let's keep moving along here, guys. Full retirement age, 66 or 67. John, just what? It's your birthday, right?   John: It is your birthday. That's the time that you can actually take your full Social Security benefit without any reduction, which is a great thing to do. Then also that earnings penalty we discussed earlier at age 62, that no longer exists. Once you hit your full retirement age, 66 or 67, you can earn as much as you want and collect your Social Security. There's no penalty slash recapture.   John: When that happens, people have some decisions to make. If they're still working, they can decide to take their Social Security. I've had some clients that take it, and they use that as vacation money. I've had some other ones take it, and they take advantage of maxing out their 401(k) with the extra income. Or you can delay it. You don't have to take it. You get 8% simple interest on your benefit up until age 70.   John: So full retirement age, you got a lot of big decisions to make, depending on your situation. But you want to make sure you're making the best for what you want.   Mark: Definitely.   Nick: Just as a reminder to people that that 8%, and you had mentioned it, but it does cap out at age 70. So there's no point in waiting past 70, because it doesn't increase any more.   Mark: Right. Thanks for doing that. It wasn't on my list, but I was going to bring it up real fast. So yeah. People will sometimes email and they'll say, "Hey, I want to keep working past 70. How's that affect Social Security." It's like, "Well, you're maxed out, so you got to just go ahead and get it done." You can still work if you're feeling like it. Your earnings potential is unlimited, but it's just a matter of you're not going to add any more to it. So I'm glad you brought that up.   Mark: John, you mentioned earlier, they got rid of the other half. Thank God. The 70 and a half thing, just because it was confusing as all get out. They moved it to 72.   Nick: Yeah. Required minimum distributions, as a reminder for people, are for accounts that are pre-tax, where you were able to defer taxation. 401(k), traditional IRA, that sort of thing. At 72, you have to start taking out minimum distributions. It starts at around 3.6, 3.7% of the balance. It's based on the prior year's ending balance. It has to be taken out by the end of the year.   Nick: An important thing for people to understand is that, many times, people are taking those withdrawals out to live on anyways. So for a lot of people, it's not an issue at all. However, there are a good amount of people that it's going to be excess income.   Nick: Earlier mentioned, hey, at age 50, really time to check in and start making sure that you're planning. One of the benefits of planning and looking forward is to project out and see, hey, are these withdrawal going to cause you to have excess income at 72, where maybe we're entering into a time that tax rates could be higher, tax rates could be going up, which is fairly likely in the next five to 10 years. So if we know and we can project that, then we can make some adjustments to how we save, should you be putting more money into a Roth versus a traditional, and how we make adjustments on the overall planning.   Nick: So making sure that you understand how those work, and then the impact that it has on other decisions to take into account for that situation, is a huge part of planning.   Mark: Definitely. Those are some important birthdays along the way. You got to make sure you get this stuff done. 72, there's the hefty penalties involved if you don't do that. Plus you still got to pay the taxes. All this stuff has some crucial moments in that retirement planning process, so definitely make sure that you are not only celebrating your birthday, but you're also doing the right things from that financial and that retirement planning standpoint along the way.   Mark: Again, if you got questions, stop by the website, pfgprivatewealth.com. That's pfgprivatewealth.com. You can drop us an email question as well, if you'd like. That's what we're going to do to wrap up the show right now.   Mark: We got a question that's sent in from Jack. He says, "Hey, guys. I've thought about meeting with a financial advisor to plan my retirement, but I've never used a budget or anything like that before. So I'm wondering, should I budget myself for a couple of months before I meet with a professional?"   Nick: Based upon experience, putting expense numbers down on paper is one of the biggest hurdles for people to get into planning. But with how this question is phrased, I would be concerned, because it's kind of like the situation of starting a diet. You start a diet. You're going to eat really good for two to three weeks. You're trying to hold yourself accountable. You're functioning in a way that isn't necessarily your normal life.   Nick: One of the things, as advisors, that we want to make sure that we understand are what are you really spending. It's great to use a budget, but if you're budgeting to try to look good in the meeting, which we've seen happen, you're painting a false picture, and you're not letting us know what the finances actually look like.   Nick: So I would actually say to put down the real expense numbers in place, let's see what it really looks like, and then if we need to create a budget after we've created a plan, then that's something that we can dig into.   Mark: Yeah. John, let me ask you, as we wrap this up, sometimes people associate seeing a professional financial advisor with a budget. Also, people have a cringe to the B word. They think, "Well, I don't want to live on a fixed budget," or something like that.   Mark: That's not necessarily what we're talking about, right? That's not probably what Jack is referring to. He's just trying to figure out, I guess, more income versus expenses, right?   John: Yeah, yeah. The first step is to analyze your expenses. That could be what he's referring to as far as, "Hey, should I take a look? Should I get my expenses down before I meet with someone?"   John: I'd agree with Nick, even if that's what you're looking at, versus the budgeting, I would say no. I think the first step is sit down with an advisor, because they can assist in categorizing the expenses correctly based on today's expenses, versus what expenses are going to be at retirement.   John: I think it's important just to get going rather than trying to prep. Because we've seen a lot of people that have taken ... They've been prepping for years to meet. That's years where they haven't done anything, and they've, unfortunately, lost out on some good opportunities, otherwise, if they just said, "Hey, I'm going to sit down first, see what's going on."   Mark: Yeah. It gives you that built-in excuse.   John: [crosstalk 00:18:26]   Mark: It gives you that built in, "Well, I'm not quite ready." Well, you might never be ready if you play that game. Especially a lot of times when it's complimentary to sit down with professionals, have a conversation. Most advisors will talk to you, no cost or obligations. So why not right? Find out. Just get the ball rolling. That's the first step. It's usually the hardest part too.   Nick: Yeah. One thing that we typically tell people is that we are not the money police. We are not here to tell you that you can't use your money the way that you want to use it.   Nick: The way that we view ourselves, and what our role is as an advisor, is to help you understand the impact of decisions. Whether those decisions have to do with spending money, saving money, whatever, it's to make sure that you understand the impact of your decisions so that you make better decisions. That's it.   Mark: There you go. Yeah. It's your money, at the end of the day, your call, but certainly having some good, well, coaches in your corner, if you will, advisors to help advise, that's the whole point. But I like that. Not the money police.   Mark: All right. That's going to do it this week, guys. Thanks for hanging out. As always, we appreciate your time here on Retirement Planning Redefined. Don't forget. Stop by the website.   Mark: If you need help before you take any action, we always talk in generalities, and try to share some good nuggets of information, but you always want to see how those things are going to affect your specific situation.   Mark: If you're already working with John and Nick and the team at PFG Private Wealth, fantastic. Then you already have a lot of this stuff in place. But if you have questions, or you're not working with them, or you've come across this podcast in whatever way, or maybe a friend shared it with you, definitely reach out and have a chat. pfgprivatewealth.com. That's pfgprivatewealth.com. Don't forget to subscribe on whatever podcasting platform app you like to use.   Mark: We'll see you next time here on the show. For John and Nick, I'm your host, Mark. We'll catch you later here on Retirement Planning Redefined.

The SportsEthos New Orleans Pelicans Podcast
Pesky Hornets nick one from the Pelicans

The SportsEthos New Orleans Pelicans Podcast

Play Episode Listen Later Mar 22, 2022 22:13


The Pelicans finished off the road trip in Charlotte with a late loss to the Hornets. The Pelicans fought with inconsistent umpiring, a Herb Jones ejection, late game offensive struggles and a surging Hornets team. Lyle recaps the loss.Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy

Retirement Planning - Redefined
Ep 38: Financial Mistakes Couples Make

Retirement Planning - Redefined

Play Episode Listen Later Nov 2, 2021 19:35


Getting husbands and wives on the same page with their retirement plan can often be a challenge. Let's talk about some of the things that couples often mess up. Helpful Information: PFG Website: https://www.pfgprivatewealth.com/ Contact: 813-286-7776 Email: info@pfgprivatewealth.com Disclaimer: PFG Private Wealth Management, LLC is a registered investment adviser. All statements and opinions expressed are based upon information considered reliable although it should not be relied upon as such. Any statements or opinions are subject to change without notice. Information presented is for educational purposes only and does not intend to make an offer or solicitation for the sale or purchase of any specific securities, investments, or investment strategies. Investment involve risk and, unless otherwise stated, are not guaranteed. Information expressed does not take into account your specific situation or objectives and is not intended as recommendations appropriate for any individual. Listeners are encouraged to seek advice from a qualified tax, legal, or investment adviser to determine whether any information presented may be suitable for their specific situation. Past performance is not indicative of future performance. Transcript of Today's Show: For a full transcript of today's show, visit the blog related to this episode at https://www.pfgprivatewealth.com/podcast/ ----more---- Mark: Everybody welcome to the podcast. Thanks for tuning into the show. As we talk about investing, finance and retirement here on Retirement Planning Redefined with John and Nick. And we're going to talk about couples this go around and some financial mistakes couples often get into. Because John, I don't know about you, buddy, but my wife and I are on the same page about everything all the time. John: Yeah. Sounds like you go by the motto happy wife, happy life. Mark: Yeah. Not so much. No. She would disagree with that. Something fear. She's like, "If I could ever get you to agree with me on anything for happy wife, that'd be good." But no, this is a joke people make all the time. Couples that definitely do not see eye to eye on a lot of things, and finances is certainly one of those. John: Finances and kitchen remodels, definitely. So... Mark: Kitchen remodels, Nick, what's going on with you, buddy. How you doing? We don't want to leave you out. Nick: Pretty good, just staying busy, happy that football seasons here, NFL season is here. I'm looking forward to fall weather in Florida. Mark: Yeah. Well it's on its way, hopefully. So we're into September when we're taping this. So let's get into it and talk about some stuff. I imagine you guys see a lot of different things when couples come in, and you see a lot of different people on, whether they're on the same page or different pages or whatever the case might be. And many times as much as couples might think they've talked about this stuff, I imagine you guys probably see that they didn't talk about it as much as they should have, or maybe as a depth or they just really glossed over the subject. Mark: So let's dive into a few things and see if we can highlight stuff for folks. So when they do come in and sit down, maybe they're a little further along in this conversation, and you guys don't have to wear your marriage counselor hats along with your financial advisor hat. So number one, making the wrong choice on how to handle the spousal benefit option, if you're lucky enough to have a pension, I talked to a bunch of guys advisors and stuff, fellows over the years that have said, "It's amazing how many times somebody will take that without even talking to their spouse about it, just because they see that higher number." Nick: Yeah, it's interesting that a lot of places have put some restrictions from the perspective of the paperwork where they'll have to be a notary sign off or things like that, but we've seen them without, and there's definitely a misconception or misunderstanding on how these pension payouts will work. And so this could be a mistake that it's typically a one-time decision. So for anybody that has substantial income, that will be coming in from a pension, this could ultimately be the most important decision that they make, and it's something not to overlook. And just to be a little bit more direct, oftentimes they will see the single life option, which you would referred to as the highest payout, and not realize that if something happens to them, then nobody gets any remaining benefit. Nick: One of the ways that we'll try to phrase that to people is, no matter what, I've never met anybody that wants to have worked for a company for a long time, and even if there's a divorce situation or something where if something happens to them that nobody gets any of the benefits that they would have been due for the rest of their life. So on making sure that those options are understood and making sure that they're correlated and tied into the rest of the decisions that they've made for their planning it's super important. John: Yeah. And a big thing to that, Nick mentioned single life, is understand the different joint survivor lives. You can have a joint survivor where one passes away, they still get a 100% of the benefit. And then there's a couple of different options where you get 75 and 50%, and it's always good to reference the plan to make sure if one person passes away that the plan basically is still intact and that surviving spouse can still hit all their goals. Mark: Absolutely. On those conversations, if it does happen, I can't imagine that the other person's too happy about, "Hey, wait a minute, why did you take the wrong one and leave me out?" So, you want to make sure that you're doing those for sure. Number two is the coordination on the social security strategy, social security is that horse that we're going to beat constantly, because it's a big component of people's retirement plans, and the money that's out there. But we can't get into this rush to just go turn it on without really thinking about a strategy, especially if you're married, because there's a lot of strategy involved. John: Yeah, there is. You hit it perfectly when you said it's a big decision. I believe social security equate for like 30 to 40% of someone's household income in retirement. So you want to coordinate it right, and the biggest mistake we typically see is once one person retires maybe early at like 62, 63 64, they're just going to go ahead and turn it on, while the other spouse is working, but there's definitely a lot of different strategies that you can implement. Nick and I focus heavily on planning, and it really all does come back to the planning cause everyone's situation is different, but you really want to look at what's best for your situation. Does it make sense to defer the higher amount for survivor plan down the road? We just talked about pensions. Is there a current pension in place? Which will make the social security decision even more important to really coordinate that with any pension or any other guaranteed income stream. Mark: Strategy is key, and so many things for retirement planning, but certainly in social security. And again, that's why the podcast this week is really about mistakes for couples. Because again, we can kind of talk through this stuff in generalities and sometimes we just kind of barely touch on it, but there's a lot of minutia to dive into, and that's where an advisor really comes into play. And here's a simple one guys, and I don't know how often you guys encounter this, but I talked to many advisors who say, "It's pretty surprising. People will come in for the first time. And they really haven't truly talked about what they want to do with their actual time in retirement, what they want to actually do with retirement. And yeah, they say the general things, well, we want to travel, well, he wants to play golf or whatever, but it's like, well, what does that actually look like? How much golf, how much travel? Where to? So on and so forth." So that stuff really is important in what you guys do to help them design a plan for that. Nick: Yeah. This is something that I've been really trying to focus on with people, with clients. And one of the things that I've found is that, for so many people that are retiring recently or very soon, looking back, one of the things that I've found is that many of them, even if we were to rewind five, six years ago, we've had this huge run-up in the market. So now you have people that have a lot more money in retirement than many of them thought that they would. And so some of the options that they have in some of the thought processes that they can have is less of a scarcity mindset and more of a thriving mindset and really trying to focus on things that they really want to do. Nick: An example recently is a plan with clients that had retired within the last year. And so they're plugging along and the plan looks really, really solid. And so, I really tried to start drilling down. It's like "Now that you've been retired for a little while, now that you have a feeling of what it feels like, what are the things that you really want to do?" And then using planning to help them figure out if we can do it from a financial standpoint. So, one client wanted a larger property for their primary residence to be able to work on cars, that was the kind of hobby. And so it goes. We've kind of talked about the fact that the sharper they stay, the more engaged they stay, whether it's hobbies, whether it's volunteering, no matter what it is, as long as you're staying engaged and sharp, their life is going to be probably longer realistically. And the brain's not going to really rot away. Nick: And so helping people dial into those things that they want to do, I think is probably one of the most enjoyable things on our side of the business, but it takes a while and quite a bit of repetition to really get them to visualize it and see it. Mark: Yeah, indeed, because again, you might talk about some basic things you want to do, but you really start to have to dive in and dissect more because you got all this free time now. And of course you hear all of the funny stories, maybe the Mrs. Will say, "Find something else for him to do get him out of my house." John: One thing we've noticed is that when we do the planning, we'll ask that question and one spouse will say something and the other one just gives a look like "What? I didn't know that." Mark: First I've heard about it. And that's the point of really even though they think maybe they've communicated this. And again, I think that's really where great value comes into play from what you guys do, because you get to be this... Maybe that's not always the most fun thing to be in the middle, but you get to be this mediator a little bit, or this sounding board where to that point, John, when somebody is like, "Wait a minute, this is the first time we're talking about it." Now they're going to hash it out and you guys can help them walk through it. So hopefully it's good in the end because they're getting through to the details they really got to get to. So these are, again, are mistakes that couples can get themselves into when planning for retirement. Number four, not coordinating other accounts. So how important is it guys to include or incorporate coordination amongst his 401k and her IRA and so on and so forth? John: So this is a really important one. And again, we sound like broken records, but this is important to the plan itself, as far as once both people are retired, and you're looking at how much income is needed from the nest eggs, where is that money coming from? Whose accounts? And once that's determined, that will dictate how that money should be invested. So this is really important and often overlooked if someone has not gone through a comprehensive plan, whether they've done it themselves or working with an advisor, but this could be a really big mistake if you haven't coordinated this correctly. Mark: And coordination is the key, getting on the same page is the key. I started off this podcast by joking about my wife and I are always in agreement because that's how spouses are. Yeah. Right. So, at the end of the day, we tend to see differently in a couple of ways, opposites attract kind of thing. Right. So how often, and how much do you guys deal with managing the opposites in their personalities with risk? For example, that's a big one, obviously. Because many, many times I think we're going to see people where one person is like, "Hey, let's take some risks, let's take some chances." And the other, one's not so comfortable with that. And maybe they haven't even been as honest as they might be in front of you guys saying, "You know what, now that we're sitting here, I don't want to take that much risk." So you guys have to figure out a way to get them in a neutral, workable ground. Nick: I think one of the ways to do that, that we found to be the most effective, is to try to double down on embracing the differences and letting them know that. And even if we go back through the plan and say, "Hey, look at these two decisions that you made, really help the plan in this way." And then, these two decisions that the other spouse made really helped the plan in this way. So they compliment each other. Nick: So, let's focus on moving forward. What are the things that we do to earn the next step? And what I mean by that is, so there's a couple of things, we try to continuously emphasize the fact that we don't really care what their brother, sister, neighbor, dog walker/former coworker does. And then we'll rattle off four or five things that are immediately different about their life then all of those people. And so they start to get that. And then as we further drill down and we'll say, "Okay," we'll look it, "Hey, I know that you're feeling a little bit concerned about the market, but remember that we've got two years of cash in the bank. So that's your pass to be able to do X, Y, and Z." And so almost just walking them through and helping them understand, like, "Hey, we've done this, and so we graduate to this level. We've done this, we graduate to this level." And so we keep moving up the ladder and that all of these decisions are tied together and correlated. Nick: And we try to emphasize the fact that, when we make these recommendations, it's not like we make these recommendations for every single person that we work with, these recommendations are specific to them. And so I think that helping them understand that, to embrace those differences and to make sure that we've done things, we've put things in place. So maybe the spouse sets a little bit more aggressive, we point out, "Well, Hey, look it, we've got 15 to 20% of your assets in this Roth IRA. And this is where we're taking the majority of the risk in your portfolio, because the upside is tax-free." And then maybe the other spouse is more conservative and we say, "Hey, remember that you have your social security, you got a small pension. And we put this annuity in place with guaranteed income to satisfy that risk that we perceived." And so all of these things are working together to try to balance it out. And usually it's just kind of rehashing that over time. And then people start to get it. Mark: Yes. The multiple pieces of the pie. So you're going to have these different things in there that are going to hopefully help address multiple concerns. That's why there's a lot of financial products and vehicles out there to be used. And it's not any one thing is the right fit, any one thing is the wrong fit. It's a matter of finding the right vehicles for the right situation and then plugging and playing those in for the different person and their scenario. So that's some places financial mistakes couples can get into. Of course you want to make sure you don't get into those by working with a good advisor or a qualified team, like John and Nick and their team at PFG Private Wealth. So if you'd like to drop by the website and send us an email as well, pfgprivatewealth.com. Mark: If you've got a question, we take those from time to time pfgprivatewealth.com is where you can go. All questions get answered, not all get asked on the podcast, but we do have one this week. So let's see what we got for you guys, Christopher, he sent this one and he says, "Hey, John," but I'm sure he means either one of you, but he says, "Hey, John, I'll be turning 70 at the beginning of next year. And I'm getting annoyed about having to think about taking money out of my IRA, because I'm not going to need it. I'm sure you have some tips for circumventing this rule. What are they?" John: Christopher, good question. So just to update you, the new RMD Required Minimum Distribution age is now 72 versus 70. So that was just seven and a half, that was just changed a couple of years back. But now that this comes up often, one of the things that we currently do for our clients is we'll actually set up a individual taxable account where we'll basically just, if there's a 15, $20,000 RMD, that's unneeded, we'll just transfer that right into it. And go ahead and invest in exactly what they're invested in before, because it really just needs to come out of the IRA, it can go right back into the market. Another strategy we've done is if a client is doing some charitable contributions, you can actually make charitable contributions from your IRA to your selected charity. And that will avoid taxation of that. And again, we always have our disclaimer, talk to your tax advisor if you look for tax advice, we're not tax professionals, but that's a really good strategy to use when you're trying to avoid the RMD taxation. Mark: Got you. Well. So the good news, Christopher, is you got a little bit more time. It's 72 now. I love when people say, "There's got to be ways around this," there really isn't, either don't have an IRA or there's not really a way around it. You're going to have to give the government their share, which is why people have been doing things like conversions. There've been converting money out and doing so on and so forth so they can reduce the amount in there to avoid having to pay that by not having the account. But that's really about the only way, correct? Nick: Yeah. The conversions can be helpful to reduce the amount that's going to have to be required to come out. But at the same time when the window is short and they realize that, "Hey, I'm just going to have to pay. I'm going to have to pay taxes on that money now when I convert versus, a portion of the amount that I would take out down the road." Or that, it's like, "Hey, well, you are going to pay tax on it, but still our plan's recognizing the taxation and you could see here in the planning software, this is what your total tax obligation is going to be. And we can reinvest some of that money. So it may have less of an impact on, on you that you think." Nick: I think one of the things that we've seen is that obviously taxes are a hot button and nobody likes paying them. But I would say that probably 90% of the people that we interact with overestimate, or assume that they pay a lot more in taxes than they actually do. So that's always a good exercise for us to remind people that in the scheme of things, many of them are paying a lot less than they realize anyway. So it's one of those things where in theory sometimes the move can be good, but oftentimes in their mind it's better than in actuality. And of course, just like anything else, we try to test that out through the planning. Mark: Well, Christopher, so there's some good news in there, like I said, there's some more information for you. Obviously they showed a couple of ideas, but hang onto your hat. Because as of right now, stuff's going through that we're tying at the time we're taping this. There's more things to possibly be passed. So there could be some changes again, coming as well. So we'll do an updated podcast on that once they go through or as we have more information, but for now, that's going to wrap it up this week here on the podcast, Retirement Planning Redefined with John and Nick. Guys, thanks for hanging out as always. Appreciate your time. And folks, if you need some help, reach out to them at pfgprivatewealth.com, that's pfgprivatewealth.com. Don't forget to subscribe on Apple, Google, Spotify, iHeart, Stitcher, any of those platforms. You can certainly find it that way. You can find all that information at the website and subscribe from there, again, pfgprivatewealth.com, for John and Nick. I'm Mark. We'll see you next time here on the podcast.

Retirement Planning - Redefined
Ep 36: 5 Things About Decumulation

Retirement Planning - Redefined

Play Episode Listen Later Sep 2, 2021 18:14


So much focus in the financial world revolves around accumulating money. There's all sorts of advice, how- to guides and guardrails in place when it comes to saving and investing, but a lot less resources out there to help retirees navigate the period of time after retirement. This is known as decumulation, the spending down and managing of the assets you've accumulated through your life. Helpful Information: PFG Website: https://www.pfgprivatewealth.com/ Contact: 813-286-7776 Email: info@pfgprivatewealth.com Disclaimer: PFG Private Wealth Management, LLC is a registered investment adviser. All statements and opinions expressed are based upon information considered reliable although it should not be relied upon as such. Any statements or opinions are subject to change without notice. Information presented is for educational purposes only and does not intend to make an offer or solicitation for the sale or purchase of any specific securities, investments, or investment strategies. Investment involve risk and, unless otherwise stated, are not guaranteed. Information expressed does not take into account your specific situation or objectives and is not intended as recommendations appropriate for any individual. Listeners are encouraged to seek advice from a qualified tax, legal, or investment adviser to determine whether any information presented may be suitable for their specific situation. Past performance is not indicative of future performance. Transcript of Today's Show: For a full transcript of today's show, visit the blog related to this episode at https://www.pfgprivatewealth.com/podcast/ ----more---- Speaker 1: Hey, everybody. Welcome into the podcast. Thanks for hanging out with us here on Retirement Planning - Redefined with John and Nick and myself once again chatting about investing, finance and retirement. We're going to talk about decumulation, five things you must know about decumulation to retire successfully. We're going to get into that in just a second.   Speaker 1: Of course, if you've got some questions, need some help, reach out to John and Nick at PFG Private Wealth. That's PFGprivatewealth.com. That's the website you can stop by at, and gents, what's going on? John, how are you buddy?   John: I'm good, I'm good. I know it's been awhile since I think we've done one of these sessions here.   Speaker 1: Enjoying the summer, I guess, right?   John: Yeah. It's been a busy summer for myself, and Nick can speak to what he's been up to, but yeah, it's definitely been busy. But my little one started kindergarten, so I'm adapting to that life of drop-off car line and pickup, which is fun.   Speaker 1: Yeah. I don't know if you remember this movie or not, but do you remember this Michael Keaton movie, Mr. Mom? If you haven't seen it, you should go watch it because you could probably relate to it. The whole car line drop-off thing is hysterical and that was from like the '80s.   John: I'll definitely go check it out.   Speaker 1: Yeah.   John: Yeah. Right now my wife's, she's studying for her boards, so I've been helping out with all that stuff and yeah, it's been interesting.   Speaker 1: It's a great movie. It's a great old '80s movie, but yeah, you could probably really relate to some of this stuff right this minute. Especially when you mentioned that car line thing, it made me think of that because he just, he has the hardest time understanding and getting his mind wrapped around the whole car line thing. It's pretty hilarious. Yeah, definitely check it out.   Speaker 1: Nick, what's going on with you, buddy? I know you've been traveling and running around.   Nick: Yeah. I was a recently up north hometown in Rochester, New York. I've got a lot of friends, family and clients up there, so did my yearly pilgrimage. Just kind of catching back up from being back and readjusting to the heat, so all good.   Speaker 1: Yeah. Got you. All right. Well, good. Well, I'm glad you guys are doing well and yeah, let's get into the five things we need to know about decumulation.   Speaker 1: First of all, it's a big fancy sounding word, but really it just is the spending of your assets, right? I mean, we've accumulated the money, now we're going to decumulate it. It's just kind of a fancy way of spending down what we have saved.   Speaker 1: On this episode, let's point out a few items that people might want to think about to retire successfully. Let's start with the first one. Nick, I'll give this to you. Just a lack of support. I think if you go in, obviously if you type in any kind of a financial something or another, you're going to get 18 billion hits on Google, and a lot of it is about how to accumulate money versus not too much necessarily about the decumulation side.   Speaker 1: But I think if you think if you're working with a good financial professional or an advisor like you guys, obviously that's where some of that support is going to come from, a lot of that support is going to come from. But there is a real lack of that it seems like if you're just trying to do it yourself.   Nick: Yeah, it's interesting. The perspective that people tend to have for this phase of their life, as far as whether you refer to it as decumulation or the distribution phase of life, is oftentimes kind of ingrained in them from their parents a little bit.   Nick: What we've seen a lot with people that are really entering or soon to enter into retirement, and I had this conversation recently with a client is, hey, we know what our expenses are. We have an idea what's going to be coming in from social security, and we just want to protect our principal and go ahead and just take interest in dividends from our accounts, because that's what we know from our parents, and that's kind of... That just makes sense to us.   Nick: The conversation that we get into and we take them really have to force them to go and review the plan that we've put together because the plan will really lay out how this is going to be structured and the underlying components can be a little bit confusing.   Nick: As an example, when I explain to somebody that brings that up that that's what they want to do and help them understand that, hey, on average your dividends on the stock side of your portfolio might be around 2%, if you want solid stocks. Then from an interest rate standpoint, maybe you're looking at 2 or 3% as well. If we're looking at a million bucks, we're talking a total of 20 to $30,000 a year and that will often send them right into a panic attack.   Nick: Understanding how these things tie together, understanding that with the advent and the prevalence of things like exchange traded funds and mutual funds where we can do fractional shares and we can break accounts into a short-term, mid-term, long-term bucket to help us try to preserve some principle over time via growth, but also have a safe withdrawal rate and strategy is really important. It's hands down the most misunderstood, but important thing when it comes to retirement planning.   John: Yeah. I think what we've seen a lot of advisors and client, or a lot of advisors individuals focus on just accumulation, so it's really just kind of building, building it up and they never, as Nick mentioned here, there's never a strategy for as far as how do you actually start taking that money out?   John: It all comes back to you don't want to start planning for that once you retire, that really needs to be as soon as you can, but in reality when you hit that red zone of 5 to 10 years from retirement, I would say more towards 10, you should really start considering, "Hey, what is my distribution strategy?"   Speaker 1: Got you. Okay. Yeah, and I think a lot of times we do kind of get wrapped up in the accumulation thing and we tend to forget about these other stages and it leads me really into the second topic guys on this, which is it's funny, maybe not funny, but it is interesting how the fear of spending is really real.   Speaker 1: At first, when I first started, I've been doing this now for a number of years, talking with advisors all across the country and you think, hey, you get to retirement. You're looking forward to finally spending your and having a good time and so on and so forth and enjoying your golden years. But many, many, many people are truly afraid of actually spending what they've saved.   Speaker 1: I think a lot of it probably comes down to just confidence, but it's a real thing getting over that hump and getting comfortable saying, "Okay, it's okay to spend this money we've saved for the last 40 years now." What do you guys see?   John: Yeah, no, we see the same thing. It really is, again, back to the accumulation phase or savings phase in this scenario. They're just so used to getting a paycheck, saving it, and then they live off of their paycheck. Well, now your nest egg is now retirement that providing that paycheck for you, and the biggest fear for retirees is not running out of money. With that comes, can I spend this much? What will my assets, or what does my plan look like if I continue this spending or if I go buy this?   John: It's important, and we've had scenarios where the plan really does give clients confidence of when they look at it and say, "Okay, if I continue my current spending rate, I have X amount at the end of the plan." The cool thing about some of the stuff that we do when we get to see our clients see it is we'll show, "Hey, what if you spend an extra 10 to 15 grand over the next 10 years for a vacation?" And we'll model it out and they get to see how does that affect their overall plan, and is there still money left at the end? Is there enough money left where you feel comfortable?   John: We find that when people see that and there's two versions of it. One's a very detailed kind of actuarial cashflow number, which is kind of boring to look at. But then we also have a chart form, which just makes it easy to understand and it's, "Okay. You know what? I can go spend that money," and it just provides a nice peace of mind.   John: We've had scenarios where people see that and then they go do some of their goal, whether it's buy an RV, do this vacation, spend time with family. It's the fear is definitely real, and it's important to have a plan to give you some peace of mind, to see if you... That you're not going to outlive your money.   Speaker 1: Yeah, and I think definitely it's that confidence factor, right? Because oftentimes people that are in good shape, they just don't really feel comfortable that they can go through that transition period. I think that's a lot of the value that you guys bring to the table by saying, "Okay, now we've built a plan. I've showed you this is going to work, and then you're there as that kind of coaching sounding board to say, "No, it's okay. We can get over this hump together. You're going to be able to enjoy this because that's what you've built up and worked towards."   Speaker 1: Now we know obviously we're living longer and there's more things to be... There's more risky stuff out there, and not even talking about the crazy kooky world we find ourselves in right now, but just risks in general. If we're talking about the de cumulation phase, which is when we're into retirement, the risks in general become more numerous, especially financially speaking.   Nick: Yeah, so one of the things that can impact a retirement plan or this phase of somebody's life, this decumulation phase, is what's called the sequence of returns. Essentially, what that means is that on a typical case, people think in terms of average rates of return, and that's understandable because that's how most people are taught.   Nick: But there can be an average over a 10 year period, a 15 year period of, you can call it 6, 7, 8%. But if the... Even though it averages that number, if the losses are incurred early on and they're significant, that has a much greater impact on how long the money will last than if those losses come further on down the road.   Nick: That's why it's important to really have a strategy, to understand that the plan should be consistently updated. And what ends up happening, especially in one of the things that we're starting to see a little bit is, the markets have been up for the last 6, 7, 8, 9 years, so there's a little bit of, I don't know if you euphoria is the right term, but a little bit of a sense of invincibility for some people. Where it's like, "Hey, I keep taking money out and it keeps going up and that's great," and that is good, but it doesn't always happen like that.   Nick: When we have these risks of AC goes out, child loses their job and you help them financially, you get grandkids, there's a change of social security, you have a health issue, all these different things. We're trying to prepare for all uncertainties, and so making sure that your investment strategy is really lining up with your overall plan is important even in good times, which is what we've had for quite a while.   Speaker 1: Yeah, no, I definitely would agree with that statement for sure. You know, and John, listen, hey, they've passed another trillion dollars just a few weeks ago at the time we're taping this podcast, now they're talking about another $3 trillion. So focusing on tax consequences has probably never been more important than what it's going to be over the next couple of years. Whether they sunset, they do nothing and leave them alone, and they sunset back to the old means here in a couple of years, or they make some changes, you got to have some focus on taxes.   John: Yeah. Taxes are definitely an eroding factor on your money, especially going into retirement. Because that for the majority of people, that's their... The IRA pre-tax money is typically their biggest part of their nest egg and they're pulling it out. Every time you pull out a hundred grand, you're getting whacked with taxes on that. It's important, again kind of that red zone area, even before that you want to start planning for what you think your tax situation is going to be. But also you want to start planning to have the flexibility to adapt to any type of tax environment so you can basically limit how much taxes you're actually paying.   John: So example, Nick mentioned some risks where let's say you have a health event, you need to pull out 30, 40 grand. It might be nice to have some tax free money, AKA kind of some Roth money that you can pull from so you don't really jump into a higher tax bracket and just start paying enormous amount of taxes that you could ultimately have avoided.   Speaker 1: Yeah. I mean, again, it's not what you make, it's what you keep. It's all those kinds of things we know, we hear about it, but if you're not talking about taxes as you're preparing for retirement, I mean, I'll go out on a limb and just say you're doing it wrong. Right? You've got to make sure that you're factoring that in there and having those conversations, and if you're not, well, then that needs to be a red flag as well.   Speaker 1: So that at the end of the day, we've got these five things I mentioned. Here's the fifth one, guys, just leveraging the lifetime income. We got to replace a paycheck, whether it's for 1 year, 5 years, 15 years, 25 years, 40 years. It'd be easy if we knew exactly how long we're going to live, but we don't, so you've got to have that thing ready and you've got to leverage that income for life.   Nick: Yeah. It's one of the things that we try to emphasize with people and one of the keys to planning is that everybody's situation is different. When you talk to your brother, your sister, your friend, your neighbor, whatever, and when I was just up north, I'm reminded about, I was reminded about how much people love to talk about just everything. Being down in Florida, people tend to be a little bit more private from what I've seen. People are, "Oh yeah, I did this, I did that. I did this."   Nick: One of the things that I try to emphasize to people on a consistent basis is that sure, your sister may be doing X, Y, and Z, but maybe your sister has a pension. Maybe your sister's mortgage is paid off. Maybe your sister didn't have kids, and so her situation and all of the decisions that line up with that are very different from yours. Because you don't have a pension, your house isn't paid off, you did have children that cost you more money, and let alone the risk tolerance from the standpoint of the market, that's a whole different ball game.   Nick: When we evaluate things, one of the things that when we go through a plan, one of the things that we typically go through with people is just looking at options from the standpoint of a guaranteed income. In reality, the only way to get guaranteed income is through annuities, and a lot of people have a certain perception of annuities or they don't like them. We always try to remind people that, hey, our job is to make sure you understand what options are out there and available for you. Make sure how you know that they work or would work for you in your situation. Then if it's something that you don't like, then we just don't do it, and we move on.   Nick: But when we factor in social security, whether or not somebody has a pension and/or whether or not they want to have some form of guaranteed income in the future, it can really make a significant difference. Not only from just a pure planning standpoint, but also from a peace of mind standpoint.   Nick: One of the things that is probably underestimated are how people emotionally respond to different things that happen in the market, and how that can impact their decision-making. No matter how many times somebody, says, "Hey, I know I need to invest longterm. I know I need not to be reactionary," when it hits the fan, it's really hard not to be.   John: Nick, I'm going to stop you for a second. A perfect example of that was actually when Coronavirus hit. I think we had a true indication of how much risk some people were willing to take.   Nick: A hundred percent, and so this is that whole... I referred to it a little bit earlier, this level of euphoria over the last year is that, "Hey, everything's going well." Or we've had conversations with clients where maybe they've used some sort of annuity or some sort of guaranteed income product. It's like, "Well, hey, if I would've kept it in the market, it would have done this, this and that." It's like, "Yes, but what we did was we separated that money and we gave it a certain job, and as long as that does its job, then we have a lot less pressure on everything else, including your brain and your emotions, and that cannot be underestimated."   Speaker 1: Yeah, absolutely. Well, those are five things, folks, that happen or can happen during the decumulation phase, which again is a fancy word for the spending of the assets that you've accumulated through the years to get to retirement. Hopefully, that helped you a little bit, gave you a couple of useful things to think about.   Speaker 1: As always, if you've got some questions, we talk in generalities here on the podcast, make sure you're checking with your advisor or reach out to qualified professionals like John and Nick before you take any action. You can find them online at PFGprivatewealth.com, that's PFGprivatewealth.com.   Speaker 1: Don't forget to subscribe to the podcast while you're there on Apple, Google, Spotify, whatever platform you like to use. We put these out quite often here, so you've got definitely a lot of content. You can go back and listen to some past episodes and, of course, get notified when new episodes come out as well.   Speaker 1: So guys, thanks for hanging out with me. I appreciate it. Glad to have you back in and chatting with me and I'll see you guys in a couple of weeks. We'll be getting ready for football season.   Nick: Yes, sir.   John: Right.   Speaker 1: We'll catch you next time here on Retirement Planning - Redefined with John and Nick from PFG Private Wealth.

Retirement Planning - Redefined
Ep 33: Fact Or Fiction

Retirement Planning - Redefined

Play Episode Listen Later Apr 22, 2021 16:31


Sometimes the easiest way to learn about something is make it really simple. Like some of the first true/false tests you might have taken in school, let’s play a round of fact or fiction to test your financial planning acuity. Helpful Information: PFG Website: https://www.pfgprivatewealth.com/ Contact: 813-286-7776 Email: info@pfgprivatewealth.com Disclaimer: PFG Private Wealth Management, LLC is a registered investment adviser. All statements and opinions expressed are based upon information considered reliable although it should not be relied upon as such. Any statements or opinions are subject to change without notice. Information presented is for educational purposes only and does not intend to make an offer or solicitation for the sale or purchase of any specific securities, investments, or investment strategies. Investment involve risk and, unless otherwise stated, are not guaranteed. Information expressed does not take into account your specific situation or objectives and is not intended as recommendations appropriate for any individual. Listeners are encouraged to seek advice from a qualified tax, legal, or investment adviser to determine whether any information presented may be suitable for their specific situation. Past performance is not indicative of future performance. Transcript of Today's Show: For a full transcript of today's show, visit the blog related to this episode at https://www.pfgprivatewealth.com/podcast/ ----more---- Marc: Hey everybody. Welcome into this edition of the podcast. Thanks for hanging out with us here on retirement planning, redefined with John and Nick, financial advisors at PFG Private Wealth. Find them online at pfgprivatewealth.com, that's pfgprivatewealth.com. Fun podcast this week, we're going to have a little fun with some financial fact or fiction and test our financial planning acuity with the guys in just a minute, but let's say, hey and see what's going on. John, how are you my friend? John: I'm doing good. How are you? Marc: Doing pretty good hanging out and doing well hope you guys are doing the same down there. Nick, what's going on with you? Any new action on that attorney you guys were telling us about? Nick: No, we're still plugging away on the golf tournament. We're looking forward to doing that. This the first time that John and I have been involved in putting together a golf tournament. We're not big golfers, it's definitely an interesting process, but we're looking forward to... I think our two charities are going to be locally Pepin Academies and Southeastern Guide Dogs. We're looking forward to raising some money for charity. And then, we also actually recently sponsored a run through the Herald Center, which is a part of the USF Tampa campus and through the college of public health, that's done to support in studies, family violence, which is a huge issue really in any community. They have a run coming up and we're sponsoring that. Anybody that's involved locally with that, we'll see the name of the podcast and those sorts of things. We always stay involved in the community, enjoy doing those things. Marc: That's great. John: But we are definitely not running. Marc: You're not running. Are you going to golf? John: We're probably not golfing either. Nick: [crosstalk 00:01:47]. Marc: I imagine planning a tourney, a golf tournament, is a bit more challenging than you might expect. You first dive into it. You think, oh, this is... And then you're like, wow, this is a lot more work than I thought. John: There are a lot of moving parts, but we have a really strong team. We have some members that have planned golf tournaments before and they're heading up the logistics. Nick and I are very organized and detail oriented, we're making sure all the tasks are checked off and everyone's doing their work, but we're really excited about that one. Marc: Dotting the I's and crossing the T's. Nick: The local steakhouse that we're teaming up with is really well known. Having them involved, this is the first time that we had paired up with them. It's a pretty cool experience as well. Marc: Very cool. Well, I'll keep asking about it and we'll keep updating things as we get closer, but for now let's play a little financial fact or fiction. I know it's a little tougher sometimes in your guys' industry, because often I've heard that saying that the answer to most financial questions are, it depends, but we'll try to do as best we can here. Like when we were in school, we do true or false of simple ways to learn things. I've got some basic statements here guys, just have a little fun with it. Fact or fiction, give us the best answer you can, based on the way the question is worded and we'll go from there. Fact or fiction, whoever wants to take this first one, your social security can be taxable. John: I'm going to say fact, although sometimes it's not, but it's based off of your income in retirement. They called it, your modified adjusted gross income in this situation, where basically it's half of your social security, your adjusted gross income, plus any non taxable interest like municipal bonds. They add all that up and depending on where that falls will determine how much of your social security is taxable. Example if you're making married filing jointly over 44 000 of that [inaudible 00:03:46] income, up to 85% of your social security is going to be taxable. That's the maximum amount of your social security that's going to be taxable is up to 85%. Marc: Okay. It can be taxable. It doesn't mean it always will be, but it can be. John: Correct. I'll say more often than not, it is going to be taxable because the limits where it's not taxable, it's married filing jointly between zero and 32 000, 0% is taxable at that point. But you'll find the majority of people, they're above that when you're talking two incomes. Marc: Got you. Okay. All right. We'll go with fact on that one, it can be taxable. Quick and easy fact or fiction. Nick, how about you, you want to take this one? Your taxes will likely be lower in retirement. Nick: There is a decent chance that may be the case, the tricky part about that, and we usually have a better idea of that within the last couple of years of retirement, when we can measure your expenses and measure what is being deployed into savings and those sorts of things. I would say that a solid percentage of people do have lower taxes, at least initially in retirement. But one of the things that we've started to see is, especially those that have done a good job of maybe managing expenses, because the market has taken such a big jump over the last, five to 10 years, there's a lot of people that have found themselves with a lot more money in retirement accounts than they expected. And they're creeping into their RMD age, which is now 72, they're going to have income that's going to be coming in via their required minimum distribution that may be much higher than their spending that could really flatten out that difference. going back to what we've said in previous podcasts, there is a decent chance that your taxes will be lower in retirement. However, it's important for us to plan for scenarios that they aren't and give you options in retirement. Marc: Yeah. And to be fair with continuing taxes possibly going to be on the rise with all the spending we're doing, it's one of those statements where again, it's in the wording, likely to be lower. Okay. But there's a good chance of anything happening in that arena. You always want to make sure you're checking them as relates to your specific scenario and plan efficiently. Try to plan to be as efficient as possible so that you can be tax efficient, hopefully in the future, just in case they do go up, because they do raise up the tax brackets. All right. How about fact or fiction guys? Term life insurance is better than whole life insurance. John: I'm going to have to say it's a, it depends on this one. I can't go fact or fiction on this one because it depends on your situation. Term-life is great for covering an immediate need. Example, having two kids, I've enough life insurance, death benefit to cover my income for the next 20 years, if something were to happen to me. Whole life is nice to have basically a permanent policy. Going into retirement, I have something that's going to last, in essence, depending on the policy and disclosures, whatever and disclaimers it's going to last forever. This one is, it can't be fact or fiction, it really depends on the person's situation. Nick: One of the things I would just throw in there on this is that, life insurance can be a topic that people feel strongly about. Typically though, it breaks down to a cashflow issue where if you have the cashflow to be able to have the right type of permanent whole life insurance, oftentimes it can be a better plan and strategy than otherwise, but it's definitely an in-depth and a topic that's important to go through in detail. Marc: Well, we're having a little fun with these, but like any financial vehicle or product there's pros and cons to everything and what's going to be right for your scenario may be different for someone else. It's all about that complete holistic strategy, if you will. And that's why working with an advisor is a good idea to do so when it comes to your scenario. And of course, if you've got questions or you need some help or whatever the case might be as always check out John and Nick, and have a conversation with them if you need some help, or if you have something that sparks your interest a little bit, go to pfgprivatewealth.com, that's pfgprivatewealth.com, and you can drop them a line there while you're on the website. Lot of good tools, tips, and resources. Here's another one guys. Medicare will cover most of your medical needs in retirement, fact or fiction? John: I'll say fact that the right type of Medicare policy will cover most of your medical needs in retirement. Again, disclosure, everyone's situation is different and Medicare only covers certain things. But I'll say from your basic health needs, going to the doctor, prescriptions, if you have the right type of Medicare policy, it will cover quite a bit of that. As far as any disabilities, that's where Medicare does not really kick in for that. A lot of people get confused. Marc: Hospital stays, basic doctor visits, things like that. But it doesn't do dental. I can be interesting. My mom had, with her Medicare, she had some cataract stuff done and it covered portions of it. There's definitely some outliers there, which is why they've got the 47 million supplement programs that go in there. A lot of stuff to talk about for sure and it doesn't do anything with long-term care. John: Correct. It's important just to understand what it covers. Both Nick and I, we know a good amount about it, but we've both gone to some seminars and presentations and make sure we're up to date on the latest. But we typically, when it comes to that point in the planning, we refer this out to a couple of people that specialize in it because there's so many different policies of so many different nuances. And again, it's all about finding the right professional and what fits your needs. Fact, some of the time, fiction some of the time as well. Marc: Yeah, exactly. Well, I guess with these, it's really just a fun way to do it, but ideally when it comes to financial stuff, there's always a depends caveat, if you will. One more here, we'll have this last one, then we'll take an email question to wrap up this week. As you get older, you should gradually shift from stocks to bonds. That's been a thinking for a very long time fact or fiction, or maybe has that changed? Nick: I would say that it obviously depends upon where you're starting from. If you've been a typical investor that has been comfortable with market risk throughout your life and you are starting from a place of maybe having a 70/30 stock to bond or a 60/40 stock bond portfolio that shifting to decrease your risk does make some sense. We've seen plenty of people that haven't really taken enough risk from the perspective of market risk. Not taking enough market risk, can create things like longevity risk and your money lasting for you, those sorts of things. If you're going to make shifts, it's important to be shifting in the right way. Making sure that you're looking at stocks that are on the lower risk side of things is important. But I would say in general, the key is to tie your investments to your overall financial plan. But in general, it will make some sense for many people to reduce some of their stock holding risk as things go forward. With the caveat that when you're getting your access to the fixed side of things, the bond world, you need to do it much more carefully than maybe you had to 10 or 15 years ago. It's a much more convoluted space than it was. And so that's something where there are many people that under-appreciate the risk that you can have in the bond space. Marc: All right. Well, that's going to do it for fact or fiction, and we're going to wrap up this podcast with an email question again, if you'd like to submit your own, stop by the website at pfgprivatewealth.com, that's pfgprivatewealth.com. Greg's got a question for you. Greg says, "Guys, I'm being offered an early retirement package from the company I worked at. It also includes a severance package and pension buyout. It seems wise to consider this anything to think?" Anything that he should be thinking about, questions to maybe ask? Nick: Yeah. Good question, Greg. Nick and I are seeing quite a bit of this coming up where clients are near retirement, few years away, and all of a sudden it's, hey, I got the severance package and this pension buyout, what should I do? And the first thing we do is really to say, "Hey, let's run the numbers and the plan and see if you can retire with that severance package and what the pension buyout is." And we'll evaluate it and give our recommendations based on, again, the plan. I'll say it's definitely worth comparing your options in that situation. One thing you want to consider is the financial health of the pension itself. Is it fully funded or is it underfunded? Because we have seen some pensions that aren't fully funded and there's some financial risks of that pension. In that scenario, I would say you might want to go ahead and take the money. Nick: And then, reverting back to the plan, what are their current income needs versus liquidity? Just to give you an example of a plan we're doing, client had a couple of pensions and didn't really have much liquidity. When a situation like this came up, we evaluated it based on the income that it was spinning off and what a lump sum could do. But, we looked at it and said, "Hey, this, this could be a nice option to give you some of the liquidity, which you currently don't have", because he had two pensions and social security, but didn't have a lot of liquid assets he could draw on if needed. Another thing to consider is beneficiaries. We've seen a lot of clients where they say, "Something happens to me with this pension, basically the money goes away. I don't feel comfortable with that. I'd prefer the lump sum buyout. At least if something happens to me within the next 10 years or 15 years, someone's going to get something versus in the pension option that I'm given, they're not going to get anything." And again, there's different pension options and we review it all. And then, we've seen some scenarios where the pension guaranteed income was so excellent, we didn't even consider a lump sum withdrawal or any other type of contracts that provide guaranteed income because it was so strong. Marc: Some good questions to ponder there, Greg. Thanks for submitting that in. There's obviously a lot of information that you didn't share with us. If you'd like to have a more in-depth conversation about exactly what they're offering, you definitely reach out to John and Nick. You can call them at 813-286-7776, but that gives you four or five things there to think about. Again, 813-286-7776. You can give them a call and have a conversation with them. Of course, with the podcast, subscribe to the show folks, if you have done so already. That way you can catch up new episodes when they come out, you can also check out past episodes and all that good jazz. You can find it all at pfgprivatewealth.com. It's really the easiest way to get in touch with the guys, If you'd like. Marc: You can drop an email question, you can book some time with them. You can subscribe to the podcast, just a lot of good tools, tips, and resources there at pfgprivatewealth.com. That's pfgprivatewealth.com and that's going to do it for us this week on the podcast. John, Nick, guys thanks for hanging out with me and good luck with the upcoming events. Nick: All right, thanks Marc. John: Thanks, have a good one. Marc: We appreciate it. We'll see you next time here on retirement planning, redefined with the guys from PFG Private Wealth, serving you here in the Tampa Bay area. We'll talk to you next time on the podcast folks.

The SportsEthos New Orleans Pelicans Podcast
Undermanned Pelicans nick one from the Rockets

The SportsEthos New Orleans Pelicans Podcast

Play Episode Listen Later Apr 5, 2021 22:11


The "other guys" stepped up for the Pelicans to defeat the Houston Rockets 122-115. Lyle recaps the victory Advertising Inquiries: https://redcircle.com/brandsPrivacy & Opt-Out: https://redcircle.com/privacy

The Marketing Secrets Show
A Private Workshop With Nick Santonastasso And My Kids

The Marketing Secrets Show

Play Episode Listen Later Dec 16, 2020 33:07


We were lucky enough to have Nick Santonastasso come to my house and wrestle with me, and give my kids a private workshop. Listen in behind the scenes and hopefully it will change your life like it did ours. Hit me up on IG! @russellbrunson Text Me! 208-231-3797 Join my newsletter at marketingsecrets.com ---Transcript--- What's up everybody. This is Russell Brunson. Welcome back to the Marketing Secrets Podcast. And Oh boy, do I have a treat for you guys today. So the guest for the podcast is my new friend and wrestling partner, Nick Santonastasso. And he's someone who I had a chance to... I've seen him online a whole bunch of times and a whole bunch of different places. And then he reached out to me out of the blue and said, "Hey, Russell, come out and interview for my podcast." And I knew that he wrestled, and I was like, "Dude. Yes." And I was excited. I'm like, "Yeah, I love your message. Love who you are. I love what you stand for." And he's like, "If you want I'll actually fly out to Boise." And at the time I was just sitting in my wrestling room, I knew he's a wrestler. And I was like, "Dude, how about this? You come out and then you can interview me for your podcast. And then I'll actually wrestle you in my wrestling room?" And he was like, "Yeah, that'd be amazing." And so we planned this whole thing out. And the week before Thanksgiving, he flew out here to Boise and I did an interview for his podcast. And then we came back to my wrestling room and wrestled. And obviously, my entire family wanted to meet him and to see him. If you haven't met Nick before, he has no legs and he only has one arm, and his story is amazing. And the fact that he was a wrestler is even cooler. And so me and him wrestled. And after we got into wrestling, we had so much fun, then everyone, my kids and my wife and my parents were there and everybody had a million questions for him. So I said, "How about this? Let's do a little mini seminar with my kids to be willing to." And he's like, "Sure." And so we pulled up the mats and the crash pads and the box jumps, and we had everybody sit on them, and then Nick had a chance to tell us some of the story and talk to the kids at a really cool level. And it was really fun. One of my kids was really nervous asking questions. He thought I was going to get mad at him. Anyway, it's fun. You have a chance to hear from kids, you ask him questions and hear Nick's story. And I hope that you love it. It was one of the highlights of my year, super special opportunity for me and for my family to have a chance to meet someone like Nick and to hear his story. And it's just a huge blessing that I think he gave me to be able to have him talk to my kids. And so I wanted to share this with you guys, because a lot of you guys have kids, a lot of you guys are kids and a lot of you guys have different situations. And I hope that some of the things that Nick shared with me and my family, it'll mean a lot to you as well. So with that said, we're going to cue the theme song. And we come back, you have a chance to sit in, into a private discussion with my kids and Nick as they talk about life, motivation about doing your best, a whole bunch of other cool things. So with that said, we'll cue the theme song. We'll be right back. Hey everyone, this is Russell Brunson. I'm here in our wrestling room right now with a bunch of my kids and cousins and friends, because we've got a special guest in town, in Boise today who I just got done wrestling, which was so much fun. And this is Nick. We had a great time. And thanks for coming and hanging out with us here in Boise and talking to all the kids. Nick Santonastasso: You got it. Russell: So kind of the game plan we want to do is I wanted my kids to get to know him and hear some of his stories and stuff for so many reasons. And so I'd love to begin with, if you want to tell them little about your story, about your life, growing up wrestling, and just some of the background. And then I got some cool questions about other stuff I want to talk about too. Nick: Yeah. Great. It's pretty open-ended when he said share your story. I got a long story. And so I'll give you a little context of why I was born like this. And yes, I was born like this. I didn't wrestle no sharks or anything. I see we got some laughs. I'm 24 years old. In 1996, my mom went in for a late ultrasound, and a ultrasound is where they see the baby inside the stomach. And they sat my parents down and said, "Something's really wrong." And they said, "From the looks of it, it doesn't look like your baby's limbs are being developed. It looks like he's missing his legs, his arm, and his face might be messed up." Clearly, my face isn't messed up. Right? And so what they did was they classified me with what they call Hanhart syndrome. And Hanhart syndrome is a super rare genetic disorder that either leaves the babies with undeveloped limbs or undeveloped organs. And so that means the babies are either born with a heart that can't beat on its own or their stomach can't process food on its own, and they later on pass away. And so they told my parents that their baby boy has about a 30% chance to live. And so I was born and the test of my organs came back 100% healthy, and the only thing that was affected were my limbs. And so I was born in this unicorn body of no legs and one arm. And all my organs are 100% healthy. Always the lesson behind that is the doctor said it had about a 30% chance to live. And my parents made a massive promise. And that promise was that they were going to focus on the 30% chance of me living rather than the what? Dallin: You dying. Nick: Exactly. You dying. Exactly. The aggressive way to say it. And so the 70% of me dying. Exactly. And so in life, that's the... Ooh, careful. I know you beat me up earlier, but stay on here. And so the little lesson is, would you agree that in your life, there's always something bad that you can focus on? Would you agree? And would you agree that there's always something good that you can focus on? And so the majority of humans, and you can agree, the majority of adults always focus on the negative stuff. And so if we can train our brain to always focus on the good things, then we always win. And so that was how I was born. And then getting into wrestling, when I got into middle school and high school, which some of you, when you get into middle school and high school, at that time, a big portion of life was boyfriends and girlfriends. Awkward phase, getting into middle school and high school. I see people getting awkward. It's awkward. And so I felt like I stood out. Well, I clearly stood out because I have no legs, one arm. And there was a specific moment where I was on the bus and there was a girl to the left of me and she was making fun of everyone on the bus. And I'm like, "Oh my God, she's going to have a field day with me." And she looked over to me and she said, "Nick, I don't even have to start with you. You're already too messed up anyway. Look at you." And I'm only a 14, 15 year old kid. And the first question that pops in my head is, why me? Have you ever asked yourself, like, "Why is this happening to me?" And so I asked myself, "Why is this happening to me?" And from that moment of one girl making fun of me, I thought things like, "Oh, I'm disgusting. I'll never have a girlfriend. I'll never go to a school dance. I'll never be able to walk my girlfriend to her locker because I can't walk. And she want to hold my finger. Is that weird?" I just started thinking about all these negative things. And so for the majority of my life, I felt my body, my no legs and one arm was the most disgusting thing, the biggest curse that life could give me. And then I was able to reframe it. And what reframing is, is say you have a bad event happen in your life. And I had the same thing happen to me. You could see all the good and I could see all the bad, it's what we focus on, yes? And so I realized a couple of years later that if a girl doesn't want to be my girlfriend, or if someone doesn't want to do business with me because of my no legs, one arm, well, wait, maybe this disability or whatever you want to call it is actually working for me and it's filtering out the type of human and womens that I don't want in my life anyway. And so when you show up authentic, when you show up transparent and you show up yourself, would you agree that the universe makes it very easy to see who's your friend and who's not your friend? I mean, have you ever had a situation in school where you thought someone was your friend and they no longer was? Has that ever happened? And that means that we don't want those people in our life. And then you also have people in your life that love on you. Anyone have good friends here? I hope. Raise your hands. That's because you show up yourself. And so I have a quote on my arm. It says, "You laugh at me because I'm different. I laugh at you because you're all the same." And that's not me making fun of people with legs and arms, but what I'm saying is the best thing you could be, the most authentic thing you could be as who? Who do you think? Were you listening? You. You. You show up, Norah, and you're the greatest Norah that the world has ever seen, because you are you. And so we're going to grow up and people are going to like us and people are not going to like us. Who agrees with that? But as long as you show up yourself, the universe makes it really easy to find out who loves you for you and who doesn't love you for you. Russell: That's awesome. Nick: Facilitator, where else would you like to go? Russell: So now we're in high school, struggling with high school stuff. And you told me your older brother's a wrestler, and you wanted to do that. I'd love to hear the story about wrestling, why you got involved in that. Nick: Yeah. So my older brother was a wrestler. He's a really good wrestler and I thought wrestlers were the coolest thing on earth. And so when I got into high school, I was looking for a way to build more confidence in myself, because I didn't have much confidence. And so I wanted to do something that was going to make me feel really good about myself. And so I wanted to become an athlete after my whole life people said, "Nick, you can't be an athlete. You can't do sports. You have no legs, one arm." And so, one day I came into school, my friend said, "Nick, you should try wrestling." And I said, "I can't my arm." And this, we call it the potato. It looks like a potato now. But it used to look like a chicken wing. You believe it? Do you believe it? And the reason why it looked like a chicken wing is because this arm was five inches longer than it is now. And my bone was going faster than my skin. So it was super sensitive. And the bottom line is if I would have hit my arm hard enough, my bone would've came through my skin. Yeah, crazy. Right. And so I couldn't do any physical activities with it. And so one day I came home and I said, "Mom and dad, I want to become a wrestler." And they said, "You can't, your arm." And then I looked at my parents and I said, "Can we cut my arm off?" And they said, "What?" And I said, "Yeah, I'm not joking. Can we cut my arm off? Can we do something about it?" And they said, "Is this something that you really want to do?" And I said, "It's going to make me an athlete. I'll be able to wrestle. I'll have more confidence in myself." And so my sophomore year of high school, my parents scheduled the appointment for the doctors to amputate my arm. And so I have these scars here, but what they did was, I didn't know they could do this, but they lasered five inches of my bone off. And then they pulled extra skin. Now you're taller than me. Then they pulled extra skin from my shoulder over my bone so I could beat people up with it. I remember right before I went into surgery, I said, "Doc, if I can't beat someone over the head with my arm when I come back, we're going to have a problem. I need to be able to do some physical activities with this thing." And so I went throughout the surgery and I go back to school. I had 17 stitches in my arm and I was the happiest kid that just cut his arm off. I go back to school, smiling. And people are like, "Nick, what'd you do?" I'm like, "I cut my arm off. It's great." And they said, "Why?" And I said, "I'm going to become a wrestler." And people made fun of me. They said, "Nick, how are you going to become a wrestler? You have no legs and one arm." And so I went out and I became a wrestler. My junior year, I got my butt kicked. And then my senior year, I was able to come out as the 106 pound varsity wrestler from my high school. And would you agree that that would probably instilled confidence in me and I'd probably feel a little bit better about myself, I'm an athlete, maybe the girls would like me? That's my thought process as a 16, 17 year old kid. And then the app, Vine came out. Y'all know what Vine is? You remember Vine? You remember Vine? Vine was an app that you could post six second videos. Raise your hand if you know what Vine is. Adults, raise your hand if you know what Vine is. All right, I'm going to educate you. So Vine was an app in 2014. I was a senior in high school where you can post six second videos. You had to be as creative as you can in six seconds. And so I wanted to create a way where I could make people laugh, but inspire them at the same time. And I wanted to do something that has never been done before. And so I was with my friends like this, and we're thinking of an idea. And I said, "I got an idea." I said, "How many legless guys do you see crawling around Walmart, pretending to be a zombie?" Bowen: Propped up just like that and siting in a elevator or something? Nick: That was me. And so I said, "That's a great idea." And so I'm a senior in high school and I put fake blood on my face and I put fake blood on my clothes, and I set out to my local Walmart in New Jersey, which Nick's not allowed in that Walmart anymore. And I go down the aisles and I'm looking for my victim, and I see this guy, he's heavily invested in the paper towels. And I looked at my camera guy, I go, "Record this. I'm going to try to scare him." And so I came around the corner as fast as I could like this. And he goes, "Oh," he threw the paper towels at my face. And I looked at my camera guy. I go, "Was that six seconds?" He goes, "Yes." I'm like, "Yes, this is just what the internet needs." And so I apologized to the guy. I told him I wasn't a zombie and that I'm really alive. And, "Thanks for letting me prank you." And I told my friends, "Pick me up and carry me out of Walmart before we get kicked out." And so I posted the video and I wanted 500 kids to see the video. I wanted to get 500 views. I posted the video and I went to sleep. And when I woke up for school, the next morning, the video had over 80,000 likes and over 80,000 reposts. I go back to school, my friends were like, "Dude, you're the zombie king." And I'm like, "What did I get myself into?" And so in under a year, my senior year I gained a million followers on Vine and the owners of The Walking Dead, the TV show hired me to fly out to Tokyo, Japan, to scare the main actor of The Walking Dead as a zombie. And so, the lesson in this, don't try to crawl around Walmart. It probably won't work for you, but would you agree that we all have unique gifts, unique ways, unique ways to make people laugh, inspire them? For me it was crawling around Walmart at the time, but we all have unique gifts. As you said, God gives us unique gifts and we have to use those. And so I use my unique body to scare people and make them laugh at the same time, which led me into going out on the internet and gaining a bunch of followers. And then I realized at one point that when I have kids and grandkids, that I want them to know me for much more than crawling around a Walmart. So I did what every kid with no legs and one arm kid would do, is I tried out for bodybuilding, said, no one ever. A lot of the times in bodybuilding, they say you have to focus on your legs, but most bodybuilders skip leg day anyway. And so I fit right in. Where do you want to go from here? But that's my zombie prank story. And so some of you may have seen my zombie pranks. You've seen them? Ryker: I've seen the one where you crawl in Walmart. Nick: Yeah. So that was high school Nick. I've evolved. I've come a long way from scaring people in Walmart. Russell: That's cool. So you got into bodybuilding and then I just wonder, because one of things I think a lot of us people don't do is we dabble in things. Like, "Oh, we'll try this. I'm going to try this and try this." But when you decided, "I'm going to be a bodybuilder," it wasn't just dabbling, right? You shifted your environment, shifted everything. You want to talk about the process there and what you did to be successful? Nick: Yeah. What humans have, we all have it is shiny objects into syndrome, kind of like Norah. You like shiny objects, right? Stars and bells and whistles and all humans like that. And so we try to do one thing and we're like, "Oh, maybe I want to try this over here." And so when I wanted to become a bodybuilder, I was living in New Jersey and it's very cold in New Jersey most of the time. And so I moved to Florida because it's... Have you ever been to Florida, anyone? We got to get you to Florida. I know Boise is great, but I mean, Florida is great too. And so I moved to Florida and I wanted to become a bodybuilder. And the first thing I did was found a really big muscle dude. And I said, "Will you teach me how to body build? You look like you know what you're doing." And that's what we do in business, is if we want to do something, we find out someone who's successful and we model them. And the reason being is because we don't have to reinvent the wheel, we don't have to recreate something. We just find someone who's successful and we learn from them. And so I attempted to become a bodybuilder. And when I moved to Florida, I told everyone, over a million people that followed me that before 2017 was over, I was going to step or hop on the competitive bodybuilding stage before the year was over. And so I did a 12 week preparation and I dedicated 12 weeks of my life to training and health and fitness. And I was 10 weeks into my prep, and I went to Vegas for an expo. And one of the days I went to the gym. Do you guys know The Rock? Everyone: Yeah. Nick: So The Rock was in the gym when I was at the gym and I've been blowing him up with bodybuilding videos for years. And so he already knew who I was. And so I go in the gym and low behold, there's Dwayne, The Rock Johnson. And he's surrounded by four security guards. And he's working out. I'm like, "Oh my God, it's The Rock." And I told my friends, I said, "Let's not bother this man." I stick out like a sore thumb. If he sees me, he's going to know who Nick is. And so after about 45 minutes of lifting, his security guard comes over and taps me on my shoulder and says, "You're Nick, right?" I said, "Not many people look like this. I'm Nick." And he goes, "Can Dwayne meet you?" I was like, "Dude, bring him on. I've been waiting all this time." And so they bring me over into the corner and they bring The Rock over and The Rock gets on my level or tries his best to get on my level. And he goes, "Dude, I'm such a big fan. Can I have a picture with you?" And on the outside, I'm like, "Sure, bro." But on the inside and I'm like, "Oh my God, it's Dwayne The Rock Johnson." Fangirling. And so we took a picture and I blurted out all my goals to him. I said, "I'm going to be the first Calvin Klein model with no legs. I'm going to write a book. I'm going to speak all over the world." And he said, "Nick, you're right, because people like you and I, they put us in any industry and we adapt and overcome." And all of us, would you agree with COVID and during this weird time, we've all adapted? We do school differently. We hang out with friends differently. Would you agree, we all have adapted? And so the more that we exercise the muscle of doing things differently, the more successful we'll be when we're adults. And so after that, I went back to Florida and I competed in bodybuilding against full-bodied guys. And I took third. I beat full body guys in bodybuilding, but I was telling Russell that I competed in the category where they don't judge your legs. That was important, because I don't got legs, I don't want them to judge my legs. And so I competed and I took third and I was the first man with no legs, one arm to jump on a bodybuilding stage. And the quote that I use is, "Over the 24 years of my life, I realized it's not the physical body that holds us back. But the biggest disability you can have," what do you think it is? "Your mindset." Great job. You guys rock. Russell: Awesome. The next thing we'll talk to you about is I know in your company you have a program that goes over a year long, Victorious, right? Nick: Yep. Russell: And each month covers a different letter. So I'd love just today and then probably out of time after that, but talking about the V and what that is in victorious. Victorious, right? Nick: Yeah. Junior Victorious. Russell: Yeah. And just talk about that for these guys because I think that's the first step for a lot of these guys when they're planning goals in sports or school, or any of their things they're trying to become. Nick: Yeah. So Junior Victorious, I created it because people like me and Russell, if we have all the knowledge and we don't give it to kids, then what's the use of it? Because we're not going to be around forever. That's just reality. And so we have to teach young people like you, so you can come, go and take over the world when you grow up. And so Victorious, basically the first month is V which stands for vision. And what vision is, is getting really clear on what you want in life. I think you can agree that the majority of humans don't really know what they want in life. They go to work or they go to school and don't really know why. Their first answer is, "I have to," but there's a deeper reason why you go to school. You probably want to be something, you want to do something with your life. And so V is getting clear. Say, you're an athlete. It's like, how many wins do you want to have? How many hours a day do you want to drill? What grades do you want to get? Does anyone know what they want to be when they're older? Curious. No idea. You got something, in the pink? Dallin: I would say it, but I don't think my dad would like it though. Nick: Got it. Maybe we'll skip over that one. But a vision. Are you okay? So vision basically is just getting very clear on what you want. And the reason why... Do you like cars? Dallin: Yeah. Nick: What kind of cars do you like? What kind of car do you want? You don't know? Dallin: Just one that goes fast. Nick: Yeah, exactly. So if he says, "I want a car and the one that goes fast," he's not going to get it because he doesn't know what car he wants. so the more clear that he can get on what car he wants, who agrees that he'll get the car faster because he knows exactly what he wants? That's a perfect example of all human beings. They want things, but they don't really know what they want. Right? Dallin: Yeah. Nick: And so next time I come back to Boise, I want you to have a specific car that you want so we can go get that car. Is that cool? I'm not buying it. Russ will buy it. But so getting very clear on what you want. And so it's like, who do you want to be? What kind of job do you want to work? What kind of college do you want to go to? What kind of school do you want to be? And the more clear that you can get on things, the faster that you'll get them. That's why, for example, if you wanted a specific car, adults help me out here because kids are a little bit difficult. Have you ever wanted a specific car and you were driving down the road and it was the only car you saw? I don't wear dresses, but women, have you ever wanted a specific dress and you finally got that dress and then you saw a bunch of other women that had the same dress? It's because your brain will go to what you want. That's why people who are depressed or people who are sad, they'll always be sad because they're always focused on the bad in their life. They're not focused on the good. And so our brain is extremely powerful because say you and I were very heavily invested in real estate, and they were whispering a conversation about real estate, we would hear it because our brain would pick up on it because that's where our focus is. That's why the rich get richer and the poor get poorer. The poor always focus on all the bad in their life, and the rich are focused on the opportunities. And so your brain is a computer. What you focus on, you will get more of. And so if you're always focused on, why me, or why is this happening to me? Or why does my life suck? Your brain will always come up with answers of why your life sucks. Who sees that? But if you ask yourself the question of, why am I amazing? Why did I get beat by Norah during the wrestling match? Or why is my life amazing? Your brain will always find the answer. And that's the thing. Our brain is a problem solving computer. And so it always looks for problems to solve. And you know this, if you're sitting around in your house and you don't have a problem, your brain will think of a problem and you'll try to solve it just because that's the way the brain works. And so I'll give you an easy example. If I woke up every single day, a man with no legs, one arm, and I focused on the fact that I'll never become a professional soccer player, will I be happy or sad? Quick. Everyone: Sad. Nick: Sad, right? I'm never become a professional soccer player. That's reality. But if I focus on what are my unique strengths, how can I make people laugh? How can I inspire them? What does my life look like then? It's better, right? That's where my focus is. Like Tony says where focus goes... Russell: Energy flows. Nick: Energy flows. They're a tough crowd. Russell: Okay. Next one. What questions do you guys have for Nick? Ryker? Ryker: How do you drive a car? Nick: That's a great question. So I drive a car, regular wheel. He's probably laughing because he doesn't think I could drive a car. So he just got proved wrong real quick. That's like teenage years, they try to test people. And so I drive a car with a regular wheel. That's why he's getting embarrassed. That's why you drive a car with a regular wheel. And then I have a little lever and I push the lever for brake and I push the level over for gas. And actually I have videos of me drifting my race car around the parking lot. Great question. Russell: There's another question here. Nick: You got one? Dallin: No. Nick: Okay. I'm just making sure. Aiden? Aiden: What's your favorite food? Nick: Great question. You want to guess? Aiden: I don't know. Nick: I like spaghetti. I'm Italian. My parents gave me a lot of spaghetti as a kid. You like spaghetti? What to go eat spaghetti after this? We can ditch this thing, get some spaghetti. That was a great question. Russell: Any other questions you guys have? We're super lucky to have him here. Bradley: I've got a question. How do you battle the fear of when you're trying to start something new or try something? How do you overcome the fear of trying something new? Nick: That's a great question. I'll give you a little story to help paint the picture. So they'd done a study on skydivers. And basically, they hooked the heart monitor up to skydivers. And so when they fly them up in the plane, their heart is going really fast. They're getting super nervous. "Oh my God." And then the moment that they jump out of the plane, their heart goes back to the normal speed. And so how do we eliminate fear? We take action. And so a lot of the times Russell and I are probably scared to do new things. Well, you're not scared to launch new funnels. You're a master at it. But launching new things, we're very scared. But I'd much rather attempt at my dreams and my goals and be on the sideline, hoping, wishing and regretting. Because at the end of the day, we only have one life for all we know. And there's so many people that are sitting on the sideline of life, making fun of people, bashing them. "You can't do this, you can't do that." But I'd much rather be on the mat rather than on the sideline. And also, realizing that failure is just feedback. A lot of the times we get programmed as kids that failure is bad. "I don't want to fail," but actually failure's our greatest lesson, our teaching. And so I failed a lot at life. Everything was hard for me, getting my clothes on, feeding myself, you name it, it was hard. And that's why I've been so successful is because I'm not afraid of failure. And so if we learn early on that failure is amazing and failure is our best friend, we'll have a better life. And so a little quote for you to remember, if you want to remember it, is, "If failure is a foe, you will never grow. If failure is a friend, you'll learn to the end." Super easy. I had to make it super dumb proof for adults as well. Do you want to ask a question? Dallin: Yeah. It's like, I don't know. It's just like talking about dropping out. Russell: Do you want me to ask it for you? Dallin: Yeah. Russell: So Dallin wants to be successful in life, but he focuses on he wants to drop out of high school. All he ever talks about is, "I want to drop out. I want to drop out." That's his vision and his goal, which is interesting, because I think he's got the right mindset. He wants to be successful, but he focuses on that all the time. So the question he wants to ask you is about him dropping out of school. Nick: Now you can ask it. Dallin: Oh. How do I say it? Nick: How do you drop out? Dallin: Yeah. Or, I don't know. Should I do it? Nick: Let me ask you a question. Do you individually pay for your school? Dallin: Nope. Nick: So why not get the knowledge if it's free? Dallin: I didn't think of it like that. Nick: Because when you're an adult, you're going to have to pay for knowledge. So if you're getting it for free why not take an advantage? Dallin: Because it's boring. Not boring, because I'm positive. Nick: Great takeaway. But would you agree if something's free, you might as well leverage it? Dallin: Yeah. Nick: So if you're a teenager and you're stuck in school, why not learn as much as you can because it's free and you're not paying for it? You probably don't take it serious enough because you don't pay for it. So maybe you need a little bit more skin in the game. Dallin: Maybe. I don't know. Nick: So I'd say get the knowledge while it's there. Dallin: All right. Nick: Who's the O.G? He says broke and stupid. Who's that? Zig Ziglar. Is it Zig or Jim Rohn? Russell: I think it's Jim. Nick: One of them. "The worst thing you could be is broke and stupid." And on top of that broke, stupid and ugly. You can't fix ugly. You might as well get the knowledge while it's there. I'm not calling you ugly, but I'm saying is you don't want to be broke or stupid. So get the knowledge while it's there. You're not paying for it. It's free knowledge. You'd be stupid not to take the knowledge. Dude, once you get out of high school, do you want. If you can't make it through high school, you ain't going to make it through business. Good luck. Good luck. High school is easy. Real world's way harder than high school. If you want to quit and tap out in high school, good luck, brother. Dallin: Oh boy. Nick: Let's keep that in there. That's a great lesson. That's a great lesson. That's a great lesson. I'm going to post it on my Instagram. What do you think? Russell: Do you have any questions? No. All right. Anybody else? Nick: That was a good question. It takes a lot to ask a question like that. Want to know why? Because most people wouldn't ask that question. I like it. I like the question. Great. You want to drop out too? Oh, okay. Just making sure. Just making sure. Russell: The good news for all your kids is everybody wants to drop out. It doesn't mean we do. I want to drop out of business lots of times. It gets hard. I got angry, I got people suing me. I got all sorts of stuff and it's tons of times I'm like, "Oh, it's so much easier to drop out." But it's like, well, I have a vision, we talked about it earlier. What's the vision? What are you trying to accomplish in life. You got to through a lot of hard stuff to get the good stuff. If you're not willing to go through the hard stuff, you never get the good stuff. Nick: You want a family one day? Dallin: Maybe. Nick: Okay. Do you want a girlfriend one day? Dallin: Yeah. Nick: Maybe. Or a boyfriend? Dallin: No. Nick: Okay. I don't know, whatever you go. But imagine your kid coming up to you one day and said, "My dad's a dropout." Dallin: I'd be proud. Nick: Dude, I like it. As long as you're proud of your decision and you made something of it, but I'm not your dad. I'm just a coach. Russell: He tells a story you told in lunchtime about your motivations that anchors you back to keep working out hard in the hard times. Nick: Yeah. So a lot of people ask me like, "How do you say so motivated to say so healthy with no legs, one arm?" And the reality is that there's a lot of kids that are paralyzed in wheelchairs. There's a lot of adults that are paralyzed in wheelchairs that look outside every day and say, "I wish I could go outside. Or I wish I could go to the gym," and they can't. But the one little visualization that I was going in with him is whenever I feel myself falling off track, I picture me, I'm 24, so I picture myself like 30, 35 and maybe I have a kid or two and I'm in my office. And that kid walks in and says, "Dad, why'd you get so fat? Dad, why did you let yourself go? Dad, you used to be a great speaker. Why did you give up on your dreams?" It makes me feel some type of way. If I really went into it, I'd probably start crying, because I never want my kid to look at me as a disappointment. And so I may not have kids now, but it's a motivation for me to keep going, because at one point I'm not going to be building a business for myself. Who am I going to be building a business for? My family. So it's way deeper than us as we get old. But you're young, so you've got time. Don't worry about kids calling you fat or anything. But what I'm saying is I visualize my kids looking at me and I want them to look at me proud, not as a fat dad that gave up on his dreams. Who agrees? Or a fat mom that gave up on their dreams. That's a bit aggressive. It works for me. Russell: That's awesome. Very cool. Anything else you've got? Nick: You guys are full of energy. I love it. Russell: I appreciate you, man. Thanks for coming, spending time with us and the kids. Nick: You got it. Norah, thanks for beating me up today. Russell: This is awesome. All right. Let's give Nick a huge round of applause.

Illumination Podcast with Nick and Kisma
EP: 194 - How to Deal with Anger

Illumination Podcast with Nick and Kisma

Play Episode Listen Later May 25, 2020 23:33


In today’s episode we are talking about anger, specifically How to Deal With Anger. 1:07 Important to Discuss This is a really interesting topic and oddly one of my favorite topics to talk about. Nick I'm just gonna launch right into why I think it's an important thing to discuss. There's a lot of anger right now. We're recording this, hopefully towards the end of a pandemic, yet we are seeing the results of the stress and the struggle and misinformation and just all sorts of things. There's a lot of anger and anger is a powerful emotion. I think that anger can really fuel a cause and fuel the action. However, when anger is misused and it's held on to, it becomes detrimental to one's health and it is the opposite of healing energy that will really get us to the other side of this and any challenge quickly. KISMA2:25 It’s a Natural Human Emotion Yeah, I totally agree. It is a natural human emotion. Nick It is a natural human emotion and we're not here to make anger wrong.  And I'm certainly not here to say, if someone has hurt you or abused you or whatever, to not be angry. No. Be angry. It's an emotion. KISMA It's really important to be clear that we're not saying don't have the emotion or stuff it, but what we're saying is let’s talk about it because it's important.  Nick And manage it and direct. KISMA And if you are angry, it's really about learning how to resolve it, and do what you need to do with it. Put it to good use. Nick 4:13 Anger is an Indicator So anger is an indicator that you want something and that desire is being obstructed. You want something and you're not having it. So right off the bat, that will first become frustration. You'll get frustrated about things. Now, the more that the frustration builds, you'll either start lashing out, like anger is that energy that really lashes out. And then when it lashes out over a longer period in a more ferocious way, it becomes rage. But it starts with frustration and usually what happens is the frustrations get ignored and then it gets stuffed and then it blows. So I think a lot of times anger starts just by not listening to ourselves and what we really want. Nick 7:49 Suggestions to Move into a Solution So to help our listeners, if someone is feeling anger from an energetic perspective, what are suggestions in order to move from anger into a solution? KISMA Everybody has their own way. But one of the best things that you can do is just move your body.  Any kind of movement, go for a run, do some yoga.  Nick One thing that I recommend is, you know, psychologists have done great studies. And I never used to journal. But now I'll take pen to paper and just start writing. It’s a great way to just start to release and undo. You don't even have to read it. It's just from head to your pen to your paper and write. KISMA 12:02 The Ultimate Healing State So then another piece that's extremely helpful is forgiveness. I mean the ultimate healing state is to forgive. If you need help with that has a pod of meditations and there is one there on letting go and then there's a healing one. KISMA 21:53 Life is Short The final piece for me is that we know life is short, let's not waste it on blowing up ourselves or other people.  Instead let's use and direct the emotions with wisdom and intellect because they're way more powerful that way. KISMA So, that's my illuminated thought for the day is that every little bit of your life is precious. Don’t waste it. Nick

Retirement Planning - Redefined
Ep 14: Traditional IRA 101

Retirement Planning - Redefined

Play Episode Listen Later Mar 5, 2020 16:44


We cover the basics on the traditional IRA. John and Nick will break down what this investment vehicle is for and how it may be able to benefit you.Helpful Information:PFG Website: https://www.pfgprivatewealth.com/Contact: 813-286-7776Email: info@pfgprivatewealth.comFor a transcript of today's show, visit the blog related to this episode at https://www.pfgprivatewealth.com/podcast/Transcript of Today's Show:----more----Speaker 1: Hey everybody, welcome into this edition of Retirement Planning Redefined with John and Nick here with me, talking about investing finance and retirement. From their office, their PFG Private Wealth in Tampa Bay guys, what's going on? How are you this week, John?John: I'm good. How are you doing?Speaker 1: I'm hanging in there. Amidst the goofiness of the world, I'm doing all right. How about you, Nick? You doing okay?Nick: Yep, yep. Pretty good. We finished up the retirement classes that we teach recently, so just meeting with a lot of people after that class.Speaker 1: Okay. Those went pretty well?Nick: Yeah. Yeah, always good. Always fun.Speaker 1: Okay, well, very good. Listen, I got a little bit of a kind of a class idea for us to run through here. I wanted to talk this week about IRAs, really just an IRA 101, if you will, and then we'll follow it up with our next podcast coming up after this one. We'll follow up with the Roth side of the coin. Let's jump into here just a little bit and talk about this and get rocking and rolling. Just do us a favor. Just assume that we don't all have the same knowledge base. What is an IRA? Give us just a quick 101 on that.John: So yeah, good question. Especially with a tax season coming up, because I know a lot of people when they're doing their taxes, and whether it's TurboTax or working with an accountant, at the end of it it says you might want contribute to an IRA and maybe save some taxes this year. Or maybe get [inaudible 00:01:22] taxable income down the road. But you brought this topic up. So when I raise an individual retirement account on the personal side, a lot of people have their employer sponsored plans, but the IRA is for the individual. Really, there's a lot of tax benefits to it to provide for saving for retirement. One of the biggest questions that Nick and I get, or I guess assumptions, is that most people think an IRA is an actual investment, and it's really not. I explain it as imagine a tax shell, a tax shell you can invest in a lot of different things, and you have some tax benefits within the shell.Speaker 1: Okay. So it's like a turtle shell, if you want to look out that way. It's a wrapper really, right? So it's what your Snicker bar comes in. It's the wrapper. Then inside there you can put all sorts of different stuff. So who can contribute to IRAs?John: Well, there's two main types, and Nick will jump into that. But there's your traditional IRA and then a Roth IRA.Speaker 1: Okay.Nick: From the standpoint of how those break down, how those work, we're going to focus on traditional IRAs today. The number one determination on whether or not you can contribute to an IRA is if there is earned income in the household. So if it's a single person household, they have to have earned income. That does not include pension income, social security income, rental income. It's earned income. You receive some sort of wage for doing a job. So that's the first rule. You can contribute for 2019 and for 2020 essentially, if you're under 50, you can contribute $6,000. If you're over 50, you can take part in what's called a catch-up, which is an additional $1,000 for a total of $7,000.Nick: So as an example, let say that it's a two-person household. One person is working, one person is not, and the person that's working has a least $14,000 of income. Then as long as they satisfy a couple other rules that we'll talk about, they can make a contribution for themself for the $7,000 and for the spouse for the $7,000. So earned income doesn't have to be for both people. It has to be for one, and then the amount ties in the amount of earned income.Speaker 1: Oh, okay.John: One thing to jump into that, and I've seen some people, not our clients, but others, make some mistakes where they think that, we talked about the two different kinds, traditional and Roth, where they think they can make, let's say, $7,000 into one and $7,000 in the other. It's actually $7,000 total between the two of them.Speaker 1: Oh, that's a good point. Yeah. So, okay, so those are good to know. Whenever you're talking about just the contribution, the base set up of them. So let's stick with the traditional IRA and talk about it. What are some key things to think about like as an investment vehicle, as a machine here? These are pre-taxed, right?Nick: Yeah. When we talk about, and this is where the confusion really sets in for many people, when we talk about traditional IRAs, we really like to have conversations with people to make sure that they understand that there can be both a tax deductible or pretax traditional IRA, and there can be non-deductible traditional IRAs. So the logistics are dependent upon, really, a couple of different things whether or not they're active in an employer's plan. Then there are income limits that will determine whether or not somebody can participate in the tax deductible side of a traditional IRA. So that can be a little confusing. We usually have people consult with their tax prepare or and/or their software so that they can fully understand.Nick: But part of the reason that we bring that up is a real-world scenario is, what [inaudible 00:05:17] this client, worked at a company for 10 years, and she contributed to the 401k on a pretax basis. She left the company, rolled her 401k into a rollover IRA, and she's no longer working, but her spouse is working and wants to make IRA contributions for them. But he has a plan at work and makes too much money. They might have to do a non-deductible IRA. So usually what we will tell them to do is to open a second IRA, and when they make the contribution, they're going to account for it on their taxes as they made it. They're not going to deduct it. So we try not to commingle those dollars together. So a nondeductible IRA, we would like you to be separate from a rollover IRA. Otherwise, they have to keep track of the cost basis and their tax basis on nondeductible proportion commingled, and we're really just [inaudible 00:06:16] nightmare.John: Yeah, that's never fun to try and keep track of and never easy. One thing with with the pretax, just give an example of what that means is, let's say someone's taxable income in a given year is $100,000, and doing their taxes, it says, you might want to make a deductible contribution to an IRA. If they were to put $5,000 into the IRA, their taxable income for that given year would be $95,000. So that's where people look at the pretax as a benefit versus a nondeductible. That same example, $100,000 of income, you put $5,000 into a nondeductible IRA, your taxable income stays at that $100,000.Speaker 1: Okay. So what are the factors that determine if it's deductible or not?Nick: The answer is that it's fairly complicated. The first factor is, if we talk about an individual, they're going to look at do you have a plan at work that you're able to contribute to? So that's the first test. The second test is an income test. The tricky part with the income test is that there is a test for your income, and then there's also tests for household income. So usually we revert to the charts and advisors. We work together with the tax preparers to help make sure that we're in compliance with all of the rules. It should be much less complicated than it actually is. But it's really, honestly, a pain. I will say that if you do not have a plan at work that you can contribute to, your ability to contribute in [inaudible 00:07:56] to an IRA, a traditional IRA is much easier.Speaker 1: Okay. Gotcha. All right. So if that's some of the determining factors in there, what are some other important things for us to take away from a traditional IRA standpoint?John: Yeah, one of the biggest benefits to investing in an IRA versus, let's say, outside of it, is and if the account grows tax-deferred. So let's say you had money outside of an IRA and you get some growth on it, I say typically, because nothing's ever absolute. But you can really get it [inaudible 00:08:28] every single year and the gains and the dividends and things like that. Within the IRA shell, going back to that, it just continues to grow tax-deferred. So really help the compounding growth of it.Speaker 1: Okay. So when we're talking about some of these important pieces and the different things with the traditional, what are some other, I know a lot of times we know that it's the 59 and a half, right? All that kind of stuff. Give us some other things to think about just so that we're aware of the gist of it. Now, there was some changes to the Secure Act, which also makes them some of these numbers a little bit different now. The 59 and a half is still there, but now it's gone from 70 and a half to 72, right?John: Yeah. With good things like tax deferral and pre-tax, we do have some nice rules that the IRS/government basically hands down to us. One of them is as far as access to the account, you cannot fully access the account without any penalties until 59 and a half. After you're 59 and a half, you do get access to your account. If you access it before that, there is a 10% penalty on top of a whatever you draw. So that's basically deter to pull out early. There are some special circumstances as far as pulling out before 59 and a half, which could be any type of hardships financially, health wise, and also first time home purchases. We get that quite a bit sometimes where people say, I'm looking to buy a house and I want to go ahead and pull out of my IRA. Can I do so and avoid the penalty? The answer is yes, up to $10,000.John: Some of the changes with the Secure Act where they used to be after 70 and a half, you can no longer contribute to an IRA, even if you have earned income. That's actually gone, which is a nice feature when we're doing planning for clients above 70 and a half, where we can now make a deductible contribution to an IRA, where before we couldn't. Nick's the expert in RMD, so he can jump in and take that.Nick: One of the biggest things to keep in mind from the standpoint of traditional IRAs are that they do have required minimum distributions. The good thing is that those required minimum distributions are now required at age 72 versus 70 and a half. So that makes things a little bit easier for people. And again, that's kind of a big differentiator from the standpoint of a Roth IRA does not have an RMD, a traditional IRA does have an RMD.Speaker 1: Right, and with the RMDs, it's money that basically the government says, we're tired of waiting. Where's our tax revenue? Is there any basic things there just to think about when we're thinking about having to pull this out? Is there a figure attached to it?Nick: I would say we try to give people an idea, because sometimes there's uncertainty on any sort of concept of how much they have to take out. But on average it's about 3.6% in the first year. I would say though, that probably one of the biggest, or I should say one of the most misunderstood portions about it are that the RMD amount that has to come out, it's based on the prior years and balance of all of the pretax accounts. So you may have multiple accounts, you don't have to take an RMD out of each account. You just need to make sure that you take out the amount that is due, and you have the ability to be able to pick which account you want to take that out of, which really, at first thought that can seem more complicated. But if you're working with somebody it helps increase the ability to strategize and ladder your investments and use a bucket strategy where you can use short-term, mid-term, long-term strategies on your money, and have a little bit more flexibility on which account you're going to take money out of when.John: To jump on that, we went through that paycheck series when we talked about having a long-term bucket, and in some strategies that's where by being able to choose what IRA you draw from, you can just let that long-term bucket just continue to build up and not worrying about pulling out of it.Speaker 1: Gotcha. Okay. All right. So that gives us a good rundown, I think, through the traditional side of it, and gives us some basic class, if you will, on what these are. Of course, as the guys mentioned, they teach classes all the time. So if there's things you want to learn more about the IRA, the traditional IRA, and how you might be able to be using it or better using it as part of an investment vehicle, then always reach out to the team and have a conversation about that specifically. Because again, we just covered some basics and general things that apply to just about everybody here. But when you want to see how it works for your situation specifically, you always have to have those conversations one-on-one. So reach out to them, let them know if you want to chat about the traditional IRA, or how you can better use the vehicle, or change, or whatever it is that you're looking to do.Speaker 1: (813) 286-7776 is the number you call to have a conversation with them. You simply let them know that you want to come in. They'll get you scheduled and set up for a time that works well for you. That's (813) 286-7776. They are financial advisors at PFG Private Wealth in the Tampa Bay area. Make sure you subscribe to the podcast on Apple, Google, Spotify, iHeart, Stitcher, whatever platform of choice you like to use. You can simply download the app onto your smartphone and search Retirement Planning Redefined on the app for the podcast. Or you could just simply go to their website at pfgprivatewealth.com. That's pfgprivatewealth.com. Guys, thanks for spending a few minutes with me this week talking about IRAs. So let's, next podcast, talk about the Roth side. We'll flip over to the cousins, okay?John: One more thing I want to mention before we go is withdrawing from the accounts of, let's say someone goes to retire above 59 and a half, and it's time to really start using this money as income. So it's just important to understand that whatever amount that you withdraw out of the IRA, assuming everything was pre-tax that went into it, it adds to your taxable income. So for example, if someone's pulling $50,000 out of their IRA, their taxable income goes up by $50,000 in a given year. So we just want to point that out, because as people are putting money into it, we sometimes do get questions of, when I take it out am I actually taxed on this, the answer is yes, if it was pretax put into it.Speaker 1: Gotcha. Okay. Yeah, great point. Thanks for bringing that up as well. So I appreciate that. And again, folks, the nice thing about a podcast is you can always pause it, and you can always rewind it, replay it. If you're learning, trying to learn something useful, or get a new nugget of information here, that's a great thing about it. That's also why subscribing is fantastic. You can hear new episodes that come out, as well as go back and check on something that you were thinking about, and that way when you come to have that conversation, you can say, listen, I want to understand more about how withdrawals with my traditional IRA is going to affect me, or whatever your question might be. So again, guys, thanks for your time this week. I'll let you get back to work and we'll talk again soon.John: Thanks.Nick: Thanks.Speaker 1: We'll catch you next time here, folks, on the podcast. Again, go subscribe. We'd appreciate it on Retirement Planning Redefined with John and Nick from PFG Private Wealth.

Retirement Planning - Redefined
Ep 8: Social Security, Part 2

Retirement Planning - Redefined

Play Episode Listen Later Oct 17, 2019 11:50


We continue our discussion on social security this week. Today's show will focus on how you can integrate social security in your retirement plan and some variables you may need to look out for when doing so.Helpful Information:PFG Website: https://www.pfgprivatewealth.com/Contact: 813-286-7776Email: info@pfgprivatewealth.com----more----Transcript of today's show:Speaker 1: Thanks for coming back in with us. As we talk here on retirement planning redefined, we always appreciate you joining us here on the podcast. With John and Nick, financial advisors at PFG Private Wealth, and we're going to continue our multi-part series on social security. We talked about a few things last go around on the podcast, and we're going to continue that on this time as well. John, how you doing buddy? How's things going?John: I'm doing good. How are you doing?Speaker 1: I'm hanging in there. Doing pretty well. I think I'm doing about the same as Nick. At the time as podcast, our teams did not fare well this past weekend in football. How are you doing, Nick?Nick: Good. While we lost, I'm still cautiously optimistic.Speaker 1: Yeah, that's right. That's good.Nick: I'm okay.Speaker 1: That's how fans do it, right? You still stay optimistic even when they break your heart over and over. We'll save that for another time, but I do want to continue on our conversation about social security. We had some good chat the last time. We has some good conversation about things to consider, so we're going to continue this piece on. As we teased the last time, and if you didn't listen to it, make sure you go and check out the prior episode. You can go to PFGPrivateWealth.com. That is PFGPrivateWealth.com, and you can subscribe to the podcast, Retirement Planning Redefined, you can subscribe to that and listen to past episodes as well as future episodes. Let's get into this part. We're going to talk about how to integrate, really, social security into your retirement plan. So what's a few steps to start and start thinking about when it comes to the integration of it?John: Yeah, you know, one thing we wanted to touch on with social security is just how important it is in someone's retirement plan. A lot of people don't realize it really equates to almost 30 to 40% of their retirement income, and a big factor of why it's important, it's actually inflation protected. On average, historically, social security is average about 2.6%. So it's really nice to have a set of income that's actually going to be going up with cost of living adjustments. It makes a big difference.John: Just kind of give a quick example. Let's say if you're starting social security now, it's $2,000 per month. Within 20 years at 2.6%, that'll be about $3,340 or so, which is a big jump in income. It's important to understand how valuable that is in how much that really does help out someone's retirement plan.Speaker 1: All right, so let's talk about some taxation and some benefits there. Nick, what are some things to think about when it comes to the benefits of the taxation?Nick: From the standpoint of I guess making sure that people understand how social security works. From conversations that we've had, a lot of people are under the impression that because social security was funded via the payroll taxes that we talked about in the last session, they're under the impression that there's not going to be any sort of income tax when you start to receive it.Speaker 1: Right.Nick: As many people do know, that is incorrect. The formula that they use to calculate how much of the benefit is taxable to somebody is a little bit convoluted. Essentially what they do is they look at a modified adjusted gross income number, which includes your adjusted gross income, half of the amount that you receive from social security, and then a tax exempt interest, aka, interest from municipal bonds. They add that together, and then they really kind of look at a chart. And then dependent upon if you are single or married, it's going to determine what percentage of your benefit is going to be includable in your taxable income.Nick: If we were to say that your benefit amount was 2,000 a month, and your combined, that income formula that we kind of talked about, puts your income over about $38,000. 85% of your benefit, or about 1,700 of the 2,000, is going to be added to the other income sources that you have to determine how much you're going to pay in tax. We just like to make sure that people understand that although that benefit is coming in, oftentimes they look at the gross amount, and they don't necessarily understand that, hey, once you're on Medicare, your Medicare, it gets deducted out of that. You're probably going to want to have some sort of federal income tax withheld from it. That benefits starts to drop down. So that's something that we always make sure we focus on and make sure that people understand.John: When we're doing planning, and people find out that the social security is taxed, they are not happy.Nick: Yeah, and sometimes we get asked when did that happen or how did that happen? It really happened in the 80s, during the Reagan administration, is when it took place. Realistically, for most of the people that we're working with, they've been in the working world for 30 years, and that's been in place. It's not something that's necessarily very new or anything like that. There's really minimal ways that you can actually reduce the impact on taxes. Realistically, the only other sort of income that's not includable in that is any withdrawals that you'll take out of a Roth IRA. So dependent upon their overall situation, and dependent upon the structure of what they're going to have to take out, required minimum distributions and those sorts of things, we may look at different strategies, like converting traditional money to Roth money, and determining if that makes sense.Nick: I'll say this, that people do tend to hate taxes, and I know that sounds kind of funny, but the point being is that sometimes they'll try to make irrational decisions just to try to deal with maybe a tax issue without figuring out that hey, you know, they may only be paying an effective tax rate of 12 or 13% on their income, which in the scheme of things is really low. And so making sure that they understand that, and that they don't need to make rash decisions with how they structure their decisions is an important kind of thing. Social security just kind of factors in, it's important for people to understand how it works and how it's taxed. It's more of just kind of an FYI sort of thing.Speaker 1: Well, really good information here. We're talking about how to integrate social security in a retirement plan. John, did you have another point about the taxes here on this?John: Yeah, so one thing that we do in planning is we really start to map out someone's taxes into retirement, and a big chunk of that is their required minimum distribution age 70 and a half. If we can see how much taxes they're going to pay, we can really make some strategies for someone's social security based on that. But again, the plan kind of gives you the roadmap so you can make the right decision based on your situation.Nick: And to kind of add on to that. More specifically, when we map that out and we look at it, what we're looking to see is when those required minimum distributions are due at 70 and a half, because people, by default, like to put them off as long as they can. Sometimes it will actually make sense to start taking money out of their IRAs first and wait on social security. Whereas the default for most people is take social security first, and then take out the money for the required minimum distributions. Structuring those decisions together as one is a really important way that you can kind of add in some tax planning into your overall retirement planning.Speaker 1: All right, so we're going to continue our conversation on the next podcast as well, part three if you will, about social security. But before we get out of here for this particular episode. Any other thoughts about some of the things we've covered today, gents?John: Yeah, so it's kind of going back to what we first talked about with social security being important in someone's plan and inflation. The reason that is is when you have a portion of your retirement income that's guaranteed, it really helps us kind of map out how we should invest or basically implement a distribution strategy from the rest of the assets. So having that base of, let's say, 30,000 guaranteed income coming in, that's going up with cost of living, helps us really map out the rest of the investments and how we should strategize behind that.Nick: I think another good tool or, you know... Because as an example, my father has a pension, he's a retired fireman, and I have to constantly remind my mother what kind of the equivalent of a lump sum of dollars would be if he would have a lump sum versus the amount that he gets every single month through the pension. If we're saying on average the social security benefit amount for somebody that's been working for their full life, and waits until their full retirement age to take it, is around 2,000 per month. Let's say it's a dual family household, so we're talking about 4,000 per year. That's really the equivalent of a safe withdrawal rate and a million bucks.Nick: One of the super common questions that people ask us is how much can I take out of my retirement account each year? The safe withdrawal rates around 4%, so 4% on a million, $40,000 a year. 2,000 a month times two is closer to $48,000 a year. So we're talking about one plus million bucks. If that money was sitting in an account at least generating income, even though you couldn't invade principle, that sometimes gives people some perspective on how valuable that social security income really is to them in our overall planning.Speaker 1: Well again, we are talking about social security. We've gone through a couple of pieces the last couple of podcasts. We're going to do another one coming up in just a couple of weeks here, and continue on with our conversation with John and Nick, financial advisors at PFG Private Wealth, around social security. If you have questions and concerns, and you probably do because social security can be quite confusing to a lot of us who don't deal with this every day. Well then reach out to the guys, give them a call and let him know, because they do obviously work in this arena every day. Having a conversation, getting a second opinion if you've already got one, maybe you have no plan at all, or maybe you've had no conversations around it,. Well, just reach out and let them know that you'd like to talk.Speaker 1: 813-286-7776 is how you can reach out to them if you'd like. here in the Tampa Bay area. 813-286-7776. And of course, you can also just go to the website, PFGPrivateWealth.com. That is PFGPrivateWealth.com. Check out the team on the website there as well. You can also subscribe to the podcast on whatever platform you choose, Apple or Google, or so on and so forth, and listen to past episodes as well as future episodes. So guys, I'm going to say bye this week for you, and we'll be back next time here on the podcast, so make sure you tune in for more Retirement Planning Redefined with John and Nick from PFG Private Wealth. We'll see you next time.

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.

Round Table 圆桌议事
【文稿】城会玩,城也傻!

Round Table 圆桌议事

Play Episode Listen Later Mar 26, 2016 7:42


非常感谢热心听众【Trevino Zhang】对本文稿的贡献! 赠人玫瑰,手有余香。想为文稿做贡献的童鞋请微博私信联系@CRI罗煜。我们撒花欢迎你的加入! 听写完的文稿都会由主持人们负责Check,然后发布给小伙伴们。同时,通过对比,也可以学习到很多有用的单词和短语呢!希望大家能够加入我们,让圆桌能够陪伴更多小伙伴们的成长!Heyang:An online post has pointed out ten silly things that city dwellers do, but rural folks just think these people are out of their minds. What are these things and why is it so hard for rural folks to comprehend? Guys, what’s on this list that applies to you, and maybe explain a little bit to us why there is this discrepancy?Nick:One of the things that you already mentioned was the going to the gym in the city (Yeah, I can relate to that.), you said that people who you know drive their car, take the elevator to the gym in a high-rise building and then go running on a treadmill. It doesn’t quite apply to me, I don’t drive, but I do go to an indoor gym. And I think, in a big city, that’s, I know, that’s one of the nicest ways to exercise because you go running outside, there’s traffic, there’s people everywhere, it’s polluted. It’s very difficult you know, you are constantly dodging people left, right and center, everybody conspires to be in your way at exactly the wrong time, and you’re just thinking I’m gotta give up, and sometimes running inside is better. I think, if you live in a rural area, probably running outside is very nice. (Right.) And, you know, I feel more inclined to do it.Liuyan:I agree with that completely, so I think whoever made that list, especially this point, probably didn’t think, you know, the air in urban places usually tends to be worse, so that people do not feel like they want to actually stay outdoors and do exercises, so maybe hitting the gym is the best possible solution there. That’s said, I’m very glad it doesn’t apply to me at all, because I don’t go to gyms, I always power walk, so I walk in nature. When it gets really smoggy sometimes, I just put on my facial mask and still walk.Heyang:Wow, you are a very brave and athletic guy, Liuyan. (Yes, you can say that, that’s how I lost so many pounds and then to keep, keep this way.) Yes, and Liuyan looks great you know, not only has he got a very slender frame figure and also you know you are not one of those sickenly thin people, and that’s really important. And you know what Liuyan does when he is power walking, you know, when he is maintaining such a great figure? What do you do, Liuyan? Liuyan:I listen to Round Table. That’s totally true and that’s not tooting our own horn. Because I power walk usually for you know, close to 50 minutes every day. That’s exactly the length of an episode of Round Table.Heyang:Yes, so our listeners are out there, I know a lot of you have very healthy habits, lifestyle, like you work out, to listen to music. What do you learn from that, listen to Round Table when you are doing that? Yeah, Nick, what did you want to say?Nick:No, I was just laughing, to be honest.Liuyan:Seamless product placement.Heyang:Well, there you go, there you go. And when you guys are talking about like some of the rural folks, maybe why they don’t think that you know, driving to a gym and work out is a good idea or that’s just absurd. It’s also, I think a couple of days ago, one of our WeChat listeners left us this message, but I’m sorry can’t find your name right now, but he said that in rural areas, people probably, they need to plow the fields, they need to do so much farm work, they don’t need to go to the gym. Probably going to the gym and working out itself is just absurd, and they think you know, these people must be mad, having to designate a special length of time, and driving to that place, just to get some exercise. And I think that’s a really valid point too, so what else do you think is a bit weird that has been in the eyes of some of the rural folks?Liuyan:I think one of the things that you mentioned before was some people really treat their puppies maybe too seriously. The minute they get sick, they immediately take them to hospitals and treat them as if they were the most important people in the world. When their parents get sick, they probably don’t even know, so I think that’s actually kind of ironic, and also true on a lot of people.Heyang:Yes, does that mean that we are a bit too lonely that you know, having a little creature that is there for you to cuddle every day, and that replaces the position of a real human being. What do you think? (Uh, funny you had a robot, uh?) Thinking about that too, Nick.Nick:No, I think some people are very very attached to their pets, let me run this past you, a couple of weeks ago, I was out in the street, and a woman walked past me with her dog, and the dog, I noticed, was making kind of strange sound as it walked, and then when it went past me, I noticed that it was wearing four tiny baby shoes on its feet (Oh...), is that normal? Heyang:Oh, I’ve seen that and I found it slightly difficult to understand, but it’s like Chinese people you know, we always take off shoes at home, so you know, maybe... (and the dog does too.)Liuyan:Yeah, that’s one other thing that I really don’t understand, a lot of Chinese people and also foreigners apparently treat their pets as if they are real human beings that need clothing, so I don’t really get the logic in there. I thought you know, animals should just wear their natural fur, and that should be enough. No human clothes necessary, but that’s just me.Heyang:Yes, and what about on this list when there is this other entry that is, having 200, 300 phone contacts in your cellphone, but none of them is your neighbors’ number, that you don’t know you neighbor, what do you think of that one? Is that weird?Nick:It’s maybe weird, but it’s very common I think, sadly... (In the UK, too?) I would say so, yeah, I mean, especially if you live in like a high-rise building, I think you just, you don’t see the people around you, you know you are all in your own little space, you come and go, at different times, and you just sadly, you never interact with each other. And it’s not a good thing because obviously your neighbors are right there, if you have some kind of emergency, it would be great if they were someone you can call on for help, but it’s sadly just not something that we seem to do anymore.Liuyan:Yeah, I agree with that completely, but I think it’s understandable because in China, when you live in complexes, usually we have the thing called Wuye, so sometimes if you cannot find your neighbors, you just go to Wuye, so that already solves all your problems and it’s kind of not necessary for you to have the neighbors’ numbers.Heyang:All right, well, before we go, one last question for you guys, do you think that this differentiation between so-called urban and rural is all that relevant anymore? Nick:Relevant... It’s probably not that helpful I think it’s you know creating a divide where there doesn&`&t need to be one, and it’s probably on its way out.Heyang:Yeah, and I think with this kind of division, it’s not very helpful in the sense that so many of the rural population have migrated to the cities. Some of them stay in the city and become city dwellers and some go back home, so it’s a complicated situation.

The Zelda Cast
Zelda Informer Podcast Episode 8: Zelda Science, Halloween, and Intro to Geography

The Zelda Cast

Play Episode Listen Later Nov 1, 2014 52:19


THIS WEEK! Adam (The Host and 5th member of the podcast), Jake (Just some guy), Al (Worst puns ever) and Nick (One of our writers) get together for a (slightly shorter than usual) podcast! They talk how Hookshots work, name pronunciation, and disclaim everything! Check out the Links (get it?) below for more on what we discussed. Also, be sure to email us your topics, music, and even cover art at the official podcast email address: ZeldaInformerPodcast@gmail.com LINK DUMP: Adam's Twitter (He's hilarious, we promise): https://twitter.com/ABCMilkman Castlevania Video (not for kiddos): https://www.youtube.com/watch?v=Cx28MlhY8zc Jon Tron's video (also probably not for kiddos): https://www.youtube.com/watch?v=vx9srMlojDg Sound Chris' Sound Cloud (Our usual theme song guy): https://soundcloud.com/soundchris-1​

The Champions' Cast - Zelda Dungeon Podcast
Zelda Informer Podcast Episode 8: Zelda Science, Halloween, and Intro to Geography

The Champions' Cast - Zelda Dungeon Podcast

Play Episode Listen Later Nov 1, 2014 52:19


THIS WEEK! Adam (The Host and 5th member of the podcast), Jake (Just some guy), Al (Worst puns ever) and Nick (One of our writers) get together for a (slightly shorter than usual) podcast! They talk how Hookshots work, name pronunciation, and disclaim everything! Check out the Links (get it?) below for more on what we discussed. Also, be sure to email us your topics, music, and even cover art at the official podcast email address: ZeldaInformerPodcast@gmail.com LINK DUMP: Adam's Twitter (He's hilarious, we promise): https://twitter.com/ABCMilkman Castlevania Video (not for kiddos): https://www.youtube.com/watch?v=Cx28MlhY8zc Jon Tron's video (also probably not for kiddos): https://www.youtube.com/watch?v=vx9srMlojDg Sound Chris' Sound Cloud (Our usual theme song guy): https://soundcloud.com/soundchris-1​