Once In A Blue Moon

Your Website Title

Once in a Blue Moon

Discover Something New!

Status Block
Loading...
24%25dAQUARIUSWANING CRESCENTTOTAL ECLIPSE 9/7/2025
LED Style Ticker
Fast Car by Tracy Chapman: Guitar Chords and Lyrics - body { margin: 0; font-family: sans-serif; } .top-button-row, .bottom-button-container { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; padding: 15px; } .styled-button { padding: 10px 20px; font-size: 16px; cursor: pointer; background-color: #333; color: #fff; border: 2px solid #fff; border-radius: 4px; text-align: center; transition: background-color 0.2s ease, border 0.2s ease; user-select: none; } .styled-button:hover { background-color: #444; } .editable-button { display: inline-flex; align-items: center; justify-content: center; background-color: #333; color: #fff; border: 2px solid #fff; border-radius: 4px; padding: 10px 20px; font-size: 16px; text-align: center; min-width: 80px; user-select: none; outline: none; } .editable-button:focus { background-color: #444; } .lyrics-container { column-gap: 40px; max-width: 100%; padding: 20px; } .lyrics { white-space: pre-wrap; font-family: monospace; column-count: 1; } .two-columns .lyrics { column-count: 2; } @media (max-width: 768px) { .two-columns .lyrics { column-count: 1; } } #printPreviewContainer { display: none; } #printPreview { white-space: pre-wrap; font-family: monospace; column-count: 2; column-gap: 40px; line-height: 1.4; } @media print { body * { visibility: hidden !important; height: 0 !important; overflow: hidden !important; } #printPreviewContainer, #printPreviewContainer * { visibility: visible !important; height: auto !important; overflow: visible !important; } #printPreviewContainer { position: absolute; top: 0; left: 0; width: 100%; padding: 20px; background-color: white; box-sizing: border-box; page-break-inside: avoid; } #printPreview { text-align: left; } } Loading... Columns Loading... Tracy Chapman - Fast Car Capo Fret 2 [C] [G] [Am] [Em] You got a fast car [C] [G] [Am] [Em] I want a ticket to anywhere [C] [G] [Am] [Em] Maybe we make a deal [C] [G] [Am] [G] Maybe together we can get somewhere [C] [G] [Am] [Em] Anyplace is better [C] [G] [Am] [Em] Starting from zero got nothing to lose [C] [G] [Am] [Em] Maybe we'll make something [C] [G] [Am] [G] Me, myself I've got nothing to prove [C] [G] [Am] [Em] You got a fast car [C] [G] [Am] [Em] I got a plan to get us out of here [C] [G] [Am] [Em] I've been working at the convenience store [C] [G] [Am] [G] Managed to save just a little bit of money [C] [G] [Am] [Em] Won't have to drive too far [C] [G] [Am] [Em] Just cross the border and into the city [C] [G] [Am] [Em] You and I can both get jobs [C] [G] [Am] [G] And finally see what it means to be living [C] [G] [Am] [Em] See my old man's got a problem [C] [G] [Am] [Em] He live with the bottle, that's the way it is [C] [G] [Am] [Em] He says his body's too old for working [C] [G] [Am] [Em] His body's too young to look like his [C] [G] [Am] [Em] My momma went off and left him [C] [G] [Am] [Em] She wanted more from life than he could give [C] [G] [Am] [Em] I said, "Somebody's got to take care of him" [C] [G] [Am] [G] So I quit school and that's what I did [C] [G] [Am] [Em] You got a fast car [C] [G] [Am] [Em] Is it fast enough so we can fly away [C] [G] [Am] [Em] We gotta make a decision [C] [G] [Am] [G] Leave tonight or live and die this way [C] [G] [Am] [Em] You got a fast car [C] [G] [Am] [Em] We go cruising, entertain ourselves [C] [G] [Am] [Em] You still ain't got a job [C] [G] [Am] [G] And I work in a market as a checkout girl [C] [G] [Am] [Em] I know things will get better [C] [G] [Am] [Em] You'll find work and I'll get promoted [C] [G] [Am] [Em] We'll move out of the shelter [C] [G] [Am] [G] Buy a bigger house and live in the suburbs [C] [G] [Am] [Em] You got a fast car [C] [G] [Am] [Em] I got a job that pays all our bills [C] [G] [Am] [Em] You stay out drinking late at the bar [C] [G] [Am] [G] See more of your friends than you do of your kids [C] [G] [Am] [Em] I'd always hoped for better [C] [G] [Am] [Em] Thought maybe together you and me would find it [C] [G] [Am] [Em] I got no plans, I ain't going nowhere [C] [G] [Am] [G] So take your fast car and keep on driving [C] [G] [Am] [Em] You got a fast car [C] [G] [Am] [Em] You gotta make a decision [C] [G] [Am] [Em] Leave tonight or live and die this way Random Print 11pt let player; let activeTrack = null; const youtubeButton = document.getElementById('youtubeToggleButton'); const karaokeButton = document.getElementById('karaokeToggleButton'); const tracks = { audio: 'IJ8i49EqgYI', karaoke: 'Wm6-X6yPHVI' }; function onYouTubeIframeAPIReady() { player = new YT.Player('youtube-player', { height: '0', width: '0', videoId: tracks.audio, playerVars: { autoplay: 0, controls: 0, playsinline: 1 }, events: { 'onReady': () => { youtubeButton.textContent = "Audio"; karaokeButton.textContent = "Karaoke"; } } }); } function togglePlayback(trackType, buttonId) { const isSameTrack = activeTrack === trackType; const isPlaying = player.getPlayerState() === YT.PlayerState.PLAYING; if (!isSameTrack) { activeTrack = trackType; player.loadVideoById(tracks[trackType]); youtubeButton.textContent = "Audio"; karaokeButton.textContent = "Karaoke"; document.getElementById(buttonId).textContent = "Stop"; } else { if (isPlaying) { player.pauseVideo(); document.getElementById(buttonId).textContent = trackType === 'audio' ? "Audio" : "Karaoke"; } else { player.playVideo(); document.getElementById(buttonId).textContent = "Stop"; } } } youtubeButton.onclick = () => togglePlayback('audio', 'youtubeToggleButton'); karaokeButton.onclick = () => togglePlayback('karaoke', 'karaokeToggleButton'); document.getElementById('toggleButton').onclick = () => { document.getElementById('lyricsContainer').classList.toggle('two-columns'); }; function printLyrics() { const fontSizeText = document.getElementById('fontSizeEditor').innerText.trim(); const fontSize = fontSizeText.match(/^\d+(pt|px|em|rem)$/i) ? fontSizeText : '11pt'; const lyricsHTML = document.getElementById('lyrics').innerHTML; const preview = document.getElementById('printPreviewContainer'); const previewContent = document.getElementById('printPreview'); previewContent.innerHTML = `${lyricsHTML}`; previewContent.style.fontSize = fontSize; preview.style.display = 'block'; setTimeout(() => { window.print(); preview.style.display = 'none'; }, 100); } Scroll #adjustableWidget { position: fixed; bottom: 5px; left: 50%; transform: translateX(-50%); background-color: #f0f0f0; padding: 5px 8px; border: 1px solid #ccc; border-radius: 4px; z-index: 99999; font-size: 12px; display: flex; justify-content: center; align-items: center; gap: 5px; } #adjustInput { width: 60px; padding: 2px; font-size: 12px; } #adjustNumber { width: 40px; padding: 2px; font-size: 12px; } #startScrollButton { padding: 4px 8px; background-color: #007bff; color: #fff; border: none; border-radius: 4px; cursor: pointer; font-size: 12px; } document.addEventListener("DOMContentLoaded", () => { let isScrolling = false; let animationFrameId = null; let scrollRemainder = 0; const adjustInput = document.getElementById("adjustInput"); const adjustNumber = document.getElementById("adjustNumber"); const startScrollButton = document.getElementById("startScrollButton"); const SPEED_OFFSET = 10; const SPEED_FACTOR = 0.1; function getAdjustedSpeed(rawValue) { return (parseInt(rawValue) + SPEED_OFFSET) * SPEED_FACTOR; } // Initialize values adjustInput.value = 50; adjustNumber.value = 50; let scrollSpeed = getAdjustedSpeed(50); // Sync input changes function updateSpeedFromInput(value) { adjustInput.value = value; adjustNumber.value = value; scrollSpeed = getAdjustedSpeed(value); } adjustInput.addEventListener("input", (e) => updateSpeedFromInput(e.target.value)); adjustNumber.addEventListener("input", (e) => updateSpeedFromInput(e.target.value)); startScrollButton.addEventListener("click", () => { if (!isScrolling) { isScrolling = true; startScrollButton.textContent = "Stop"; scrollStep(); } else { stopScroll(); startScrollButton.textContent = "Scroll"; } }); function scrollStep() { if (!isScrolling) return; const bottomReached = (window.innerHeight + window.scrollY) >= document.body.offsetHeight; if (bottomReached) { stopScroll(); startScrollButton.textContent = "Scroll"; return; } scrollRemainder += scrollSpeed; let pixelsToScroll = Math.floor(scrollRemainder); scrollRemainder -= pixelsToScroll; if (pixelsToScroll === 0 && scrollSpeed > 0) { pixelsToScroll = 1; } window.scrollBy(0, pixelsToScroll); animationFrameId = requestAnimationFrame(scrollStep); } function stopScroll() { isScrolling = false; cancelAnimationFrame(animationFrameId); scrollRemainder = 0; } window.addEventListener("scroll", () => { if ((window.innerHeight + window.scrollY) >= document.body.offsetHeight) { stopScroll(); startScrollButton.textContent = "Scroll"; } }); });
Interactive Badge Overlay
Badge Image
🔄

🍵 Happy National Tea Day! 🌿

April 23, 2025

Article of the Day

Don’t Count Your Chickens Before They’re Hatched

Introduction The English language is rich with proverbs and sayings, many of which are not only linguistically intriguing but also…
Return Button
Back
Visit Once in a Blue Moon
📓 Read
Go Home Button
Home
Green Button
Contact
Help Button
Help
Refresh Button
Refresh
Animated UFO
Color-changing Butterfly
🦋
Random Button 🎲
Flash Card App
Last Updated Button
Random Sentence Reader
Speed Reading
Login
Moon Emoji Move
🌕
Scroll to Top Button
Memory App
📡
Memory App 🃏
Memory App
📋
Parachute Animation
Magic Button Effects
Click to Add Circles
Speed Reader
🚀

In The Science of Self-Discipline: The Willpower, Mental Toughness, and Self-Control to Resist Temptation and Achieve Your Goals, Peter Hollins explores the psychological and behavioral strategies needed to master self-discipline. With a mix of scientific research, practical advice, and actionable techniques, Hollins provides readers with the tools to resist temptation, overcome procrastination, and achieve their goals. Here are seven key lessons from this insightful book:


1. Self-Discipline is Essential for Success

Hollins begins by emphasizing that self-discipline is the foundation of all achievement. Talent, intelligence, and good intentions are not enough without the ability to consistently take action and stay focused. Self-discipline bridges the gap between ambition and accomplishment, making it the cornerstone of personal and professional success.


2. Understanding Willpower

One of the book’s core insights is that willpower is a finite resource. Hollins explains that each decision we make depletes our mental energy, leaving us more susceptible to temptation and poor choices as the day progresses. By understanding the limits of willpower, readers can learn to manage their energy wisely—prioritizing important tasks when their mental reserves are strongest and creating systems to reduce decision fatigue.


3. The Importance of Habits

Hollins emphasizes that habits are the building blocks of self-discipline. By establishing positive habits, individuals can automate their behaviors, reducing the need to rely on willpower. For example, if you make exercise a habit, you no longer need to decide whether or not to work out—it becomes a part of your daily routine. The key is to focus on consistency and small, incremental changes that lead to lasting transformation.


4. Setting Clear Goals

One of the biggest barriers to self-discipline is a lack of direction. Hollins stresses the importance of setting clear, specific goals that provide a roadmap for success. Instead of vague aspirations like “get fit” or “save money,” well-defined goals like “run three times a week” or “save $500 per month” give clarity and structure. Specific goals are not only easier to follow but also more motivating, as progress becomes measurable.


5. The 10-10-10 Rule

Hollins introduces the 10-10-10 rule as a practical tool for decision-making. When faced with a temptation or dilemma, consider how your choice will affect you in:

  • 10 minutes: How will this decision impact you immediately?
  • 10 months: What are the medium-term consequences?
  • 10 years: How will this choice shape your long-term future?

This approach encourages individuals to think beyond instant gratification, fostering better decisions aligned with their long-term goals.


6. Overcoming Temptation

Temptation is one of the biggest challenges to self-discipline, and Hollins provides actionable strategies to counter it. These include:

  • Identifying triggers: Understanding what situations, emotions, or environments lead to impulsive behavior.
  • Changing your environment: Minimizing distractions and removing temptations from your surroundings. For instance, keeping unhealthy snacks out of reach or turning off notifications while working.
  • Using replacement behaviors: Substituting harmful habits with productive ones, like going for a walk instead of scrolling through social media.

By proactively managing temptations, individuals can stay focused and make progress toward their goals.


7. Mental Toughness

Self-discipline requires more than willpower—it demands mental toughness. Hollins defines this as the ability to push through discomfort, resist short-term gratification, and persevere in the face of challenges. Developing mental toughness involves:

  • Embracing discomfort as a part of growth.
  • Building resilience by learning from setbacks.
  • Maintaining a long-term perspective to stay motivated during tough times.

Hollins argues that mental toughness is like a muscle—it grows stronger with consistent effort and practice.


In Conclusion

Peter Hollins’ The Science of Self-Discipline is a practical guide for anyone striving to achieve their goals and build a more disciplined life. By understanding the nature of willpower, developing positive habits, setting clear goals, and practicing mental toughness, readers can transform their approach to challenges and achieve meaningful success.

Whether you’re looking to improve your health, advance your career, or simply make better decisions, the lessons in this book provide a roadmap for turning intention into action. With Hollins’ actionable strategies, you can resist temptation, stay focused, and create lasting change in your life.


Comments

Leave a Reply

Your email address will not be published. Required fields are marked *


🟢 🔴
error:
☕