<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>alexv53 &#8211; Alex Velasquez</title>
	<atom:link href="https://alexvelasquez.com/author/alexv53/feed/" rel="self" type="application/rss+xml" />
	<link>https://alexvelasquez.com</link>
	<description>The People&#039;s Nerd</description>
	<lastBuildDate>Sun, 12 May 2024 21:04:06 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.4.5</generator>
	<item>
		<title>Compound Interest Calculator</title>
		<link>https://alexvelasquez.com/compound-interest-calculator/</link>
					<comments>https://alexvelasquez.com/compound-interest-calculator/#respond</comments>
		
		<dc:creator><![CDATA[alexv53]]></dc:creator>
		<pubDate>Sun, 12 May 2024 21:04:05 +0000</pubDate>
				<category><![CDATA[Calculators]]></category>
		<category><![CDATA[Finance]]></category>
		<guid isPermaLink="false">https://alexvelasquez.com/?p=8156</guid>

					<description><![CDATA[Compound Interest Calculator Compound Interest Calculator Principal Amount ($): Annual Interest Rate (%): Times Compounded Per Year: Number of Years: Calculate Future Value:]]></description>
										<content:encoded><![CDATA[
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Compound Interest Calculator</title>
</head>
<body>
    <h1>Compound Interest Calculator</h1>
    <form id="interestForm">
        <label for="principal">Principal Amount ($):</label>
        <input type="number" id="principal" required><br><br>

        <label for="rate">Annual Interest Rate (%):</label>
        <input type="number" id="rate" step="0.01" required><br><br>

        <label for="timesCompounded">Times Compounded Per Year:</label>
        <input type="number" id="timesCompounded" required><br><br>

        <label for="years">Number of Years:</label>
        <input type="number" id="years" required><br><br>

        <button type="button" onclick="calculateInterest()">Calculate</button>
    </form>

    <h2>Future Value:</h2>
    <div id="result"></div>

    <script>
        function calculateInterest() {
            const principal = parseFloat(document.getElementById('principal').value);
            const rate = parseFloat(document.getElementById('rate').value) / 100;
            const timesCompounded = parseInt(document.getElementById('timesCompounded').value);
            const years = parseInt(document.getElementById('years').value);

            if (!principal || !rate || !timesCompounded || !years) {
                document.getElementById('result').innerHTML = 'Please enter all fields correctly!';
                return;
            }

            const amount = principal * Math.pow(1 + rate / timesCompounded, timesCompounded * years);
            const interest = amount - principal;

            document.getElementById('result').innerHTML = `The future value of your investment is $${amount.toFixed(2)}, which includes $${interest.toFixed(2)} in interest.`;
        }
    </script>
</body>
</html>

]]></content:encoded>
					
					<wfw:commentRss>https://alexvelasquez.com/compound-interest-calculator/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Weighted Average Returns</title>
		<link>https://alexvelasquez.com/weighted-average-returns/</link>
					<comments>https://alexvelasquez.com/weighted-average-returns/#respond</comments>
		
		<dc:creator><![CDATA[alexv53]]></dc:creator>
		<pubDate>Sun, 12 May 2024 20:07:27 +0000</pubDate>
				<category><![CDATA[Calculators]]></category>
		<category><![CDATA[Finance]]></category>
		<guid isPermaLink="false">https://alexvelasquez.com/?p=8145</guid>

					<description><![CDATA[Weighted Average Returns Weighted Average Returns Add Another Investment Calculate Results]]></description>
										<content:encoded><![CDATA[

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Weighted Average Returns</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 40px;
        }

        .investment {
            margin-bottom: 10px;
        }

        input[type="number"], input[type="text"] {
            width: 200px;
            padding: 8px;
            margin: 5px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        button {
            padding: 10px 20px;
            background-color: #007BFF;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            margin: 5px;
        }

        button:hover {
            background-color: #0056b3;
        }

        h2, h3 {
            margin-top: 20px;
        }
    </style>
</head>
<body>
    <h1>Weighted Average Returns</h1>
    <div id="investmentContainer">
        <div class="investment">
            <input type="number" placeholder="Investment Period (years)" class="period">
            <input type="number" placeholder="Amount Per Investment" class="amount">
            <input type="number" placeholder="Expected Returns (%)" class="return">
        </div>
    </div>
    <button onclick="addInvestment()">Add Another Investment</button>
    <button onclick="calculateResults()">Calculate Results</button>
    <h2 id="weightedAverageResult"></h2>
    <h3 id="futureValueResult"></h3>
    <h3 id="totalInvestmentResult"></h3>

    <script>
        function addInvestment() {
            const container = document.getElementById('investmentContainer');
            const newInvestment = document.createElement('div');
            newInvestment.className = 'investment';
            newInvestment.innerHTML = `
                <input type="number" placeholder="Investment Period (years)" class="period">
                <input type="number" placeholder="Amount Per Investment" class="amount">
                <input type="number" placeholder="Expected Returns (%)" class="return">
            `;
            container.appendChild(newInvestment);
        }

        function calculateResults() {
            const periods = document.querySelectorAll('.period');
            const amounts = document.querySelectorAll('.amount');
            const returns = document.querySelectorAll('.return');
            let totalWeightedReturn = 0;
            let totalInvestment = 0;
            let totalAmountInvested = 0;
            let futureValues = [];

            periods.forEach((period, index) => {
                const years = parseFloat(period.value);
                const amount = parseFloat(amounts[index].value);
                const returnPercentage = parseFloat(returns[index].value);

                if (!isNaN(years) && !isNaN(amount) && !isNaN(returnPercentage) && years > 0) {
                    const weight = amount * years;
                    totalWeightedReturn += returnPercentage * weight;
                    totalInvestment += weight;
                    totalAmountInvested += amount;
                    const futureValue = amount * Math.pow(1 + returnPercentage / 100, years);
                    futureValues.push(`Investment ${index + 1}: $${futureValue.toFixed(2)}`);
                }
            });

            if (totalInvestment > 0) {
                const averageWeightedReturn = totalWeightedReturn / totalInvestment;
                document.getElementById('weightedAverageResult').innerText = `Weighted Average Returns: ${averageWeightedReturn.toFixed(2)}%`;
                document.getElementById('futureValueResult').innerText = `Future Values: 
${futureValues.join(', ')}`;
                document.getElementById('totalInvestmentResult').innerText = `Total Invested Amount: $${totalAmountInvested.toFixed(2)}`;
            } else {
                document.getElementById('result').innerText = 'Please enter valid periods, amounts, and returns.';
            }
        }
    </script>
</body>
</html>

]]></content:encoded>
					
					<wfw:commentRss>https://alexvelasquez.com/weighted-average-returns/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Burn Rate Calculator</title>
		<link>https://alexvelasquez.com/burn-rate-calculator/</link>
					<comments>https://alexvelasquez.com/burn-rate-calculator/#respond</comments>
		
		<dc:creator><![CDATA[alexv53]]></dc:creator>
		<pubDate>Sun, 12 May 2024 19:43:58 +0000</pubDate>
				<category><![CDATA[Calculators]]></category>
		<category><![CDATA[Finance]]></category>
		<guid isPermaLink="false">https://alexvelasquez.com/?p=8135</guid>

					<description><![CDATA[Burn Rate Calculator Burn Rate Calculator Net Worth ($): Monthly Expenses ($): Monthly Passive Income ($): Federal Tax Rate (%): State Tax Rate (%): Calculate]]></description>
										<content:encoded><![CDATA[
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Burn Rate Calculator</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            padding: 20px;
        }
        .input-group {
            margin-bottom: 10px;
        }
        label {
            margin-right: 10px;
        }
    </style>
</head>
<body>
    <h2>Burn Rate Calculator</h2>
    <div class="input-group">
        <label for="netWorth">Net Worth ($):</label>
        <input type="number" id="netWorth" required>
    </div>
    <div class="input-group">
        <label for="monthlyExpenses">Monthly Expenses ($):</label>
        <input type="number" id="monthlyExpenses" required>
    </div>
    <div class="input-group">
        <label for="monthlyPassiveIncome">Monthly Passive Income ($):</label>
        <input type="number" id="monthlyPassiveIncome" required>
    </div>
    <div class="input-group">
        <label for="federalTaxRate">Federal Tax Rate (%):</label>
        <input type="number" id="federalTaxRate" step="0.01" required>
    </div>
    <div class="input-group">
        <label for="stateTaxRate">State Tax Rate (%):</label>
        <input type="number" id="stateTaxRate" step="0.01" required>
    </div>
    <button onclick="calculateSustainability()">Calculate</button>
    <div id="result" style="margin-top: 20px;"></div>

    <script>
        function calculateSustainability() {
            // Retrieve input values
            const netWorth = parseFloat(document.getElementById('netWorth').value);
            const monthlyExpenses = parseFloat(document.getElementById('monthlyExpenses').value);
            const monthlyPassiveIncome = parseFloat(document.getElementById('monthlyPassiveIncome').value);
            const federalTaxRate = parseFloat(document.getElementById('federalTaxRate').value) / 100;
            const stateTaxRate = parseFloat(document.getElementById('stateTaxRate').value) / 100;

            // Calculate total tax rate and adjust monthly passive income for taxes
            const totalTaxRate = 1 - (federalTaxRate + stateTaxRate);
            const adjustedMonthlyPassiveIncome = monthlyPassiveIncome * totalTaxRate;

            // Calculate net monthly burn rate using adjusted passive income
            const netMonthlyBurnRate = monthlyExpenses - adjustedMonthlyPassiveIncome;

            // Calculate total months of sustainability and convert to years
            const months = netWorth / netMonthlyBurnRate;
            const years = months / 12;

            // Display result
            document.getElementById('result').innerText = `Considering state and federal taxes on your passive income, you can sustain your current lifestyle for approximately ${years.toFixed(2)} years before running out of money.`;
        }
    </script>
</body>
</html>
]]></content:encoded>
					
					<wfw:commentRss>https://alexvelasquez.com/burn-rate-calculator/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Understanding Agilent Technologies (A)</title>
		<link>https://alexvelasquez.com/understanding-agilent-technologies-a/</link>
					<comments>https://alexvelasquez.com/understanding-agilent-technologies-a/#respond</comments>
		
		<dc:creator><![CDATA[alexv53]]></dc:creator>
		<pubDate>Sun, 12 May 2024 07:29:38 +0000</pubDate>
				<category><![CDATA[Finance]]></category>
		<guid isPermaLink="false">https://alexvelasquez.com/?p=8123</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[
<iframe width="560" height="315" src="https://www.youtube.com/embed/-CznTwlJfE4?autoplay=1&amp;mute=1&amp;start=1" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen=""></iframe>
]]></content:encoded>
					
					<wfw:commentRss>https://alexvelasquez.com/understanding-agilent-technologies-a/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Astrophysics for People in a Hurry</title>
		<link>https://alexvelasquez.com/astrophysics-for-people-in-a-hurry-post/</link>
					<comments>https://alexvelasquez.com/astrophysics-for-people-in-a-hurry-post/#respond</comments>
		
		<dc:creator><![CDATA[alexv53]]></dc:creator>
		<pubDate>Tue, 18 Sep 2018 18:25:54 +0000</pubDate>
				<category><![CDATA[WPBookList Book Post]]></category>
		<guid isPermaLink="false">http://alexvelasquez.com/astrophysics-for-people-in-a-hurry-post/</guid>

					<description><![CDATA[<p><strong>Over a year on the <em>New York Times</em> bestseller list and more than a million copies sold.<br /><br /> The essential universe, from our most celebrated and beloved astrophysicist.</strong></p><p>What is the nature of space and time? How do we fit within the universe? How does the universe fit within us? There’s no better guide through these mind-expanding questions than acclaimed astrophysicist and best-selling author Neil deGrasse Tyson.</p><p>But today, few of us have time to contemplate the cosmos. So Tyson brings the universe down to Earth succinctly and clearly, with sparkling wit, in tasty chapters consumable anytime and anywhere in your busy day.</p><p>While you wait for your morning coffee to brew, for the bus, the train, or a plane to arrive, <em>Astrophysics for People in a Hurry</em> will reveal just what you need to be fluent and ready for the next cosmic headlines: from the Big Bang to black holes, from quarks to quantum mechanics, and from the search for planets to the search for life in the universe.</p>]]></description>
										<content:encoded><![CDATA[<div class="wpbooklist-page-content">DO NOT DELETE</div>
]]></content:encoded>
					
					<wfw:commentRss>https://alexvelasquez.com/astrophysics-for-people-in-a-hurry-post/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>The Salt Fix: Why the Experts Got It All Wrong&#8211;and How Eating More Might Save Your Life</title>
		<link>https://alexvelasquez.com/the-salt-fix-why-the-experts-got-it-all-wrong-and-how-eating-more-might-save-your-life-post/</link>
					<comments>https://alexvelasquez.com/the-salt-fix-why-the-experts-got-it-all-wrong-and-how-eating-more-might-save-your-life-post/#respond</comments>
		
		<dc:creator><![CDATA[alexv53]]></dc:creator>
		<pubDate>Tue, 18 Sep 2018 18:24:38 +0000</pubDate>
				<category><![CDATA[WPBookList Book Post]]></category>
		<guid isPermaLink="false">http://alexvelasquez.com/the-salt-fix-why-the-experts-got-it-all-wrong-and-how-eating-more-might-save-your-life-post/</guid>

					<description><![CDATA[ We all know the dangers of sugar and salt: but the danger attributed to the second white crystal has more to do with getting too little of it, not too much. A leading cardiovascular research scientist and doctor of pharmacy overturns conventional thinking about salt and explores instead the little-understood importance of it, the health dangers of having too little, and how salt can actually help you improve sports performance, crush sugar cravings, and stave off common chronic illnesses.<br />   Too little salt in the diet can shift the body into semi-starvation mode and cause insulin resistance, and may even cause you to absorb twice as much fat for every gram you consume. Too little salt in certain populations can actually <i>increase</i> blood pressure, as well as resting heart rate. We need salt in order to hydrate and nourish our cells, transmit nerve signals, contract our muscles, ensure proper digestion and breathing, and maintain proper heart function. <i>The Salt Fix</i> will show how we wrongly demonized this essential micronutrient as well as explain what the current science really says about this misunderstood mineral and how to maximize its effect so you can enjoy ideal health and longevity.]]></description>
										<content:encoded><![CDATA[<div class="wpbooklist-page-content">DO NOT DELETE</div>
]]></content:encoded>
					
					<wfw:commentRss>https://alexvelasquez.com/the-salt-fix-why-the-experts-got-it-all-wrong-and-how-eating-more-might-save-your-life-post/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Way of the Wolf: Straight Line Selling: Master the Art of Persuasion, Influence, and Success</title>
		<link>https://alexvelasquez.com/way-of-the-wolf-straight-line-selling-master-the-art-of-persuasion-influence-and-success-post/</link>
					<comments>https://alexvelasquez.com/way-of-the-wolf-straight-line-selling-master-the-art-of-persuasion-influence-and-success-post/#respond</comments>
		
		<dc:creator><![CDATA[alexv53]]></dc:creator>
		<pubDate>Tue, 18 Sep 2018 18:23:08 +0000</pubDate>
				<category><![CDATA[WPBookList Book Post]]></category>
		<guid isPermaLink="false">http://alexvelasquez.com/way-of-the-wolf-straight-line-selling-master-the-art-of-persuasion-influence-and-success-post/</guid>

					<description><![CDATA[Jordan Belfort—immortalized by Leonardo DiCaprio in the hit movie <i>The Wolf of Wall Street</i>—reveals the step-by-step sales and persuasion system proven to turn anyone into a sales-closing, money-earning rock star.<BR><BR>For the first time ever, Jordan Belfort opens his playbook and gives readers access to his exclusive step-by-step system—the same system he used to create massive wealth for himself, his clients, and his sales teams. Until now this revolutionary program was only available through Jordan’s $1,997 online training. Now in <i>Way of the Wolf</i>, Belfort is ready to unleash the power of persuasion to a whole new generation of readers, revealing how anyone can bounce back from devastating setbacks, master the art of persuasion, and build wealth. Every technique, every strategy, and every tip has been tested and proven to work in real-life situations.<BR> <BR> Written in his own inimitable voice, <i>Way of the Wolf</i> cracks the code on how to persuade anyone to do anything, and coaches readers, regardless of age, education, or skill level, to be a master sales person, negotiator, closer, entrepreneur, or speaker.]]></description>
										<content:encoded><![CDATA[<div class="wpbooklist-page-content">DO NOT DELETE</div>
]]></content:encoded>
					
					<wfw:commentRss>https://alexvelasquez.com/way-of-the-wolf-straight-line-selling-master-the-art-of-persuasion-influence-and-success-post/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Peak Performance: Elevate Your Game, Avoid Burnout, and Thrive with the New Science of Success</title>
		<link>https://alexvelasquez.com/peak-performance-elevate-your-game-avoid-burnout-and-thrive-with-the-new-science-of-success-post/</link>
					<comments>https://alexvelasquez.com/peak-performance-elevate-your-game-avoid-burnout-and-thrive-with-the-new-science-of-success-post/#respond</comments>
		
		<dc:creator><![CDATA[alexv53]]></dc:creator>
		<pubDate>Tue, 18 Sep 2018 18:21:45 +0000</pubDate>
				<category><![CDATA[WPBookList Book Post]]></category>
		<guid isPermaLink="false">http://alexvelasquez.com/peak-performance-elevate-your-game-avoid-burnout-and-thrive-with-the-new-science-of-success-post/</guid>

					<description><![CDATA[<div><b>"A transfixing book on how to sustain peak performance and avoid burnout" </b>― <i>Adam Grant, New York Times bestselling author of Option B, Originals, and Give and Take</i></div><div>  </div><div><b>"An essential playbook for success, happiness, and getting the most out of ourselves." </b>― <i>Arianna Huffington, author of Thrive and The Sleep Revolution</i></div><div>  </div><div><b>"I doubt anyone can read Peak Performance without itching to apply something to their own lives." </b>― <i>David Epstein, New York Times bestselling author of The Sports Gene</i></div><div>  </div><div>A few common principles drive performance, regardless of the field or the task at hand. Whether someone is trying to qualify for the Olympics, break ground in mathematical theory or craft an artistic masterpiece, many of the practices that lead to great success are the same. In Peak Performance, Brad Stulberg, a former McKinsey and Company consultant and writer who covers health and the science of human performance, and Steve Magness, a performance scientist and coach of Olympic athletes, team up to demystify these practices and demonstrate how everyone can achieve their best.</div><div> </div><div>The first book of its kind, Peak Performance combines the inspiring stories of top performers across a range of capabilities - from athletic, to intellectual, to artistic - with the latest scientific insights into the cognitive and neurochemical factors that drive performance in all domains. In doing so, Peak Performance uncovers new linkages that hold promise as performance enhancers but have been overlooked in our traditionally-siloed ways of thinking. The result is a life-changing book in which readers learn how to enhance their performance via myriad ways including: optimally alternating between periods of intense work and rest; priming the body and mind for enhanced productivity; and developing and harnessing the power of a self-transcending purpose.</div><div> </div><div>In revealing the science of great performance and the stories of great performers across a wide range of capabilities, Peak Performance uncovers the secrets of success, and coaches readers on how to use them. If you want to take your game to the next level, whatever "your game" may be, Peak Performance will teach you how.</div>]]></description>
										<content:encoded><![CDATA[<div class="wpbooklist-page-content">DO NOT DELETE</div>
]]></content:encoded>
					
					<wfw:commentRss>https://alexvelasquez.com/peak-performance-elevate-your-game-avoid-burnout-and-thrive-with-the-new-science-of-success-post/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Ikigai: The Japanese Secret to a Long and Happy Life</title>
		<link>https://alexvelasquez.com/ikigai-the-japanese-secret-to-a-long-and-happy-life-post/</link>
					<comments>https://alexvelasquez.com/ikigai-the-japanese-secret-to-a-long-and-happy-life-post/#respond</comments>
		
		<dc:creator><![CDATA[alexv53]]></dc:creator>
		<pubDate>Tue, 18 Sep 2018 17:30:16 +0000</pubDate>
				<category><![CDATA[WPBookList Book Post]]></category>
		<guid isPermaLink="false">http://alexvelasquez.com/ikigai-the-japanese-secret-to-a-long-and-happy-life-post/</guid>

					<description><![CDATA[<b><b>*<i>Los Angeles Times </i>bestseller*<br /><br />“If <i>hygge</i> is the art of doing nothing, <i>ikigai</i> is the art of doing something—and doing it with supreme focus and joy.” —<i>New York Post</i></b><br /><br />Bring meaning and joy to all your days with this internationally bestselling guide to the Japanese concept of <i>ikigai </i>(pronounced ee-key-guy)—the happiness of always being busy—as revealed by the daily habits of the world’s longest-living people.</b><br /><br />“Only staying active will make you want to live a hundred years.” —Japanese proverb <br />  <br /> According to the Japanese, everyone has an <i>ikigai</i>—a reason for living. And according to the residents of the Japanese village with the world’s longest-living people, finding it is the key to a happier and longer life. Having a strong sense of <i>ikigai</i>—the place where passion, mission, vocation, and profession intersect—means that each day is infused with meaning. It’s the reason we get up in the morning. It’s also the reason many Japanese never really retire (in fact there’s no word in Japanese that means <i>retire</i> in the sense it does in English): They remain active and work at what they enjoy, because they’ve found a real purpose in life—the happiness of always being busy. <br />  <br /> In researching this book, the authors interviewed the residents of the Japanese village with the highest percentage of 100-year-olds—one of the world’s Blue Zones. <i>Ikigai</i> reveals the secrets to their longevity and happiness: how they eat, how they move, how they work, how they foster collaboration and community, and—their best-kept secret—how they find the <i>ikigai</i> that brings satisfaction to their lives. And it provides practical tools to help you discover your own <i>ikigai.</i> Because who doesn’t want to find happiness in every day?]]></description>
										<content:encoded><![CDATA[<div class="wpbooklist-page-content">DO NOT DELETE</div>
]]></content:encoded>
					
					<wfw:commentRss>https://alexvelasquez.com/ikigai-the-japanese-secret-to-a-long-and-happy-life-post/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Rise and Grind: Outperform, Outwork, and Outhustle Your Way to a More Successful and Rewarding Life</title>
		<link>https://alexvelasquez.com/rise-and-grind-outperform-outwork-and-outhustle-your-way-to-a-more-successful-and-rewarding-life-post/</link>
					<comments>https://alexvelasquez.com/rise-and-grind-outperform-outwork-and-outhustle-your-way-to-a-more-successful-and-rewarding-life-post/#respond</comments>
		
		<dc:creator><![CDATA[alexv53]]></dc:creator>
		<pubDate>Tue, 18 Sep 2018 17:27:40 +0000</pubDate>
				<category><![CDATA[WPBookList Book Post]]></category>
		<guid isPermaLink="false">http://alexvelasquez.com/rise-and-grind-outperform-outwork-and-outhustle-your-way-to-a-more-successful-and-rewarding-life-post/</guid>

					<description><![CDATA[<b><b><i>New York Times</i> bestselling author of <i>The Power of Broke </i>and "Shark" on ABC's hit show <i>Shark Tank</i> explores how grit, persistence, and good old-fashioned hard work are the backbone of every successful business and individual, and inspires readers to <i>Rise &#038; Grind</i> their way the top.</b></b><br><br>Daymond John knows what it means to push yourself hard--and he also knows how spectacularly a killer work ethic can pay off. As a young man, he founded a modest line of clothing on a $40 budget by hand-sewing hats between his shifts at Red Lobster. Today, his brand FUBU has over $6 billion in sales. <br><br>Convenient though it might be to believe that you can shortcut your way to the top, says John, the truth is that if you want to get and stay ahead, you need to put in the work. You need to out-think, out-hustle, and out-perform everyone around you. You've got to <i>rise and grind</i> every day. <br><br>In the anticipated follow-up to the bestselling <i>The Power of Broke</i>, Daymond takes an up close look at the hard-charging routines and winning secrets of individuals who have <i>risen</i> to the challenges in their lives and <i>grinded </i>their way to the very tops of their fields. Along the way, he also reveals how grit and persistence both helped him overcome the obstacles he has faced in life and ultimately fueled his success.]]></description>
										<content:encoded><![CDATA[<div class="wpbooklist-page-content">DO NOT DELETE</div>
]]></content:encoded>
					
					<wfw:commentRss>https://alexvelasquez.com/rise-and-grind-outperform-outwork-and-outhustle-your-way-to-a-more-successful-and-rewarding-life-post/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
