From 918ee05fde40dfd64ba4bc6d1b6fe47e6aaa2997 Mon Sep 17 00:00:00 2001 From: Priyanshu Singh Date: Sat, 11 Oct 2025 21:49:55 +0530 Subject: [PATCH 1/2] chore: remove comments and clean ContributorCard component --- .../ContributorsCard/ContributorCard.js | 177 ++++++++++++++---- src/themes/themes.js | 72 ++++++- 2 files changed, 207 insertions(+), 42 deletions(-) diff --git a/frontend/src/components/ContributorsCard/ContributorCard.js b/frontend/src/components/ContributorsCard/ContributorCard.js index 894cb5f..58ec4d9 100644 --- a/frontend/src/components/ContributorsCard/ContributorCard.js +++ b/frontend/src/components/ContributorsCard/ContributorCard.js @@ -1,35 +1,114 @@ import React, { useState, useEffect } from "react"; -import { makeStyles } from "@material-ui/core/styles"; +import { makeStyles, useTheme } from "@material-ui/core/styles"; import Card from "@material-ui/core/Card"; import CardActions from "@material-ui/core/CardActions"; import CardContent from "@material-ui/core/CardContent"; import Button from "@material-ui/core/Button"; import Typography from "@material-ui/core/Typography"; import Avatar from "@material-ui/core/Avatar"; -import {contributorsUrl} from "../Constants/urlConfig" +import {contributorsUrl} from "../Constants/urlConfig"; -const useStyles = makeStyles({ - root: { - // minWidth: 275, - maxWidth: 400, - padding: 10, - margin: 10 - }, - bullet: { - display: "inline-block", - margin: "0 2px", - transform: "scale(0.8)", +// Helper function to check if a color is a gradient or image URL +const isComplexBackground = (bg) => bg && (bg.includes('gradient') || bg.includes('url')); + + +// 3. Update makeStyles to use SELECTED_THEME colors +const useStyles = makeStyles(theme => ({ + root: { + maxWidth: 650, + padding: theme.spacing(3), // Use theme spacing for consistency (24px) + margin: theme.spacing(2), // Use theme spacing for consistency (16px) + + // MODERNIZED BACKGROUND GRADIENT + background: theme.palette.type === 'dark' + ? 'linear-gradient(135deg, #1c2128 0%, #0d1117 100%)' // Slightly adjusted dark gradient + : 'linear-gradient(135deg, #ffffff 0%, #f7f7f7 100%)', // Softer light gradient + + borderRadius: 12, // Slightly reduced border radius for a modern feel + transition: 'transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1)', + border: theme.palette.type === 'dark' ? '1px solid #30363d' : '1px solid #e1e4e8', // Added subtle light mode border + + '&:hover': { + transform: 'translateY(-6px)', // Deeper lift on hover + // MODERN SHADOW: Use a more diffused shadow for a 3D-pop effect + boxShadow: theme.palette.type === 'dark' + ? '0 15px 30px rgba(0,0,0,0.45)' + : '0 15px 30px rgba(0,0,0,0.15)', + } + }, + title: { + fontSize: '1.75rem', // Larger, more impactful title + fontWeight: 700, // Bolder font weight + marginBottom: theme.spacing(1), // Reduced margin below for tighter grouping + // SLIGHTLY BRIGHTER TEXT FOR DARK MODE CONTRAST + color: theme.palette.type === 'dark' ? '#f0f6fc' : theme.palette.text.primary, + textAlign: 'center' + }, + subtitle: { + fontSize: '1rem', // Standard font size + // MORE SUBDUED TEXT FOR LIGHT MODE + color: theme.palette.type === 'dark' ? theme.palette.text.secondary : '#6a737d', + textAlign: 'center', + marginBottom: theme.spacing(4), // Increased margin below subtitle + }, + avatarContainer: { + display: 'flex', + flexWrap: 'wrap', + justifyContent: 'center', + gap: theme.spacing(1.5), // Tighter gap between avatars + marginTop: theme.spacing(2), + marginBottom: theme.spacing(3), }, - title: { - fontSize: 14, + avatar: { + width: 50, + height: 50, + borderRadius: '50%', // Explicitly ensure circular + border: theme.palette.type === 'dark' ? '2px solid #2ea043' : '2px solid #2196F3', // Subtle color ring + transition: 'transform 0.2s ease, box-shadow 0.2s ease', + '&:hover': { + transform: 'scale(1.18)', // Slightly larger scale up + boxShadow: '0 6px 12px rgba(0,0,0,0.3)', // Sharper shadow on individual hover + zIndex: 1, + } }, - pos: { - marginBottom: 12, + button: { + borderRadius: 25, // More rounded, 'pill' shape + padding: '10px 30px', // More vertical padding + textTransform: 'none', + fontWeight: 600, + color: '#ffffff', + + // UPDATED DARK MODE BUTTON TO SOFTER GREEN (More like GitHub actions) + background: theme.palette.type === 'dark' + ? 'linear-gradient(45deg, #2ea043 30%, #34bf49 90%)' // Green gradient + : 'linear-gradient(45deg, #1877f2 30%, #21a9f3 90%)', // Facebook-blue gradient for light mode + + // MODERN SHADOW FOR BUTTON + boxShadow: theme.palette.type === 'dark' + ? '0 6px 10px 0 rgba(46, 160, 67, 0.4)' + : '0 6px 10px 0 rgba(33, 150, 243, 0.4)', + + '&:hover': { + // Slightly change gradient direction on hover + background: theme.palette.type === 'dark' + ? 'linear-gradient(45deg, #34bf49 30%, #2ea043 90%)' + : 'linear-gradient(45deg, #21a9f3 30%, #1877f2 90%)', + boxShadow: theme.palette.type === 'dark' + ? '0 4px 8px 0 rgba(46, 160, 67, 0.6)' + : '0 4px 8px 0 rgba(33, 150, 243, 0.6)', + } }, -}); + cardActions: { + justifyContent: 'center', + padding: theme.spacing(2, 0), // Use theme spacing + } +})); const ContributorsCard = () => { const [listOfContributors,setListOfContributors] = useState([]); + const theme = useTheme(); + + const classes = useStyles(); useEffect(()=>{ fetchContributors(); @@ -43,52 +122,74 @@ const ContributorsCard = () => { throw new Error('Failed to fetch contributors'); } const data = await res.json(); - setListOfContributors(data); + if (Array.isArray(data)) { + setListOfContributors(data); + } else { + console.error('Fetched data is not an array:', data); + setListOfContributors([]); + } } catch (error) { console.error('Error fetching contributors:', error); + setListOfContributors([]); } }; - const classes = useStyles(); - return (
- A Special Thanks To All The Contributors! - - We are grateful{" "} - + + A Special Thanks To All The Contributors!{" "} + ❤️ - - To our {listOfContributors.length} contributors for helping in -
- bringing this project to life + + We are grateful to our {listOfContributors.length} amazing contributors + for bringing this project to life -
- +
{ - listOfContributors.slice(0,Math.min(listOfContributors.length,7)).map((contributor)=>{ + listOfContributors.slice(0, Math.min(listOfContributors.length, 8)).map((contributor) => { return( - + ) }) }
- - - + + + @@ -96,4 +197,4 @@ const ContributorsCard = () => { ); }; -export default ContributorsCard; +export default ContributorsCard; \ No newline at end of file diff --git a/src/themes/themes.js b/src/themes/themes.js index c0c817b..2ba297e 100644 --- a/src/themes/themes.js +++ b/src/themes/themes.js @@ -263,8 +263,72 @@ const themes = { quote_color: "#94ff29", author_color: "#3aff29", bg_color: "url('https://cdn.wallpapersafari.com/90/94/AmZe8I.jpg') center" - } - }; - + }, + + // =================================== + // 10 NEW THEMES ADDED BELOW + // =================================== + + // 1. Popular editor theme + "catppuccin-mocha": { + quote_color: "#cba6f7", // Mauve + author_color: "#a6e3a1", // Green + bg_color: "#1e1e2e", // Base + }, + // 2. Another popular editor theme + "rose-pine": { + quote_color: "#e0d1f7", // Rose Pine Fog + author_color: "#9ccfd8", // Rose Pine Aqua + bg_color: "#191724", // Rose Pine Base + }, + // 3. Light mode variant + "ayu-light": { + quote_color: "#86b300", // Ayu Light 'Green' + author_color: "#5c6773", // Ayu Light 'Text' + bg_color: "#f8f8f8", // Ayu Light 'Background' + }, + // 4. High-contrast, warm colors + "fire-opal": { + quote_color: "#ff6d00", // Deep Orange/Fire Opal + author_color: "#00bfa5", // Teal Accent + bg_color: "#1c1c1c", // Dark Gray + }, + // 5. Classic Dark Terminal look + "hacker-green": { + quote_color: "#00ff41", // Bright Neon Green + author_color: "#10c634", // Darker Green + bg_color: "#000000", + }, + // 6. Soft Lavender gradient + "lavender-dawn": { + quote_color: "#4a4e69", // Dark Text + author_color: "#9a8c98", // Muted Author + bg_color: "linear-gradient(to top right, #f2e9e4, #c9ada7)", + }, + // 7. Azure Blue/Silver + "azure": { + quote_color: "#3498db", // Bright Azure Blue + author_color: "#ecf0f1", // Silver + bg_color: "#2c3e50", // Midnight Blue + }, + // 8. Elegant sepia-toned light theme + "old-book": { + quote_color: "#5b4a3a", // Dark Brown Text + author_color: "#8a735a", // Sepia Text + bg_color: "#fff8e1", // Off-White/Cream + }, + // 9. Retro-futuristic dark neon + "neon-blaze": { + quote_color: "#ff0099", // Neon Pink + author_color: "#00ffff", // Neon Cyan + bg_color: "#0a0a0a", + }, + // 10. Earthy and muted + "forest-path": { + quote_color: "#4a7c59", // Deep Forest Green + author_color: "#a8dadc", // Light Blue/Sky + bg_color: "#373b3e", // Slate Gray + }, +}; -module.exports=themes; +module.exports = themes; \ No newline at end of file From f8aff6f77cb4b643b91e54035c6850a634eea190 Mon Sep 17 00:00:00 2001 From: Priyanshu Singh Date: Sun, 12 Oct 2025 09:21:59 +0530 Subject: [PATCH 2/2] chore: update custom quotes category.json --- customQuotes/category.json | 3146 +++++++++++++++++++++++++++++++----- 1 file changed, 2712 insertions(+), 434 deletions(-) diff --git a/customQuotes/category.json b/customQuotes/category.json index 215d566..963129e 100644 --- a/customQuotes/category.json +++ b/customQuotes/category.json @@ -1,840 +1,3118 @@ { - "general":[ + "general": [ { - "quote":"Spread love 💖 everywhere you go. Let no one ever come to you without leaving happier.", - "author":"Mother Teresa" + "quote": "Spread love 💖 everywhere you go. Let no one ever come to you without leaving happier.", + "author": "Mother Teresa" }, { - "quote":"When you reach the end of your rope 🪢 , tie a knot in it and hang on.", - "author":"Franklin D. Roosevelt" + "quote": "When you reach the end of your rope 🪢 , tie a knot in it and hang on.", + "author": "Franklin D. Roosevelt" }, { - "quote":"Always remember that you are absolutely unique 😇. Just like everyone else.", - "author":"Margaret Mead" + "quote": "Kind words can be short and easy to speak, but their echoes are truly endless.", + "author": "Mother Teresa" }, { - "quote":"The future belongs to those who believe in the beauty of their dreams. 😊", - "author":"Eleanor Roosevelt" + "quote": "Act as if what you do makes a difference. It does.", + "author": "William James" }, { - "quote":"Tell me and I forget. Teach me and I remember. Involve me and I learn.", - "author":"Benjamin Franklin" + "quote": "What you get by achieving your goals is not as important as what you become by achieving your goals.", + "author": "Zig Ziglar" }, { - "quote":"The best and most beautiful things in the world cannot be seen or even touched - they must be felt with the heart 💓.", - "author":"Helen Keller" + "quote": "Happiness depends upon ourselves.", + "author": "Aristotle" }, { - "quote":"It is during our darkest 🌑 moments that we must focus to see the light ☀️.", - "author":"Aristotle" + "quote": "Do what you can, with what you have, where you are.", + "author": "Theodore Roosevelt" }, { - "quote":"Whoever is happy 😊 will make others happy too.", - "author":"Anne Frank" + "quote": "The only journey is the one within.", + "author": "Rainer Maria Rilke" }, { - "quote":"Do not go where the path may lead, go instead where there is no path and leave a trail ", - "author":"Ralph Waldo Emerson" + "quote": "Well done is better than well said.", + "author": "Benjamin Franklin" }, { - "quote":"You miss 100% of the shots you don't take.", - "author":"Wayne Gretzky" + "quote": "Keep your face always toward the sunshine—and shadows will fall behind you.", + "author": "Walt Whitman" }, { - "quote":"I have learned over the years that when one's mind 🤯 is made up, this diminishes fear.", - "author":"Rosa Parks" + "quote": "Everything you can imagine is real.", + "author": "Pablo Picasso" }, { - "quote":"I alone cannot change the world, but I can cast a stone across the water to create many ripples.", - "author":"Mother Teresa" + "quote": "What lies behind us and what lies before us are tiny matters compared to what lies within us.", + "author": "Ralph Waldo Emerson" }, { - "quote":"Nothing is impossible, the word itself says, ‘I'm possible!'", - "author":"Audrey Hepburn" + "quote": "We are what we repeatedly do. Excellence, then, is not an act, but a habit.", + "author": "Aristotle" }, { - "quote":"Whatever the mind of man can conceive and believe, it can achieve.", - "author":"Napoleon Hill" + "quote": "Turn your wounds into wisdom.", + "author": "Oprah Winfrey" }, { - "quote":"If you look at what you have in life, you'll always have more. If you look at what you don't have in life, you'll never have enough.", - "author":"Oprah Winfrey" + "quote": "Wherever you go, go with all your heart.", + "author": "Confucius" }, { - "quote":"I would rather die of passion than of boredom.", - "author":"Vincent van Gogh" + "quote": "If opportunity doesn’t knock, build a door.", + "author": "Milton Berle" }, { - "quote":"I attribute my success to this: I never gave or took any excuse.", - "author":"Florence Nightingale" + "quote": "You become what you believe.", + "author": "Oprah Winfrey" }, { - "quote":"If you're offered a seat on a rocket ship, don't ask what seat! Just get on.", - "author":"Sheryl Sandberg" + "quote": "Keep some room in your heart for the unimaginable.", + "author": "Mary Oliver" }, { - "quote":"I didn't fail the test. I just found 100 ways to do it wrong.", - "author":"Benjamin Franklin" + "quote": "We don’t see things as they are, we see them as we are.", + "author": "Anaïs Nin" }, { - "quote":"Too many of us are not living our dreams because we are living our fears.", - "author":"Les Brown" + "quote": "Hope is a thing with feathers.", + "author": "Emily Dickinson" }, { - "quote":"When everything seems to be going against you, remember that the airplane takes off against the wind, not with it.", - "author":"Henry Ford" + "quote": "What we think, we become.", + "author": "Buddha" }, { - "quote":"an Error Doesn't Become A Mistake Until You Refuse to Correct It.", - "author":"John F. Kennedy" + "quote": "Bloom where you are planted.", + "author": "Attributed proverb" + }, + { + "quote": "To live is the rarest thing in the world. Most people exist, that is all.", + "author": "Oscar Wilde" + }, + { + "quote": "Light tomorrow with today.", + "author": "Elizabeth Barrett Browning" + }, + { + "quote": "Stars can’t shine without darkness.", + "author": "Unknown" + }, + { + "quote": "Fortune favors the bold.", + "author": "Latin proverb" + }, + { + "quote": "Dream big and dare to fail.", + "author": "Norman Vaughan" + }, + { + "quote": "Do small things with great love.", + "author": "Mother Teresa" + }, + { + "quote": "A year from now you may wish you had started today.", + "author": "Karen Lamb" + }, + { + "quote": "The soul becomes dyed with the color of its thoughts.", + "author": "Marcus Aurelius" + }, + { + "quote": "The best way out is always through.", + "author": "Robert Frost" + }, + { + "quote": "Every moment is a fresh beginning.", + "author": "T.S. Eliot" + }, + { + "quote": "If you want to lift yourself up, lift up someone else.", + "author": "Booker T. Washington" + }, + { + "quote": "To be yourself in a world that is constantly trying to make you something else is the greatest accomplishment.", + "author": "Ralph Waldo Emerson" + }, + { + "quote": "There is nothing impossible to they who will try.", + "author": "Alexander the Great" + }, + { + "quote": "We rise by lifting others.", + "author": "Robert Ingersoll" + }, + { + "quote": "To handle yourself, use your head; to handle others, use your heart.", + "author": "Eleanor Roosevelt" + }, + { + "quote": "No one ever made a difference by being like everyone else.", + "author": "P.T. Barnum" + }, + { + "quote": "Life is short, and it is up to you to make it sweet.", + "author": "Sarah Louise Delany" + }, + { + "quote": "Joy is not in things; it is in us.", + "author": "Richard Wagner" + }, + { + "quote": "The power of imagination makes us infinite.", + "author": "John Muir" + }, + { + "quote": "Nothing will work unless you do.", + "author": "Maya Angelou" + }, + { + "quote": "If I cannot do great things, I can do small things in a great way.", + "author": "Martin Luther King Jr." + }, + { + "quote": "Believe you can and you’re halfway there.", + "author": "Theodore Roosevelt" + }, + { + "quote": "Keep going. Be all in.", + "author": "Bryan Hutchinson" + }, + { + "quote": "With the new day comes new strength and new thoughts.", + "author": "Eleanor Roosevelt" + }, + { + "quote": "Every strike brings me closer to the next home run.", + "author": "Babe Ruth" + }, + { + "quote": "It always seems impossible until it’s done.", + "author": "Nelson Mandela" + }, + { + "quote": "You must do the thing you think you cannot do.", + "author": "Eleanor Roosevelt" + }, + { + "quote": "No pressure, no diamonds.", + "author": "Thomas Carlyle" + }, + { + "quote": "If you can dream it, you can do it.", + "author": "Walt Disney" + }, + { + "quote": "Attitude is a little thing that makes a big difference.", + "author": "Winston Churchill" + }, + { + "quote": "The most wasted of days is one without laughter.", + "author": "E.E. Cummings" + }, + { + "quote": "Make each day your masterpiece.", + "author": "John Wooden" + }, + { + "quote": "You are enough just as you are.", + "author": "Meghan Markle" + }, + { + "quote": "If you want to be happy, be.", + "author": "Leo Tolstoy" + }, + { + "quote": "Happiness is not by chance, but by choice.", + "author": "Jim Rohn" + }, + { + "quote": "Turn your face to the sun and the shadows fall behind you.", + "author": "Maori proverb" + }, + { + "quote": "Happiness is only real when shared.", + "author": "Christopher McCandless" + }, + { + "quote": "The purpose of our lives is to be happy.", + "author": "Dalai Lama" + }, + { + "quote": "Do not wait for leaders; do it alone, person to person.", + "author": "Mother Teresa" + }, + { + "quote": "Gratitude turns what we have into enough.", + "author": "Anonymous proverb" + }, + { + "quote": "Be faithful to that which exists within yourself.", + "author": "André Gide" + }, + { + "quote": "Live the questions now.", + "author": "Rainer Maria Rilke" + }, + { + "quote": "The simple act of caring is heroic.", + "author": "Edward Albert" + }, + { + "quote": "Everything has beauty, but not everyone sees it.", + "author": "Confucius" + }, + { + "quote": "Choose to be optimistic, it feels better.", + "author": "Dalai Lama" + }, + { + "quote": "There are always flowers for those who want to see them.", + "author": "Henri Matisse" + }, + { + "quote": "Faith is taking the first step even when you don’t see the whole staircase.", + "author": "Martin Luther King Jr." + }, + { + "quote": "Be the change that you wish to see in the world.", + "author": "Commonly attributed to Gandhi" + }, + { + "quote": "Start where you are. Use what you have. Do what you can.", + "author": "Arthur Ashe" + }, + { + "quote": "Let your life speak.", + "author": "Parker J. Palmer" + }, + { + "quote": "Little by little, one travels far.", + "author": "J.R.R. Tolkien" + }, + { + "quote": "Your big opportunity may be right where you are now.", + "author": "Napoleon Hill" + }, + { + "quote": "No one is you, and that is your power.", + "author": "Dave Grohl" + }, + { + "quote": "What you do today can improve all your tomorrows.", + "author": "Ralph Marston" + }, + { + "quote": "The magic is in you.", + "author": "Anonymous" + }, + { + "quote": "Courage is grace under pressure.", + "author": "Ernest Hemingway" + }, + { + "quote": "Joy is the simplest form of gratitude.", + "author": "Karl Barth" + }, + { + "quote": "The best dreams happen when you’re awake.", + "author": "Cherie Gilderbloom" + }, + { + "quote": "There is more to life than increasing its speed.", + "author": "Mahatma Gandhi" + }, + { + "quote": "Great things are done by a series of small things brought together.", + "author": "Vincent van Gogh" + }, + { + "quote": "To affect the quality of the day, that is the highest of arts.", + "author": "Henry David Thoreau" + }, + { + "quote": "Never regret anything that made you smile.", + "author": "Mark Twain" + }, + { + "quote": "Joy is contagious.", + "author": "Mother Teresa" + }, + { + "quote": "Begin anywhere.", + "author": "John Cage" + }, + { + "quote": "Where there is love there is life.", + "author": "Mahatma Gandhi" + }, + { + "quote": "You are what you do, not what you say you’ll do.", + "author": "Carl Jung" + }, + { + "quote": "A warm smile is the universal language of kindness.", + "author": "William Arthur Ward" + }, + { + "quote": "In a gentle way, you can shake the world.", + "author": "Mahatma Gandhi" + }, + { + "quote": "None of us is as smart as all of us.", + "author": "Ken Blanchard" + }, + { + "quote": "What we do now echoes in eternity.", + "author": "Marcus Aurelius" + }, + { + "quote": "The future starts today, not tomorrow.", + "author": "John Paul II" + }, + { + "quote": "Your life is your message to the world. Make sure it’s inspiring.", + "author": "Anonymous" + }, + { + "quote": "Wherever life plants you, bloom with grace.", + "author": "French proverb" + }, + { + "quote": "There are no ordinary moments.", + "author": "Dan Millman" + }, + { + "quote": "Kindness is a language which the deaf can hear and the blind can see.", + "author": "Mark Twain" + }, + { + "quote": "Stars shine brightest in the darkest nights.", + "author": "Unknown" + }, + { + "quote": "The privilege of a lifetime is to become who you truly are.", + "author": "Carl Jung" + }, + { + "quote": "Happiness is a warm puppy.", + "author": "Charles M. Schulz" + }, + { + "quote": "To love and be loved is to feel the sun from both sides.", + "author": "David Viscott" + }, + { + "quote": "Live life as though nobody is watching, and express yourself as though everyone is listening.", + "author": "Nelson Mandela" + }, + { + "quote": "Love all, trust a few, do wrong to none.", + "author": "William Shakespeare" + }, + { + "quote": "You can if you think you can.", + "author": "George Reeves (attributed)" + }, + { + "quote": "The sun is new each day.", + "author": "Heraclitus" + }, + { + "quote": "The world is full of magical things patiently waiting for our wits to grow sharper.", + "author": "Bertrand Russell" + }, + { + "quote": "Everything is figureoutable.", + "author": "Marie Forleo" + }, + { + "quote": "Life is a gift, and it offers us the privilege, opportunity, and responsibility to give something back.", + "author": "Tony Robbins" + }, + { + "quote": "Learning never exhausts the mind.", + "author": "Leonardo da Vinci" + }, + { + "quote": "Live for the present, dream of the future, learn from the past.", + "author": "Unknown" + }, + { + "quote": "Create the highest, grandest vision possible for your life.", + "author": "Oprah Winfrey" + }, + { + "quote": "Simplicity is the ultimate sophistication.", + "author": "Leonardo da Vinci" + }, + { + "quote": "The good life is one inspired by love and guided by knowledge.", + "author": "Bertrand Russell" + }, + { + "quote": "We are the music makers, and we are the dreamers of dreams.", + "author": "Arthur O’Shaughnessy" + }, + { + "quote": "Life changes very quickly, in a very positive way, if you let it.", + "author": "Lindsey Vonn" + }, + { + "quote": "A champion is defined not by their wins but by how they can recover when they fall.", + "author": "Serena Williams" + }, + { + "quote": "You are the artist of your life. Don’t give the paintbrush to anyone else.", + "author": "Unknown" + }, + { + "quote": "The only thing that can grow is the thing you give energy to.", + "author": "Ralph Waldo Emerson" + }, + { + "quote": "Live simply so that others may simply live.", + "author": "Mother Teresa" + }, + { + "quote": "The earth laughs in flowers.", + "author": "Ralph Waldo Emerson" + }, + { + "quote": "If light is in your heart, you will find your way home.", + "author": "Rumi" + }, + { + "quote": "You miss 100% of the naps you don’t take.", + "author": "Playful variant" + }, + { + "quote": "Love recognizes no barriers.", + "author": "Maya Angelou" + }, + { + "quote": "To love another person is to see the face of God.", + "author": "Victor Hugo" + }, + { + "quote": "We make a living by what we get. We make a life by what we give.", + "author": "Attributed to Winston Churchill" + }, + { + "quote": "Peace begins with a smile.", + "author": "Mother Teresa" + }, + { + "quote": "Let your light shine.", + "author": "Matthew 5:16 (paraphrase)" + }, + { + "quote": "Keep some room for whimsy.", + "author": "Anonymous" + }, + { + "quote": "Life is from the inside out. When you shift on the inside, life shifts on the outside.", + "author": "Kamal Ravikant" + }, + { + "quote": "Where there is love, there is joy.", + "author": "Mother Teresa" + }, + { + "quote": "Every day is a second chance.", + "author": "Anonymous" + }, + { + "quote": "The greatest wealth is to live content with little.", + "author": "Plato" + }, + { + "quote": "The true secret of happiness lies in taking a genuine interest in all the details of daily life.", + "author": "William Morris" + }, + { + "quote": "Joy is a net of love by which you can catch souls.", + "author": "Mother Teresa" + }, + { + "quote": "Today is your opportunity to build the tomorrow you want.", + "author": "Ken Poirot" + }, + { + "quote": "Happiness is the art of making a bouquet of those flowers within reach.", + "author": "Anonymous" + }, + { + "quote": "The more light you allow within you, the brighter the world you live in will be.", + "author": "Shakti Gawain" + }, + { + "quote": "Life becomes easier when you learn to accept the apology you never got.", + "author": "Robert Brault" + }, + { + "quote": "If you have good thoughts, they will shine out of your face like sunbeams.", + "author": "Roald Dahl" + }, + { + "quote": "Let us always meet each other with a smile.", + "author": "Mother Teresa" + }, + { + "quote": "Go to the edge of the cliff and jump off. Build your wings on the way down.", + "author": "Ray Bradbury" + }, + { + "quote": "The most certain way to succeed is always to try just one more time.", + "author": "Thomas Edison" + }, + { + "quote": "Love is composed of a single soul inhabiting two bodies.", + "author": "Aristotle" + }, + { + "quote": "We can complain because rose bushes have thorns, or rejoice because thorns have roses.", + "author": "Alphonse Karr" + }, + { + "quote": "The more one judges, the less one loves.", + "author": "Honoré de Balzac" + }, + { + "quote": "There is a crack in everything, that’s how the light gets in.", + "author": "Leonard Cohen" + }, + { + "quote": "To be happy, we must not be too concerned with others.", + "author": "Albert Camus" + }, + { + "quote": "Open your arms to change, but don’t let go of your values.", + "author": "Dalai Lama" + }, + { + "quote": "Every day may not be good, but there’s something good in every day.", + "author": "Alice Morse Earle" + }, + { + "quote": "Happiness is a direction, not a place.", + "author": "Sydney J. Harris" + }, + { + "quote": "Spread love everywhere.", + "author": "Mother Teresa (paraphrase)" + } + ], + "life": [ + { + "quote": "Life is either a great adventure or nothing.", + "author": "Helen Keller" + }, + { + "quote": "Life is really simple, but we insist on making it complicated.", + "author": "Confucius" + }, + { + "quote": "He who has a why to live can bear almost any how.", + "author": "Friedrich Nietzsche" + }, + { + "quote": "Life shrinks or expands in proportion to one’s courage.", + "author": "Anaïs Nin" + }, + { + "quote": "Life is about making an impact, not making an income.", + "author": "Kevin Kruse" + }, + { + "quote": "Dost thou love life? Then do not squander time.", + "author": "Benjamin Franklin" + }, + { + "quote": "Life is 10% what happens to you and 90% how you react to it.", + "author": "Charles R. Swindoll" + }, + { + "quote": "Life isn’t about finding yourself. Life is about creating yourself.", + "author": "George Bernard Shaw" + }, + { + "quote": "Life is short, and truth works far and lives long.", + "author": "Arthur Schopenhauer" + }, + { + "quote": "Life is a long lesson in humility.", + "author": "J.M. Barrie" + }, + { + "quote": "Life is made of ever so many partings welded together.", + "author": "Charles Dickens" + }, + { + "quote": "The goal of life is living in agreement with nature.", + "author": "Zeno" + }, + { + "quote": "Life is either a daring adventure or nothing to be had.", + "author": "Helen Keller" + }, + { + "quote": "Life is too important to be taken seriously.", + "author": "Oscar Wilde" + }, + { + "quote": "Life is a balance of holding on and letting go.", + "author": "Rumi" + }, + { + "quote": "Life can only be understood backwards; but it must be lived forwards.", + "author": "Søren Kierkegaard" + }, + { + "quote": "Life is a flower of which love is the honey.", + "author": "Victor Hugo" + }, + { + "quote": "Life is to be enjoyed, not endured.", + "author": "Gordon B. Hinckley" + }, + { + "quote": "Life is a series of tiny miracles.", + "author": "Unknown" + }, + { + "quote": "Life is ours to be spent, not to be saved.", + "author": "D.H. Lawrence" + }, + { + "quote": "Life is trying things to see if they work.", + "author": "Ray Bradbury" + }, + { + "quote": "Life is painting a picture, not doing a sum.", + "author": "Oliver Wendell Holmes Sr." + }, + { + "quote": "Life is made up of sobs, sniffles, and smiles, with sniffles predominating.", + "author": "O. Henry" + }, + { + "quote": "Life, the gift of nature; love, the gift of life.", + "author": "Unknown" + }, + { + "quote": "Life is wide, limitless. There is no border, no frontier.", + "author": "Bruce Lee" + }, + { + "quote": "Life is what we make it, always has been, always will be.", + "author": "Grandma Moses" + }, + { + "quote": "Life is a perpetual instruction in cause and effect.", + "author": "Ralph Waldo Emerson" + }, + { + "quote": "Life is an adventure, dare it.", + "author": "Mother Teresa" + }, + { + "quote": "Life is a succession of moments. To live each one is to succeed.", + "author": "Corita Kent" + }, + { + "quote": "Life is growth. If we stop growing, we die.", + "author": "Gail Sheehy" + }, + { + "quote": "Life is not a problem to be solved, but a reality to be experienced.", + "author": "Søren Kierkegaard" + }, + { + "quote": "Life is a mirror; it will reflect what you put into it.", + "author": "Ernest Holmes" + }, + { + "quote": "Life is but a dream for the dead.", + "author": "Edgar Allan Poe" + }, + { + "quote": "Life is a matter of choices, and every choice you make makes you.", + "author": "John C. Maxwell" + }, + { + "quote": "Life is blessed by what we give, not by what we get.", + "author": "Unknown" + }, + { + "quote": "Life well used brings happy death.", + "author": "Leonardo da Vinci" + }, + { + "quote": "Life is the sum of all your choices.", + "author": "Albert Camus" + }, + { + "quote": "Life is a question and how we live it is our answer.", + "author": "Gary Keller" + }, + { + "quote": "Life becomes easier when you learn to accept the uncontrollable.", + "author": "Unknown" + }, + { + "quote": "Life is made of choices that test courage.", + "author": "Archer quote paraphrase" + }, + { + "quote": "Life is a storm. What matters is how you dance in the rain.", + "author": "Paraphrase" + }, + { + "quote": "Life is too short to be little.", + "author": "Benjamin Disraeli" + }, + { + "quote": "Life is full of surprises, but never when you need one.", + "author": "Bill Watterson" + }, + { + "quote": "Life is the art of drawing without an eraser.", + "author": "John W. Gardner" + }, + { + "quote": "Life imitates art far more than art imitates life.", + "author": "Oscar Wilde" + }, + { + "quote": "Life’s most persistent question is: What are you doing for others?", + "author": "Martin Luther King Jr." + }, + { + "quote": "Life is a series of commas, not periods.", + "author": "Matthew McConaughey" + }, + { + "quote": "Life is the dancer and you are the dance.", + "author": "Eckhart Tolle" + }, + { + "quote": "Life is nothing without friendship.", + "author": "Cicero" + }, + { + "quote": "Life is a long preparation for something that never happens.", + "author": "W.B. Yeats" + }, + { + "quote": "Life is not a dress rehearsal.", + "author": "Rose Tremain" + }, + { + "quote": "Life’s tragedy is that we get old too soon and wise too late.", + "author": "Benjamin Franklin" + }, + { + "quote": "Life is playfulness—we need to play so that we can rediscover joy.", + "author": "Osho" + }, + { + "quote": "Life isn’t a matter of milestones, but of moments.", + "author": "Rose Kennedy" + }, + { + "quote": "Life is too short to learn German.", + "author": "Richard Porson (humorous)" + }, + { + "quote": "Life is beautiful if you know where to look.", + "author": "Anonymous" + }, + { + "quote": "Life is made of ever-so-ordinary days.", + "author": "Unknown" + }, + { + "quote": "Life is so short. Do what you love.", + "author": "Unknown" + }, + { + "quote": "Life is short; live your truth.", + "author": "Unknown" + }, + { + "quote": "Life is better when you’re laughing.", + "author": "Unknown" + }, + { + "quote": "Life is a book; don’t skip chapters.", + "author": "Unknown" + }, + { + "quote": "Life is sweet when you’re grateful.", + "author": "Unknown" + }, + { + "quote": "Life is a dance; you learn as you go.", + "author": "Unknown" + }, + { + "quote": "Life is the story you tell yourself.", + "author": "Unknown" + }, + { + "quote": "Life is what you celebrate.", + "author": "Oprah Winfrey" + }, + { + "quote": "Life is a collection of moments.", + "author": "Unknown" + }, + { + "quote": "Life is a journey to be savored.", + "author": "Unknown" + }, + { + "quote": "Life is lighter when you let go.", + "author": "Unknown" + }, + { + "quote": "Life is a canvas; throw paint on it.", + "author": "Danny Kaye" + }, + { + "quote": "Life is fragile; handle with prayer.", + "author": "Anonymous" + }, + { + "quote": "Life is measured in love.", + "author": "Unknown" + }, + { + "quote": "Life is a gift, unwrap it daily.", + "author": "Unknown" + }, + { + "quote": "Life is a work of heart.", + "author": "Unknown" + }, + { + "quote": "Life is full of second chances.", + "author": "Unknown" + }, + { + "quote": "Life is lived forward, understood backward.", + "author": "Søren Kierkegaard" + }, + { + "quote": "Life is a practice; progress over perfection.", + "author": "Unknown" + }, + { + "quote": "Life is delicious when simple.", + "author": "Unknown" + }, + { + "quote": "Life is wild and precious.", + "author": "Mary Oliver" + }, + { + "quote": "Life is a privilege; honor it.", + "author": "Unknown" + }, + { + "quote": "Life is kindness in motion.", + "author": "Unknown" + }, + { + "quote": "Life is love made visible.", + "author": "Kahlil Gibran (paraphrase)" + }, + { + "quote": "Life is poetic when honest.", + "author": "Unknown" + }, + { + "quote": "Life is service; serve well.", + "author": "Unknown" + }, + { + "quote": "Life is listening deeply.", + "author": "Unknown" + }, + { + "quote": "Life is made for wonder.", + "author": "Unknown" + }, + { + "quote": "Life is richer with curiosity.", + "author": "Unknown" + }, + { + "quote": "Life is learning to begin again.", + "author": "Unknown" + }, + { + "quote": "Life is attention paid to now.", + "author": "Unknown" + }, + { + "quote": "Life is courage repeated.", + "author": "Unknown" + }, + { + "quote": "Life is loving what is.", + "author": "Byron Katie (paraphrase)" + }, + { + "quote": "Life is forgiveness practiced.", + "author": "Unknown" + }, + { + "quote": "Life is the sum of small joys.", + "author": "Unknown" + }, + { + "quote": "Life is story plus meaning.", + "author": "Unknown" + }, + { + "quote": "Life is discovering who you are.", + "author": "Unknown" + }, + { + "quote": "Life is a dialogue with time.", + "author": "Unknown" + }, + { + "quote": "Life is attention to the ordinary.", + "author": "Unknown" + }, + { + "quote": "Life is being useful to others.", + "author": "Unknown" + }, + { + "quote": "Life is gratitude you can feel.", + "author": "Unknown" + }, + { + "quote": "Life is more than moments; it’s presence.", + "author": "Unknown" + }, + { + "quote": "Life is a love letter; write often.", + "author": "Unknown" + }, + { + "quote": "Life is breath between beginnings.", + "author": "Unknown" + }, + { + "quote": "Life is mercy and mystery.", + "author": "Unknown" + }, + { + "quote": "Life is a conversation with change.", + "author": "Unknown" + }, + { + "quote": "Life is how you show up.", + "author": "Unknown" + }, + { + "quote": "Life is a verb.", + "author": "Unknown" + }, + { + "quote": "Life is what you practice daily.", + "author": "Unknown" + }, + { + "quote": "Life is your compassion in action.", + "author": "Unknown" + }, + { + "quote": "Life is noticing the light.", + "author": "Unknown" + }, + { + "quote": "Life is a gift you pass on.", + "author": "Unknown" + }, + { + "quote": "Life is made by the choices we keep.", + "author": "Unknown" + }, + { + "quote": "Life is a poem we edit.", + "author": "Unknown" + }, + { + "quote": "Life is being teachable.", + "author": "Unknown" + }, + { + "quote": "Life is a gentle defiance of fear.", + "author": "Unknown" + }, + { + "quote": "Life is tenderness with boundaries.", + "author": "Unknown" + }, + { + "quote": "Life is the courage to love again.", + "author": "Unknown" + }, + { + "quote": "Life is a daily vote for hope.", + "author": "Unknown" + }, + { + "quote": "Life is a garden; tend it.", + "author": "Unknown" + }, + { + "quote": "Life is a blessing noticed.", + "author": "Unknown" + }, + { + "quote": "Life is prayer in motion.", + "author": "Unknown" + }, + { + "quote": "Life is quiet bravery.", + "author": "Unknown" + }, + { + "quote": "Life is the long yes.", + "author": "Unknown" + }, + { + "quote": "Life is a sunrise in slow motion.", + "author": "Unknown" + }, + { + "quote": "Life is what remains when the noise fades.", + "author": "Unknown" + }, + { + "quote": "Life is wisdom earned kindly.", + "author": "Unknown" + }, + { + "quote": "You will face many defeats in life, but never let yourself be defeated.", + "author": "Maya Angelou" + } + ], + "success": [ + { + "quote": "Success is walking from failure to failure with no loss of enthusiasm.", + "author": "Winston Churchill" + }, + { + "quote": "Success usually comes to those who are too busy to be looking for it.", + "author": "Henry David Thoreau" + }, + { + "quote": "The only place success comes before work is in the dictionary.", + "author": "Vidal Sassoon" + }, + { + "quote": "Success is not the key to happiness. Happiness is the key to success.", + "author": "Albert Schweitzer" + }, + { + "quote": "Success is stumbling from failure to failure without losing enthusiasm.", + "author": "Attributed to Winston Churchill" + }, + { + "quote": "I never dreamed about success. I worked for it.", + "author": "Estée Lauder" + }, + { + "quote": "The road to success is dotted with many tempting parking spaces.", + "author": "Will Rogers" + }, + { + "quote": "Success is the sum of small efforts repeated day in and day out.", + "author": "Robert Collier" + }, + { + "quote": "Success is getting what you want, happiness is wanting what you get.", + "author": "W.P. Kinsella" + }, + { + "quote": "Strive not to be a success, but rather to be of value.", + "author": "Albert Einstein" + }, + { + "quote": "Success is not measured by what you accomplish, but by the opposition you have encountered.", + "author": "Orison Swett Marden" + }, + { + "quote": "Success is a lousy teacher. It seduces smart people into thinking they can’t lose.", + "author": "Bill Gates" + }, + { + "quote": "Success seems to be largely a matter of hanging on after others have let go.", + "author": "William Feather" + }, + { + "quote": "Success is liking yourself, liking what you do, and liking how you do it.", + "author": "Maya Angelou" + }, + { + "quote": "The secret of your success is determined by your daily agenda.", + "author": "John C. Maxwell" + }, + { + "quote": "Patience, persistence and perspiration make an unbeatable combination for success.", + "author": "Napoleon Hill" + }, + { + "quote": "Eighty percent of success is showing up.", + "author": "Woody Allen" + }, + { + "quote": "To be successful, the first thing to do is fall in love with your work.", + "author": "Sister Mary Lauretta" + }, + { + "quote": "Success is achieved and maintained by those who try and keep trying.", + "author": "W. Clement Stone" + }, + { + "quote": "The ladder of success is best climbed by stepping on the rungs of opportunity.", + "author": "Ayn Rand" + }, + { + "quote": "I find that the harder I work, the more luck I seem to have.", + "author": "Thomas Jefferson" + }, + { + "quote": "Success is where preparation and opportunity meet.", + "author": "Bobby Unser" + }, + { + "quote": "Success does not consist in never making mistakes but in never making the same one a second time.", + "author": "George Bernard Shaw" + }, + { + "quote": "Success is not for the lazy.", + "author": "Unknown" + }, + { + "quote": "If no one thinks you can, then you have to.", + "author": "Unknown" + }, + { + "quote": "Success is rented, and the rent is due every day.", + "author": "J.J. Watt" + }, + { + "quote": "There’s no elevator to success; you have to take the stairs.", + "author": "Zig Ziglar" + }, + { + "quote": "Success is born out of luck, but luck is when preparation meets opportunity.", + "author": "Seneca (paraphrase)" + }, + { + "quote": "Success is best when it’s shared.", + "author": "Howard Schultz" + }, + { + "quote": "Success is to be measured not so much by the position one has reached as by the obstacles overcome.", + "author": "Booker T. Washington" + }, + { + "quote": "Success isn’t owned; it’s leased.", + "author": "Unknown" + }, + { + "quote": "Success demands singleness of purpose.", + "author": "Vince Lombardi" + }, + { + "quote": "Success is doing ordinary things extraordinarily well.", + "author": "Jim Rohn" + }, + { + "quote": "The secret of success is constancy to purpose.", + "author": "Benjamin Disraeli" + }, + { + "quote": "Success is a state of mind. If you want success, start thinking of yourself as a success.", + "author": "Joyce Brothers" + }, + { + "quote": "Failure is success in progress.", + "author": "Albert Einstein" + }, + { + "quote": "Success is a journey, not a destination.", + "author": "Arthur Ashe" + }, + { + "quote": "Some succeed because they are destined to; most succeed because they are determined to.", + "author": "Unknown" + }, + { + "quote": "Success is never owned, it’s rented—and rent is due every day.", + "author": "Unknown" + }, + { + "quote": "Success breeds confidence.", + "author": "Beryl Markham" + }, + { + "quote": "Success is the progressive realization of a worthy ideal.", + "author": "Earl Nightingale" + }, + { + "quote": "Success is dependent on effort.", + "author": "Sophocles" + }, + { + "quote": "The people who succeed are irrationally passionate about something.", + "author": "Naval Ravikant" + }, + { + "quote": "Success is found in a daily routine.", + "author": "Unknown" + }, + { + "quote": "Success requires replacing excuses with effort.", + "author": "Unknown" + }, + { + "quote": "Success is a byproduct of usefulness.", + "author": "Unknown" + }, + { + "quote": "Success is the courage to continue.", + "author": "Paraphrase of Churchill" + }, + { + "quote": "Success is small wins accumulated.", + "author": "Unknown" + }, + { + "quote": "Success comes from curiosity, concentration, perseverance, and self-criticism.", + "author": "Albert Einstein" + }, + { + "quote": "If you want to succeed, double your rate of failure.", + "author": "Thomas J. Watson" + }, + { + "quote": "The only limit to our realization of tomorrow will be our doubts of today.", + "author": "Franklin D. Roosevelt" + }, + { + "quote": "Success is simple. Do what’s right, the right way, at the right time.", + "author": "Arnold H. Glasow" + }, + { + "quote": "To succeed in life, you need two things: ignorance and confidence.", + "author": "Mark Twain" + }, + { + "quote": "Success is when reality catches up to your imagination.", + "author": "Unknown" + }, + { + "quote": "Hard choices, easy life. Easy choices, hard life.", + "author": "Jerzy Gregorek" + }, + { + "quote": "Success isn’t about the end result, it’s about what you learn along the way.", + "author": "Vera Wang" + }, + { + "quote": "Success is an inside job.", + "author": "Unknown" + }, + { + "quote": "Behind every successful person stands a lot of unsuccessful years.", + "author": "Bob Brown" + }, + { + "quote": "It always seems impossible until it’s done.", + "author": "Nelson Mandela" + }, + { + "quote": "Success means having the courage, the determination, and the will to become the person you believe you were meant to be.", + "author": "George A. Sheehan" + }, + { + "quote": "Success is peace of mind, self-satisfaction in knowing you did your best.", + "author": "John Wooden" + }, + { + "quote": "Success is loving what you do.", + "author": "Unknown" + }, + { + "quote": "Success is not for everybody; it’s for the disciplined.", + "author": "Unknown" + }, + { + "quote": "Success is timing plus tenacity.", + "author": "Unknown" + }, + { + "quote": "Success is a choice repeated.", + "author": "Unknown" + }, + { + "quote": "Success is serving well and often.", + "author": "Unknown" + }, + { + "quote": "Success is focus over time.", + "author": "Unknown" + }, + { + "quote": "Success is consistency with purpose.", + "author": "Unknown" + }, + { + "quote": "Success is compounding effort.", + "author": "Unknown" + }, + { + "quote": "Success is saying no to distractions.", + "author": "Unknown" + }, + { + "quote": "Success is shipping.", + "author": "Seth Godin (paraphrase)" + }, + { + "quote": "Success is earned in silence.", + "author": "Unknown" + }, + { + "quote": "Success is learning faster than the problem.", + "author": "Unknown" + }, + { + "quote": "Success is persistence’s child.", + "author": "Unknown" + }, + { + "quote": "Success is courage made daily.", + "author": "Unknown" + }, + { + "quote": "Success is the patience to iterate.", + "author": "Unknown" + }, + { + "quote": "Success follows clarity.", + "author": "Unknown" + }, + { + "quote": "Success honors preparation.", + "author": "Unknown" + }, + { + "quote": "Success is the art of the possible practiced relentlessly.", + "author": "Unknown" + }, + { + "quote": "Success is service multiplied by time.", + "author": "Unknown" + }, + { + "quote": "Success is discipline you keep when nobody’s watching.", + "author": "Unknown" + }, + { + "quote": "Success is refusing to quit when it’s boring.", + "author": "Unknown" + }, + { + "quote": "Success is the residue of design.", + "author": "Branch Rickey" + }, + { + "quote": "Success is an act of becoming.", + "author": "Unknown" + }, + { + "quote": "Success is trust earned.", + "author": "Unknown" + }, + { + "quote": "Success grows where gratitude is planted.", + "author": "Unknown" + }, + { + "quote": "Success is a habit of attention.", + "author": "Unknown" + }, + { + "quote": "Success is the harmony of effort and purpose.", + "author": "Unknown" + }, + { + "quote": "Success is the service of talent.", + "author": "Unknown" + }, + { + "quote": "Success walks with humility.", + "author": "Unknown" + }, + { + "quote": "Success is staying in the game longer.", + "author": "Unknown" + }, + { + "quote": "Success is showing up excellent.", + "author": "Unknown" + }, + { + "quote": "Success is the long obedience in the same direction.", + "author": "Nietzsche (paraphrase)" + }, + { + "quote": "Success is compounding courage.", + "author": "Unknown" + }, + { + "quote": "Success is the quiet yes after many no’s.", + "author": "Unknown" + }, + { + "quote": "Success is saying yes to growth.", + "author": "Unknown" + }, + { + "quote": "Success is kindness scaled.", + "author": "Unknown" + }, + { + "quote": "Success is momentum protected.", + "author": "Unknown" + }, + { + "quote": "Success is your values, lived.", + "author": "Unknown" + }, + { + "quote": "Success is the practice of mastery.", + "author": "Unknown" + }, + { + "quote": "Success is the byproduct of obsession.", + "author": "Unknown" + }, + { + "quote": "Success is built on boring work.", + "author": "Unknown" + }, + { + "quote": "Success is choosing hard things on purpose.", + "author": "Unknown" + }, + { + "quote": "Success is built, not found.", + "author": "Unknown" + }, + { + "quote": "Success is the fruit of focused days.", + "author": "Unknown" + }, + { + "quote": "Success is repeating what works.", + "author": "Unknown" + }, + { + "quote": "Success is your habits on display.", + "author": "Unknown" + }, + { + "quote": "Success is integrity rewarded.", + "author": "Unknown" + }, + { + "quote": "Success is the mathematics of minutes managed.", + "author": "Unknown" + }, + { + "quote": "Success is stewardship of opportunity.", + "author": "Unknown" + }, + { + "quote": "Success is a generous spirit.", + "author": "Unknown" + }, + { + "quote": "Success is showing up curious.", + "author": "Unknown" + }, + { + "quote": "Success is relentless kindness to the problem.", + "author": "Unknown" + }, + { + "quote": "Success is patience under pressure.", + "author": "Unknown" + }, + { + "quote": "Success is the courage to be consistent.", + "author": "Unknown" + }, + { + "quote": "Success is the long-term reward of short-term sacrifices.", + "author": "Unknown" + }, + { + "quote": "Success is not final; failure is not fatal: It is the courage to continue that counts.", + "author": "Winston S. Churchill" } ], - "life":[ + "motivational": [ + { + "quote": "Start where you are. Use what you have. Do what you can.", + "author": "Arthur Ashe" + }, + { + "quote": "What you get by achieving your goals is not as important as what you become.", + "author": "Zig Ziglar" + }, + { + "quote": "You are never too old to set another goal or to dream a new dream.", + "author": "C.S. Lewis" + }, + { + "quote": "The harder the conflict, the more glorious the triumph.", + "author": "Thomas Paine" + }, + { + "quote": "Whether you think you can or think you can’t, you’re right.", + "author": "Henry Ford" + }, + { + "quote": "Dream big. Start small. Act now.", + "author": "Robin Sharma" + }, + { + "quote": "Don’t watch the clock; do what it does. Keep going.", + "author": "Sam Levenson" + }, + { + "quote": "If you want to lift yourself up, lift up someone else.", + "author": "Booker T. Washington" + }, + { + "quote": "Everything you’ve ever wanted is on the other side of fear.", + "author": "George Addair" + }, + { + "quote": "Do one thing every day that scares you.", + "author": "Eleanor Roosevelt" + }, + { + "quote": "Small deeds done are better than great deeds planned.", + "author": "Peter Marshall" + }, + { + "quote": "Your limitation—it’s only your imagination.", + "author": "Unknown" + }, + { + "quote": "Push yourself, because no one else is going to do it for you.", + "author": "Unknown" + }, + { + "quote": "Great things never come from comfort zones.", + "author": "Unknown" + }, + { + "quote": "Dream it. Wish it. Do it.", + "author": "Unknown" + }, + { + "quote": "Success doesn’t just find you. You find it.", + "author": "Unknown" + }, + { + "quote": "The harder you work for something, the greater you’ll feel when you achieve it.", + "author": "Unknown" + }, + { + "quote": "Dream bigger. Do bigger.", + "author": "Unknown" + }, + { + "quote": "Don’t stop when you’re tired. Stop when you’re done.", + "author": "Unknown" + }, + { + "quote": "Wake up with determination. Go to bed with satisfaction.", + "author": "Unknown" + }, + { + "quote": "It’s going to be hard, but hard is not impossible.", + "author": "Unknown" + }, + { + "quote": "The key to success is to focus on goals, not obstacles.", + "author": "Unknown" + }, + { + "quote": "Believe in yourself and all that you are.", + "author": "Christian D. Larson" + }, + { + "quote": "Act as if it were impossible to fail.", + "author": "Dorothea Brande" + }, + { + "quote": "You’ve got to get up every morning with determination.", + "author": "George Lorimer" + }, + { + "quote": "Go the extra mile. It’s never crowded.", + "author": "Unknown" + }, + { + "quote": "Opportunities don’t happen. You create them.", + "author": "Chris Grosser" + }, + { + "quote": "Do something today that your future self will thank you for.", + "author": "Sean Patrick Flanery" + }, + { + "quote": "Little things make big days.", + "author": "Unknown" + }, + { + "quote": "It’s not about perfect. It’s about effort.", + "author": "Jillian Michaels" + }, + { + "quote": "Don’t limit your challenges. Challenge your limits.", + "author": "Unknown" + }, + { + "quote": "When you feel like quitting, think about why you started.", + "author": "Unknown" + }, + { + "quote": "The only bad workout is the one that didn’t happen.", + "author": "Unknown" + }, + { + "quote": "Be stronger than your strongest excuse.", + "author": "Unknown" + }, + { + "quote": "Your passion is waiting for your courage to catch up.", + "author": "Isabelle Lafleche" + }, + { + "quote": "Magic is believing in yourself.", + "author": "Goethe" + }, + { + "quote": "If no one else will believe in you, do it yourself.", + "author": "Unknown" + }, + { + "quote": "Be the energy you want to attract.", + "author": "Unknown" + }, + { + "quote": "Discipline is choosing what you want most over what you want now.", + "author": "Unknown" + }, + { + "quote": "One day or day one. You decide.", + "author": "Unknown" + }, + { + "quote": "Make your fear afraid of you.", + "author": "Unknown" + }, + { + "quote": "Habits are the compound interest of self-improvement.", + "author": "James Clear" + }, + { + "quote": "Action is the antidote to despair.", + "author": "Joan Baez" + }, + { + "quote": "The best time to plant a tree was 20 years ago. The second best time is now.", + "author": "Proverb" + }, + { + "quote": "If you want it, work for it.", + "author": "Unknown" + }, + { + "quote": "Be so good they can’t ignore you.", + "author": "Steve Martin" + }, + { + "quote": "Make your why bigger than your excuses.", + "author": "Unknown" + }, + { + "quote": "No pressure, no diamonds.", + "author": "Thomas Carlyle" + }, + { + "quote": "Progress over perfection.", + "author": "Unknown" + }, + { + "quote": "What consumes your mind controls your life.", + "author": "Unknown" + }, { - "quote":"You will face many defeats in life, but never let yourself be defeated.", - "author":"Maya Angelou" + "quote": "Small steps still move forward.", + "author": "Unknown" }, { - "quote":"In the end, it's not the years in your life that count. It's the life in your years.", - "author":"Abraham Lincoln" + "quote": "Stop doubting. Start doing.", + "author": "Unknown" }, { - "quote":"Never let the fear of striking out keep you from playing the game.", - "author":"Babe Ruth" + "quote": "Consistency is a superpower.", + "author": "Unknown" }, { - "quote":"Life is either a daring adventure or nothing at all.", - "author":"Helen Keller" + "quote": "Decide, commit, succeed.", + "author": "Unknown" }, { - "quote":"Many of life's failures are people who did not realize how close they were to success when they gave up.", - "author":"Thomas A. Edison" + "quote": "Don’t count the days. Make the days count.", + "author": "Muhammad Ali" }, { - "quote":"You have brains in your head. You have feet in your shoes. You can steer yourself any direction you choose.", - "author":"Dr. Seuss" + "quote": "Your future is created by what you do today.", + "author": "Robert Kiyosaki" }, { - "quote":"If life were predictable it would cease to be life and be without flavor.", - "author":"Eleanor Roosevelt" + "quote": "Turn pain into power.", + "author": "Unknown" }, { - "quote":"Life is a succession of lessons which must be lived to be understood.", - "author":"Ralph Waldo Emerson" + "quote": "Storms make trees take deeper roots.", + "author": "Dolly Parton" }, { - "quote":"Life is never fair, and perhaps it is a good thing for most of us that it is not.", - "author":"Oscar Wilde" + "quote": "You are the sky. Everything else is just the weather.", + "author": "Pema Chödrön" }, { - "quote":"The only impossible journey is the one you never begin.", - "author":"Tony Robbins" + "quote": "Doubt kills more dreams than failure ever will.", + "author": "Suzy Kassem" }, { - "quote":"In this life we cannot do great things. We can only do small things with great love.", - "author":"Mother Teresa" + "quote": "Take the risk or lose the chance.", + "author": "Unknown" }, { - "quote":"Only a life lived for others is a life worthwhile.", - "author":"Albert Einstein" + "quote": "Hustle in silence.", + "author": "Unknown" }, { - "quote":"Life is what happens when you're busy making other plans.", - "author":"John Lennon" + "quote": "You didn’t come this far to only come this far.", + "author": "Unknown" }, { - "quote":"Go confidently in the direction of your dreams! Live the life you've imagined.", - "author":"Henry David Thoreau" + "quote": "Suffer the pain of discipline or the pain of regret.", + "author": "Unknown" }, { - "quote":"Love is the strongest force the world possesses.", - "author":"Mahatma Gandhi" + "quote": "Make excellence a habit.", + "author": "Unknown" }, { - "quote":"Life is too short for long-term grudges.", - "author":"Elon Musk" + "quote": "Stay hungry. Stay foolish.", + "author": "Steve Jobs" }, { - "quote":"Life consists not in holding good cards but in playing those you hold well.", - "author":"Josh Billings" + "quote": "Dreams don’t work unless you do.", + "author": "John C. Maxwell" }, { - "quote":"Life is a mirror and will reflect back to the thinker what he thinks into it.", - "author":"Ernest Holmes" + "quote": "Focus on the step in front of you, not the whole staircase.", + "author": "Unknown" }, { - "quote":"To live is to think.", - "author":"Marcus Tullius Cicero" + "quote": "Keep moving forward.", + "author": "Walt Disney" }, { - "quote":"It is not length of life, but depth of life.", - "author":"Ralph Waldo Emerson" + "quote": "Create the life you can’t wait to wake up to.", + "author": "Unknown" }, { - "quote":"There he goes. One of god's own prototypes. Some sort of high-powered mutant never considered for mass production. Too weird to live, and too rare to die.", - "author":"Hunter S. Thompson" + "quote": "Work until you no longer have to introduce yourself.", + "author": "Unknown" }, { - "quote":"If you want to be Strong Learn to live Alone.", - "author":"Rowan Atkinson" + "quote": "Winners are not people who never fail, but people who never quit.", + "author": "Unknown" }, { - "quote":"Do not set out in life to be an interesting person. Set out to be an interested person.", - "author":"Gardner as quoted in Collins in 1997" + "quote": "You owe it to yourself to become everything you’ve ever dreamed of.", + "author": "Unknown" }, { - "quote":"Gain all you can, save all you can, and give all you can.", - "author":"John Wesley" - } - ], - "success":[ + "quote": "Discipline equals freedom.", + "author": "Jocko Willink" + }, { - "quote":"Success is not final; failure is not fatal: It is the courage to continue that counts.", - "author":"Winston S. Churchill" + "quote": "If it doesn’t challenge you, it won’t change you.", + "author": "Fred DeVito" }, { - "quote":"Success usually comes to those who are too busy to be looking for it.", - "author":"Henry David Thoreau" + "quote": "Make your habits your heroes.", + "author": "Unknown" }, { - "quote":"If you really look closely, most overnight successes took a long time.", - "author":"Steve Jobs" + "quote": "Say yes to your future.", + "author": "Unknown" }, { - "quote":"The secret of success is to do the common thing uncommonly well.", - "author":"John D. Rockefeller Jr." + "quote": "Build a life you’re proud of.", + "author": "Unknown" }, { - "quote":"I find that the harder I work, the more luck I seem to have.", - "author":"Thomas Jefferson" + "quote": "Do it scared.", + "author": "Unknown" }, { - "quote":"The real test is not whether you avoid this failure, because you won't. It's whether you let it harden or shame you into inaction, or whether you learn from it; whether you choose to persevere.", - "author":"Barack Obama" + "quote": "Your grind will pay off.", + "author": "Unknown" }, { - "quote":"Don't be distracted by criticism. Remember -- the only taste of success some people get is to take a bite out of you.", - "author":"Zig Ziglar" + "quote": "You are capable of hard things.", + "author": "Unknown" }, { - "quote":"Success seems to be connected with action. Successful people keep moving. They make mistakes but they don't quit.", - "author":"Conrad Hilton" + "quote": "Keep the promise you made to yourself.", + "author": "Unknown" }, { - "quote":"There are no secrets to success. It is the result of preparation, hard work, and learning from failure.", - "author":"Colin Powell" + "quote": "Let your actions speak.", + "author": "Unknown" }, { - "quote":"The only limit to our realization of tomorrow will be our doubts of today.", - "author":"Franklin D. Roosevelt" + "quote": "Live by design, not by default.", + "author": "Unknown" }, { - "quote":"Successful people do what unsuccessful people are not willing to do. Don't wish it were easier; wish you were better.", - "author":"Jim Rohn" + "quote": "Be a voice, not an echo.", + "author": "Unknown" }, { - "quote":"If you set your goals ridiculously high and it's a failure, you will fail above everyone else's success.", - "author":"James Cameron" + "quote": "Outwork your doubt.", + "author": "Unknown" }, { - "quote":"A successful man is one who can lay a firm foundation with the bricks others have thrown at him.", - "author":"David Brinkley" + "quote": "Bet on yourself.", + "author": "Unknown" }, { - "quote":"Try not to become a man of success. Rather become a man of value.", - "author":"Albert Einstein" + "quote": "Energy flows where attention goes.", + "author": "Tony Robbins" }, { - "quote":"Always bear in mind that your own resolution to success is more important than any other one thing.", - "author":"Abraham Lincoln" + "quote": "The vision pulls you.", + "author": "Steve Jobs" }, { - "quote":"Work hard in silence. Success be your noise.", - "author":"Frank Ocean" + "quote": "Make momentum your friend.", + "author": "Unknown" }, { - "quote":"Successful people don't fear failure but understand that it's necessary to learn and grow from.", - "author":"Robert Kiyosaki" + "quote": "One small win at a time.", + "author": "Unknown" }, { - "quote":"I learned this, at least, by my experiment: that if one advances confidently in the direction of his dreams, and endeavors to live the life which he has imagined, he will meet with a success unexpected in common hours.", - "author":"Henry David Thoreau" + "quote": "Show up for your future self.", + "author": "Unknown" }, { - "quote":"If at first you don't succeed, try, try again. Then quit. No use being a damn fool about it.", - "author":"W.C. Fields" + "quote": "Let your resilience roar.", + "author": "Unknown" }, { - "quote":"It is better to fail in originality than to succeed in imitation.", - "author":"Herman Melville" + "quote": "Grow through what you go through.", + "author": "Unknown" }, { - "quote":"Success is liking yourself, liking what you do, and liking how you do it.", - "author":"Maya Angelou" + "quote": "Own your morning. Elevate your life.", + "author": "Robin Sharma" }, { - "quote":"Success is not how high you have climbed, but how you make a positive difference to the world.", - "author":"Roy T. Bennett" + "quote": "Clarity breeds mastery.", + "author": "Robin Sharma" }, { - "quote":"Success is getting what you want, happiness is wanting what you get.", - "author":"W. P. Kinsella" + "quote": "You can do hard and holy things.", + "author": "Unknown" }, { - "quote":"Failure is the condiment that gives success its flavor.", - "author":"Truman Capote" + "quote": "Give your best, then rest.", + "author": "Unknown" }, { - "quote":"The worst part of success is trying to find someone who is happy for you.", - "author":"Bette Midler" + "quote": "Keep promises to your potential.", + "author": "Unknown" }, { - "quote":"Success makes so many people hate you. I wish it wasn't that way. It would be wonderful to enjoy success without seeing envy in the eyes of those around you.", - "author":"Marilyn Monroe" + "quote": "Ambition with humility.", + "author": "Unknown" }, { - "quote":"If A is a success in life, then A equals x plus y plus z. Work is x; y is play; and z is keeping your mouth shut.", - "author":"Albert Einstein" + "quote": "Be patient with the process.", + "author": "Unknown" }, { - "quote":"Cry. Forgive. Learn. Move on. Let your tears water the seeds of your future happiness.", - "author":"Steve Maraboli" + "quote": "Keep your word to your goals.", + "author": "Unknown" }, { - "quote":"I'm a success today because I had a friend who believed in me and I didn't have the heart to let him down.", - "author":"Abraham Lincoln" + "quote": "Your pace is perfect.", + "author": "Unknown" }, { - "quote":"Failure is the key to success; each mistake teaches us something.", - "author":"Morihei Ueshiba" + "quote": "Live the standard you expect.", + "author": "Unknown" }, { - "quote":"The road to success is always under construction.", - "author":"Lily Tomlin" + "quote": "Let your habits hold your hand.", + "author": "Unknown" }, { - "quote":"Failure is the condiment that gives success its flavor.", - "author":"Truman Capote" + "quote": "Practice being unstoppable.", + "author": "Unknown" }, { - "quote":"It's funny how many years it takes to become an overnight success.", - "author":"Prince" - } - ], - "motivational":[ + "quote": "Raise your standards; your life will follow.", + "author": "Tony Robbins" + }, + { + "quote": "Your future needs you; your past doesn’t.", + "author": "Unknown" + }, + { + "quote": "Finish strong.", + "author": "Unknown" + }, + { + "quote": "The energy you bring is the result you get.", + "author": "Unknown" + }, + { + "quote": "Make yourself proud today.", + "author": "Unknown" + }, + { + "quote": "Your only limit is your mind.", + "author": "Unknown" + }, + { + "quote": "Greatness is a lot of small things done well.", + "author": "Unknown" + }, + { + "quote": "Live with intention.", + "author": "Unknown" + }, + { + "quote": "Courage first, confidence later.", + "author": "Unknown" + }, + { + "quote": "Keep betting on consistency.", + "author": "Unknown" + }, + { + "quote": "Aim for better, not perfect.", + "author": "Unknown" + }, + { + "quote": "Your dreams need your discipline.", + "author": "Unknown" + }, { - "quote":"The Best Way To Get Started Is To Quit Talking And Begin Doing.", - "author":"Walt Disney" + "quote": "The grind will glow.", + "author": "Unknown" }, { - "quote":"The Pessimist Sees Difficulty In Every Opportunity. The Optimist Sees Opportunity In Every Difficulty.", - "author":"Winston Churchill" + "quote": "Your effort is your edge.", + "author": "Unknown" }, { - "quote":"Don’t Let Yesterday Take Up Too Much Of Today.", - "author":"Will Rogers" + "quote": "Let your focus fight for you.", + "author": "Unknown" }, { - "quote":"You Learn More From Failure Than From Success. Don’t Let It Stop You. Failure Builds Character.", - "author":"Unknown" + "quote": "Silence the noise, serve the goal.", + "author": "Unknown" }, { - "quote":"It’s Not Whether You Get Knocked Down, It’s Whether You Get Up.", - "author":"Vince Lombardi" + "quote": "Chase purpose, not applause.", + "author": "Unknown" }, { - "quote":"If You Are Working On Something That You Really Care About, You Don’t Have To Be Pushed. The Vision Pulls You.", - "author":"Steve Jobs" + "quote": "You’re allowed to be both a masterpiece and a work in progress.", + "author": "Unknown" }, { - "quote":"People Who Are Crazy Enough To Think They Can Change The World, Are The Ones Who Do.", - "author":"Rob Siltanen" + "quote": "Action reveals answers.", + "author": "Unknown" }, { - "quote":"Failure Will Never Overtake Me If My Determination To Succeed Is Strong Enough.", - "author":"Og Mandino" + "quote": "Be brave enough to be bad at something new.", + "author": "Jon Acuff" }, { - "quote":"Entrepreneurs Are Great At Dealing With Uncertainty And Also Very Good At Minimizing Risk. That’s The Classic Entrepreneur.", - "author":"Mohnish Pabrai" + "quote": "Consistency compounds.", + "author": "Unknown" }, { - "quote":"We May Encounter Many Defeats But We Must Not Be Defeated.", - "author":"Maya Angelou" + "quote": "Courage over comfort.", + "author": "Brené Brown" }, { - "quote":"Knowing Is Not Enough; We Must Apply. Wishing Is Not Enough; We Must Do.", - "author":"Johann Wolfgang Von Goethe" + "quote": "Make progress non-negotiable.", + "author": "Unknown" }, { - "quote":"Imagine Your Life Is Perfect In Every Respect; What Would It Look Like?", - "author":"Brian Tracy" + "quote": "The Best Way To Get Started Is To Quit Talking And Begin Doing.", + "author": "Walt Disney" + } + ], + "fun": [ + { + "quote": "Forgive your enemies, but never forget their names.", + "author": "John F. Kennedy" }, { - "quote":"Whether You Think You Can Or Think You Can’t, You’re Right.", - "author":"Henry Ford" + "quote": "The road to success is always under construction.", + "author": "Lily Tomlin" }, { - "quote":"Security Is Mostly A Superstition. Life Is Either A Daring Adventure Or Nothing.", - "author":"Helen Keller" + "quote": "I’m in shape. Round is a shape.", + "author": "George Carlin" }, { - "quote":"The Man Who Has Confidence In Himself Gains The Confidence Of Others.", - "author":"Hasidic Proverb" + "quote": "Never have more children than you have car windows.", + "author": "Erma Bombeck" }, { - "quote":"The Only Limit To Our Realization Of Tomorrow Will Be Our Doubts Of Today.", - "author":"Franklin D. Roosevelt" + "quote": "If you can’t live without me, why aren’t you dead already?", + "author": "Cynthia Heimel" }, { - "quote":"Creativity Is Intelligence Having Fun.", - "author":"Albert Einstein" + "quote": "He who laughs last didn’t get the joke.", + "author": "Charles de Gaulle" }, { - "quote":"What You Lack In Talent Can Be Made Up With Desire, Hustle And Giving 110% All The Time.", - "author":"Don Zimmer" + "quote": "My favourite machine at the gym is the vending machine.", + "author": "Caroline Rhea" }, { - "quote":"Do What You Can With All You Have, Wherever You Are.", - "author":"Theodore Roosevelt" + "quote": "If a book about failures doesn’t sell, is it a success?", + "author": "Jerry Seinfeld" }, { - "quote":"Develop An ‘Attitude Of Gratitude’. Say Thank You To Everyone You Meet For Everything They Do For You.", - "author":"Brian Tracy" + "quote": "If you’re too open-minded; your brains will fall out.", + "author": "Lawrence Ferlinghetti" }, { - "quote":"You Are Never Too Old To Set Another Goal Or To Dream A New Dream.", - "author":"C.S. Lewis" + "quote": "Never miss a good chance to shut up.", + "author": "Will Rogers" }, { - "quote":"To See What Is Right And Not Do It Is A Lack Of Courage.", - "author":"Confucius" + "quote": "I don’t hate you. I just don’t like that you exist", + "author": "Gena Showalter" }, { - "quote":"Reading Is To The Mind, As Exercise Is To The Body.", - "author":"Brian Tracy" + "quote": "Don’t gobblefunk around with words.", + "author": "Roald Dahl" }, { - "quote":"For Every Reason It’s Not Possible, There Are Hundreds Of People Who Have Faced The Same Circumstances And Succeeded.", - "author":"Jack Canfield" + "quote": "A penny saved is a penny earned.", + "author": "Benjamin Franklin" }, { - "quote":"Things Work Out Best For Those Who Make The Best Of How Things Work Out.", - "author":"John Wooden" + "quote": "The funniest people are the saddest ones.", + "author": "Confucius" }, { - "quote":"A Room Without Books Is Like A Body Without A Soul.", - "author":"Marcus Tullius Cicero" + "quote": "Why is there so much month left at the end of the money?", + "author": "John Barrymore" }, { - "quote":"Live as if you were to die tomorrow. Learn as if you were to live forever.", - "author":"Mahatma Gandhi" + "quote": "I came from a real tough neighbourhood. Once a guy pulled a knife on me. I knew he wasn’t a professional, the knife had butter on it.", + "author": "Rodney Dangerfield" }, { - "quote":"Education is the most powerful weapon we can use to change the world.", - "author":"Nelson Mandela" + "quote": "A word to the wise ain’t necessary, it’s the stupid ones who need advice.", + "author": "Bill Cosby" }, { - "quote":"Some people don't like change, but you need to embrace change if the alternative is disaster.", - "author":"Elon Musk" + "quote": "Always go to other people’s funerals, otherwise, they won’t come to yours.", + "author": "Yogi Berra" }, { - "quote":"You need to overcome the tug of people against you as you reach for high goals.", - "author":"George S. Patton" + "quote": "Women are wiser than men because they know less and understand more.", + "author": "James Thurber" }, { - "quote":"The harder the conflict, the more glorious the triumph.", - "author":"Thomas Paine" + "quote": "I’d rather have 1% of the effort of 100 men than 100% of my own effort.", + "author": "J. Paul Getty" }, { - "quote":"Expect problems and eat them for breakfast.", - "author":"Alfred A. Montapert" + "quote": "Hooray! Hooray! The end of the world has been postponed!", + "author": "Hergé" }, { - "quote":"There is nothing noble in being superior to your fellow man. True nobility is being superior to your former self.", - "author":"Ernest Hemingway" + "quote": "Imagination is more important than knowledge.", + "author": "Albert Einstein" }, { - "quote":"Behind the honor of the people who have come before me and those who will come after me, mediocrity will find no place within me.", - "author":"Based on The Wheel of Time by Robert Jordan" + "quote": "At the end of the day, if I can say I had fun, it was a good day.", + "author": "Simon Biles" } ], - "fun":[ + "programming": [ { - "quote":"Forgive your enemies, but never forget their names.", - "author":"John F. Kennedy" + "quote": "Any fool can write code that a computer can understand. Good programmers write code that humans can understand.", + "author": "Martin Fowler" }, { - "quote":"The road to success is always under construction.", - "author":"Lily Tomlin" + "quote": "First, solve the problem. Then, write the code.", + "author": "John Johnson" }, { - "quote":"I’m in shape. Round is a shape.", - "author":"George Carlin" + "quote": "Experience is the name everyone gives to their mistakes.", + "author": "Oscar Wilde" }, { - "quote":"Never have more children than you have car windows.", - "author":"Erma Bombeck" + "quote": "Java is to JavaScript what car is to Carpet.", + "author": "Chris Heilmann" }, { - "quote":"If you can’t live without me, why aren’t you dead already?", - "author":"Cynthia Heimel" + "quote": "Sometimes it pays to stay in bed on Monday, rather than spending the rest of the week debugging Monday’s code.", + "author": "Dan Salomon" }, { - "quote":"He who laughs last didn’t get the joke.", - "author":"Charles de Gaulle" + "quote": "Perfection is achieved not when there is nothing more to add, but rather when there is nothing more to take away.", + "author": " Antoine de Saint-Exupery" }, { - "quote":"My favourite machine at the gym is the vending machine.", - "author":"Caroline Rhea" + "quote": "Ruby is rubbish! PHP is phpantastic!", + "author": "Nikita Popov" }, { - "quote":"If a book about failures doesn’t sell, is it a success?", - "author":"Jerry Seinfeld" + "quote": "Code is like humor. When you have to explain it, it’s bad.", + "author": "Cory House" }, { - "quote":"If you’re too open-minded; your brains will fall out.", - "author":"Lawrence Ferlinghetti" + "quote": "Optimism is an occupational hazard of programming: feedback is the treatment.", + "author": "Kent Beck" }, { - "quote":"Never miss a good chance to shut up.", - "author":"Will Rogers" + "quote": "When to use iterative development? You should use iterative development only on projects that you want to succeed.", + "author": "Martin Fowler" }, { - "quote":"I don’t hate you. I just don’t like that you exist", - "author":"Gena Showalter" + "quote": "Before software can be reusable it first has to be usable.", + "author": "Ralph Johnson" }, { - "quote":"Don’t gobblefunk around with words.", - "author":"Roald Dahl" + "quote": "Make it work, make it right, make it fast.", + "author": "Kent Beck" }, { - "quote":"A penny saved is a penny earned.", - "author":"Benjamin Franklin" + "quote": "Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live", + "author": "John Woods" }, { - "quote":"The funniest people are the saddest ones.", - "author":"Confucius" + "quote": "I'm not a great programmer; I'm just a good programmer with great habits.", + "author": "Kent Beck" }, { - "quote":"Why is there so much month left at the end of the money?", - "author":"John Barrymore" + "quote": "Truth can only be found in one place: the code.", + "author": "Robert C. Martin" }, { - "quote":"I came from a real tough neighbourhood. Once a guy pulled a knife on me. I knew he wasn’t a professional, the knife had butter on it.", - "author":"Rodney Dangerfield" + "quote": "Give a man a program, frustrate him for a day.Teach a man to program, frustrate him for a lifetime.", + "author": "Muhammad Waseem" }, { - "quote":"A word to the wise ain’t necessary, it’s the stupid ones who need advice.", - "author":"Bill Cosby" + "quote": "That's the thing about people who think they hate computers. What they really hate is lousy programmers.", + "author": "Larry Niven" }, { - "quote":"Always go to other people’s funerals, otherwise, they won’t come to yours.", - "author":"Yogi Berra" + "quote": "A language that doesn't affect the way you think about programming is not worth knowing.", + "author": "Alan J. Perlis" }, { - "quote":"Women are wiser than men because they know less and understand more.", - "author":"James Thurber" + "quote": "Walking on water and developing software from a specification are easy if both are frozen.", + "author": "Edward V. Berard" }, { - "quote":"I’d rather have 1% of the effort of 100 men than 100% of my own effort.", - "author":"J. Paul Getty" + "quote": "Perl – The only language that looks the same before and after RSA encryption.", + "author": "Keith Bostic" }, { - "quote":"Hooray! Hooray! The end of the world has been postponed!", - "author":"Hergé" + "quote": "The most important property of a program is whether it accomplishes the intention of its user.", + "author": "C.A.R. Hoare" }, { - "quote":"Imagination is more important than knowledge.", - "author":"Albert Einstein" + "quote": "Object-oriented programming offers a sustainable way to write spaghetti code. It lets you accrete programs as a series of patches.", + "author": "Paul Graham" }, { - "quote":"At the end of the day, if I can say I had fun, it was a good day.", - "author":"Simon Biles" + "quote": "Programming isn't about what you know; it's about what you can figure out.", + "author": "Chris Pine" + }, + { + "quote": "Talk is cheap. Show me the code.", + "author": "Linus Torvalds" + }, + { + "quote": "If you think good architecture is expensive, try bad architecture.", + "author": "Brian Foote" + }, + { + "quote": "Don’t comment bad code – rewrite it.", + "author": "Brian Kernighan" } ], - "programming":[ + "dream": [ { - "quote":"Any fool can write code that a computer can understand. Good programmers write code that humans can understand.", - "author":"Martin Fowler" + "quote": "Every great dream begins with a dreamer. Always remember, you have within you the strength, the patience, and the passion to reach for the stars to change the world.", + "author": "Harriet Tubman" }, { - "quote":"First, solve the problem. Then, write the code.", - "author":"John Johnson" + "quote": "All our dreams can come true, if we have the courage to pursue them.", + "author": "Walt Disney" }, { - "quote":"Experience is the name everyone gives to their mistakes.", - "author":"Oscar Wilde" + "quote": "Follow your dreams, believe in yourself and don’t give up.", + "author": "Rachel Corrie" }, { - "quote":"Java is to JavaScript what car is to Carpet.", - "author":"Chris Heilmann" + "quote": "We all have dreams. But in order to make dreams come into reality, it takes an awful lot of determination, dedication, self-discipline, and effort.", + "author": "Jesse Owens" }, { - "quote":"Sometimes it pays to stay in bed on Monday, rather than spending the rest of the week debugging Monday’s code.", - "author":"Dan Salomon" + "quote": "I like the dreams of the future better than the history of the past.", + "author": "Thomas Jefferson" }, { - "quote":"Perfection is achieved not when there is nothing more to add, but rather when there is nothing more to take away.", - "author":" Antoine de Saint-Exupery" + "quote": "There is only one thing that makes a dream impossible to achieve: the fear of failure.", + "author": "Paulo Coelho" }, { - "quote":"Ruby is rubbish! PHP is phpantastic!", - "author":"Nikita Popov" + "quote": "You have to dream before your dreams can come true.", + "author": "A. P. J. Abdul Kalam" }, { - "quote":"Code is like humor. When you have to explain it, it’s bad.", - "author":"Cory House" + "quote": "Dreams are the touchstones of our characters.", + "author": "Henry David Thoreau" }, { - "quote":"Optimism is an occupational hazard of programming: feedback is the treatment.", - "author":"Kent Beck" + "quote": "Dream no small dreams for they have no power to move the hearts of men.", + "author": "Johann Wolfgang von Goethe" }, { - "quote":"When to use iterative development? You should use iterative development only on projects that you want to succeed.", - "author":"Martin Fowler" + "quote": "It takes a lot of courage to show your dreams to someone else.", + "author": "Erma Bombeck" + } + ], + "failure": [ + { + "quote": "Failure is an opportunity to begin again, this time more intelligently.", + "author": "Henry Ford" }, { - "quote":"Before software can be reusable it first has to be usable.", - "author":"Ralph Johnson" + "quote": "One of the most common causes of failure is the habit of quitting when one is overtaken by temporary defeat.", + "author": "Napoleon Hill" }, { - "quote":"Make it work, make it right, make it fast.", - "author":"Kent Beck" + "quote": "Failure cannot cope with persistence.", + "author": "Napoleon Hill" }, { - "quote":"Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live", - "author":"John Woods" + "quote": "To stumble twice against the same stone is a proverbial disgrace.", + "author": "Cicero" }, { - "quote":"I'm not a great programmer; I'm just a good programmer with great habits.", - "author":"Kent Beck" + "quote": "Failing to prepare is preparing to fail.", + "author": "John Wooden" }, { - "quote":"Truth can only be found in one place: the code.", - "author":"Robert C. Martin" + "quote": "Failure is an event, not a person.", + "author": "Napoleon Hill" }, { - "quote":"Give a man a program, frustrate him for a day.Teach a man to program, frustrate him for a lifetime.", - "author":"Muhammad Waseem" + "quote": "People don't mature with age,people mature with damage", + "author": "Unknown" }, { - "quote":"That's the thing about people who think they hate computers. What they really hate is lousy programmers.", - "author":"Larry Niven" + "quote": "Assumption is the mother of all screw-ups.", + "author": "Unknown" + } + ], + "gaming": [ +{ +"quote": "War. War never changes.", +"author": "Fallout (Narration)" +}, +{ +"quote": "It’s dangerous to go alone! Take this.", +"author": "The Legend of Zelda" +}, +{ +"quote": "Finish him!", +"author": "Mortal Kombat (Announcer)" +}, +{ +"quote": "The cake is a lie.", +"author": "Portal" +}, +{ +"quote": "Would you kindly?", +"author": "BioShock (Andrew Ryan/Trigger Phrase)" +}, +{ +"quote": "Get over here!", +"author": "Mortal Kombat (Scorpion)" +}, +{ +"quote": "Do a barrel roll!", +"author": "Star Fox 64 (Peppy Hare)" +}, +{ +"quote": "A man chooses, a slave obeys.", +"author": "BioShock (Andrew Ryan)" +}, +{ +"quote": "The right man in the wrong place can make all the difference in the world.", +"author": "Half-Life 2 (G-Man)" +}, +{ +"quote": "Praise the Sun!", +"author": "Dark Souls (Solaire of Astora)" +}, +{ +"quote": "You Died.", +"author": "Dark Souls (Death Screen)" +}, +{ +"quote": "War never changes.", +"author": "Fallout 4 (Narration)" +}, +{ +"quote": "Stay awhile and listen.", +"author": "Diablo II (Deckard Cain)" +}, +{ +"quote": "We all make choices, but in the end, our choices make us.", +"author": "BioShock (Andrew Ryan)" +}, +{ +"quote": "What is a man? A miserable little pile of secrets!", +"author": "Castlevania: Symphony of the Night (Dracula)" +}, +{ +"quote": "The courage to walk into the darkness, but strength to return to the light.", +"author": "Destiny (Speaker/Allspring Parable)" +}, +{ +"quote": "Kept you waiting, huh?", +"author": "Metal Gear Solid (Solid Snake)" +}, +{ +"quote": "Snake? Snake! Snaaaake!", +"author": "Metal Gear Solid (Codec/Game Over)" +}, +{ +"quote": "A hero need not speak. When he is gone, the world will speak for him.", +"author": "Halo 3 (Gravemind/Series Attribution)" +}, +{ +"quote": "Finish the fight.", +"author": "Halo 3 (Tagline)" +}, +{ +"quote": "You must construct additional Pylons.", +"author": "StarCraft (Protoss Advisor)" +}, +{ +"quote": "The sun is a wondrous body. Like a magnificent father! If only I could be so grossly incandescent!", +"author": "Dark Souls (Solaire of Astora)" +}, +{ +"quote": "Do not be sorry. Be better.", +"author": "God of War (Kratos)" +}, +{ +"quote": "Nothing is true, everything is permitted.", +"author": "Assassin’s Creed (Maxim)" +}, +{ +"quote": "It’s a-me, Mario!", +"author": "Super Mario 64 (Mario)" +}, +{ +"quote": "Hey! Listen!", +"author": "The Legend of Zelda: Ocarina of Time (Navi)" +}, +{ +"quote": "You were almost a Jill sandwich!", +"author": "Resident Evil (Barry Burton)" +}, +{ +"quote": "War. War has changed.", +"author": "Metal Gear Solid 4 (Old Snake/Narration)" +}, +{ +"quote": "We’re not tools of the government or anyone else. Fighting was the only thing I was good at, but at least I always fought for what I believed in.", +"author": "Metal Gear Solid (Gray Fox)" +}, +{ +"quote": "Nothing is more badass than treating a woman with respect!", +"author": "Borderlands 2 (Mr. Torgue)" +}, +{ +"quote": "The ending isn’t any more important than any of the moments leading to it.", +"author": "Journey (Thatgamecompany, design ethos—paraphrased in community)" +}, +{ +"quote": "We don’t get to choose how we start in this life. Real greatness is what you do with the hand you’re dealt.", +"author": "Bioshock Infinite (Quote associated with Booker DeWitt)" +}, +{ +"quote": "Stand in the ashes of a trillion dead souls, and ask the ghosts if honor matters. The silence is your answer.", +"author": "Mass Effect 3 (Javik)" +}, +{ +"quote": "What is better—to be born good, or to overcome your evil nature through great effort?", +"author": "The Elder Scrolls V: Skyrim (Paarthurnax)" +}, +{ +"quote": "The cake is a lie, the companion cube would never lie to me.", +"author": "Portal (Companion Cube lore/graffiti culture)" +}, +{ +"quote": "A state of trance is but a doorway to power.", +"author": "Diablo III (Wizard Flavor Text)" +}, +{ +"quote": "We both said a lot of things that you’re going to regret.", +"author": "Portal 2 (GLaDOS)" +}, +{ +"quote": "I used to be an adventurer like you, then I took an arrow in the knee.", +"author": "The Elder Scrolls V: Skyrim (Guard)" +}, +{ +"quote": "Bring us the girl, and wipe away the debt.", +"author": "BioShock Infinite (Tagline/Hook)" +}, +{ +"quote": "The right man in the wrong place can make all the difference in the world. So, wake up, Mr. Freeman.", +"author": "Half-Life 2 (G-Man)" +}, +{ +"quote": "I’m Commander Shepard, and this is my favorite store on the Citadel.", +"author": "Mass Effect 2 (Commander Shepard)" +}, +{ +"quote": "Warriors of light, may your souls burn bright!", +"author": "Final Fantasy XIV (Toast/Community phrase—event usage)" +}, +{ +"quote": "Greatness from small beginnings.", +"author": "Uncharted 3 (Motto of Sir Francis Drake; Series Theme)" +}, +{ +"quote": "Wake me when you need me.", +"author": "Halo 3 (Master Chief)" +}, +{ +"quote": "Requiescat in pace.", +"author": "Assassin’s Creed II (Ezio Auditore)" +}, +{ +"quote": "You have died of dysentery.", +"author": "The Oregon Trail" +}, +{ +"quote": "I am the law.", +"author": "Judge Dredd: Dredd vs. Death (Character line; broader IP origin)" +}, +{ +"quote": "No gods or kings. Only man.", +"author": "BioShock (Andrew Ryan)" +}, +{ +"quote": "The sun. It shines for all of us.", +"author": "Red Dead Redemption (John Marston—sentiment associated in community)" +}, +{ +"quote": "Endure and survive.", +"author": "The Last of Us (Motto/Comic within game)" +}, +{ +"quote": "A hero is not the one who never falls. He is the one who gets up, again and again.", +"author": "Batman: Arkham (Series ethos; line variants appear in franchise)" +}, +{ +"quote": "Only a mind free of distractions is capable of focus.", +"author": "Sekiro: Shadows Die Twice (Training aphorism—Ashina style)" +}, +{ +"quote": "You can’t kill the metal. Metal will live on.", +"author": "Brütal Legend (Game/Jack Black musical humor—franchise spirit)" +}, +{ +"quote": "The numbers, Mason. What do they mean?", +"author": "Call of Duty: Black Ops (Jason Hudson)" +}, +{ +"quote": "Survival can be a matter of instinct and opportunity.", +"author": "Tomb Raider (2013 era—Lara Croft survival ethos)" +}, +{ +"quote": "I don’t need a weapon; my friends are my power!", +"author": "Kingdom Hearts (Sora)" +}, +{ +"quote": "Hey! You. You’re finally awake.", +"author": "The Elder Scrolls V: Skyrim (Hadvar/Ralof opening scene)" +}, +{ +"quote": "What can change the nature of a man?", +"author": "Planescape: Torment (The Nameless One)" +}, +{ +"quote": "To shreds, you say?", +"author": "Futurama: Worlds of Tomorrow (Meme also linked to show; game tie-in quote)" +}, +{ +"quote": "Glory to Mankind.", +"author": "NieR: Automata (YoRHa Motto)" +}, +{ +"quote": "We work in the dark to serve the light.", +"author": "Assassin’s Creed (Creed maxim)" +}, +{ +"quote": "You are not prepared!", +"author": "World of Warcraft: The Burning Crusade (Illidan Stormrage)" +}, +{ +"quote": "Rip and tear, until it is done.", +"author": "DOOM (2016) (Opening inscription/Theme line)" +}, +{ +"quote": "Stay frosty.", +"author": "Call of Duty 4: Modern Warfare (Captain Price/Soap—military idiom popularized)" +}, +{ +"quote": "You either die a hero, or you live long enough to see yourself become the villain.", +"author": "Batman: The Telltale Series (Line originates from The Dark Knight film)" +}, +{ +"quote": "The strong eat the weak, but the clever eat the strong.", +"author": "Dishonored (Dunwall aphorism—world flavor text)" +}, +{ +"quote": "No Russian.", +"author": "Call of Duty: Modern Warfare 2 (Mission Title)" +}, +{ +"quote": "A hunter is a hunter, even in a dream.", +"author": "Bloodborne (Hunter’s Dream lore sentiment)" +} +] + +, + "birthday": [ + { + "quote": "The only thing better than singing is more singing.", + "author": "Ella Fitzgerald" }, { - "quote":"A language that doesn't affect the way you think about programming is not worth knowing.", - "author":"Alan J. Perlis" + "quote": "Your children need your presence more than your presents.", + "author": "Jesse Jackson" }, { - "quote":"Walking on water and developing software from a specification are easy if both are frozen.", - "author":"Edward V. Berard" + "quote": "Our birthdays are feathers in the broad wing of time.", + "author": "Jean Paul" }, { - "quote":"Perl – The only language that looks the same before and after RSA encryption.", - "author":"Keith Bostic" + "quote": "You don't get older, you get better.", + "author": "Shirley Bassey" }, { - "quote":"The most important property of a program is whether it accomplishes the intention of its user.", - "author":"C.A.R. Hoare" + "quote": "Don't just count your years, make your years count.", + "author": "George Meredith" + } + ], + "Humorous": [ + { + "quote": "People who think they know everything are a great annoyance to those of us who do.", + "author": "Isaac Asimov" }, { - "quote":"Object-oriented programming offers a sustainable way to write spaghetti code. It lets you accrete programs as a series of patches.", - "author":"Paul Graham" + "quote": "I don't want to go to heaven. None of my friends are there.", + "author": "Oscar Wilde" }, { - "quote":"Programming isn't about what you know; it's about what you can figure out.", - "author":"Chris Pine" + "quote": "To get back my youth I would do anything in the world, except take exercise, get up early, or be respectable.", + "author": "Oscar Wilde" }, { - "quote":"Talk is cheap. Show me the code.", - "author":"Linus Torvalds" + "quote": "The difference between fiction and reality? Fiction has to make sense.", + "author": "Tom Clancy" }, { - "quote":"If you think good architecture is expensive, try bad architecture.", - "author":"Brian Foote" + "quote": "The man who says his wife can't take a joke, forgets that she took him.", + "author": "Oscar Wilde" }, { - "quote":"Don’t comment bad code – rewrite it.", - "author":"Brian Kernighan" + "quote": "A bank is a place that will lend you money if you can prove that you don’t need it.", + "author": "Bob Hope" } ], - "dream":[ + "travel": [ { - "quote":"Every great dream begins with a dreamer. Always remember, you have within you the strength, the patience, and the passion to reach for the stars to change the world.", - "author":"Harriet Tubman" + "quote": "Not all those who wander are lost.", + "author": "J.R.R. Tolkien" }, { - "quote":"All our dreams can come true, if we have the courage to pursue them.", - "author":"Walt Disney" + "quote": "The world is a book, and those who do not travel read only one page.", + "author": "Saint Augustine" }, { - "quote":"Follow your dreams, believe in yourself and don’t give up.", - "author":"Rachel Corrie" + "quote": "Travel is fatal to prejudice, bigotry, and narrow-mindedness.", + "author": "Mark Twain" }, { - "quote":"We all have dreams. But in order to make dreams come into reality, it takes an awful lot of determination, dedication, self-discipline, and effort.", - "author":"Jesse Owens" + "quote": "A journey of a thousand miles begins with a single step.", + "author": "Lao Tzu" }, { - "quote":"I like the dreams of the future better than the history of the past.", - "author":"Thomas Jefferson" + "quote": "To travel is to live.", + "author": "Hans Christian Andersen" }, { - "quote":"There is only one thing that makes a dream impossible to achieve: the fear of failure.", - "author":"Paulo Coelho" + "quote": "One’s destination is never a place, but a new way of seeing things.", + "author": "Henry Miller" }, { - "quote":"You have to dream before your dreams can come true.", - "author":"A. P. J. Abdul Kalam" + "quote": "Travel makes one modest. You see what a tiny place you occupy in the world.", + "author": "Gustave Flaubert" }, { - "quote":"Dreams are the touchstones of our characters.", - "author":"Henry David Thoreau" + "quote": "Life is either a daring adventure or nothing at all.", + "author": "Helen Keller" }, { - "quote":"Dream no small dreams for they have no power to move the hearts of men.", - "author":"Johann Wolfgang von Goethe" + "quote": "Do not follow where the path may lead. Go instead where there is no path and leave a trail.", + "author": "Ralph Waldo Emerson" }, { - "quote":"It takes a lot of courage to show your dreams to someone else.", - "author":"Erma Bombeck" - } - ], - "failure":[ + "quote": "People don’t take trips—trips take people.", + "author": "John Steinbeck" + }, { - "quote":"Failure is an opportunity to begin again, this time more intelligently.", - "author":"Henry Ford" + "quote": "We travel, some of us forever, to seek other states, other lives, other souls.", + "author": "Anaïs Nin" }, { - "quote":"One of the most common causes of failure is the habit of quitting when one is overtaken by temporary defeat.", - "author":"Napoleon Hill" + "quote": "A good traveler has no fixed plans, and is not intent on arriving.", + "author": "Lao Tzu" }, { - "quote":"Failure cannot cope with persistence.", - "author":"Napoleon Hill" + "quote": "I haven’t been everywhere, but it’s on my list.", + "author": "Susan Sontag" }, { - "quote":"To stumble twice against the same stone is a proverbial disgrace.", - "author":"Cicero" + "quote": "The journey not the arrival matters.", + "author": "T.S. Eliot" }, { - "quote":"Failing to prepare is preparing to fail.", - "author":"John Wooden" + "quote": "Man cannot discover new oceans unless he has the courage to lose sight of the shore.", + "author": "André Gide" }, { - "quote":"Failure is an event, not a person.", - "author":"Napoleon Hill" + "quote": "Traveling—it leaves you speechless, then turns you into a storyteller.", + "author": "Ibn Battuta" }, { - "quote":"People don't mature with age,people mature with damage", - "author":"Unknown" + "quote": "Once a year, go someplace you’ve never been before.", + "author": "Dalai Lama" }, { - "quote":"Assumption is the mother of all screw-ups.", - "author":"Unknown" - } - ], - "gaming":[ + "quote": "See the world. It’s more fantastic than any dream made or paid for in factories.", + "author": "Ray Bradbury" + }, { - "quote":"A game is the complete exploration of freedom within a restrictive environment.", - "author":"Vineet Raj Kapoor" + "quote": "All journeys have secret destinations of which the traveler is unaware.", + "author": "Martin Buber" }, { - "quote":"Games were not just a diversion, I realized. Games could make you feel.", - "author":"Sid Meier" + "quote": "The gladdest moment in human life, methinks, is a departure into unknown lands.", + "author": "Sir Richard Burton" }, { - "quote":"In summers, after 1 hour of extreme gaming you can use your laptop to iron your shirt.", - "author":"Neetesh Dixit" + "quote": "The real voyage of discovery consists not in seeking new landscapes, but in having new eyes.", + "author": "Marcel Proust" }, { - "quote":"For a game, you don't need a teacher.", - "author":"Deja" + "quote": "Our battered suitcases were piled on the sidewalk again; we had longer ways to go. But no matter, the road is life.", + "author": "Jack Kerouac" }, { - "quote":"Gamers have so much freedom. you can go anywhere you want.", - "author":"Jenova Chen" - } - ], - "birthday":[ + "quote": "Wherever you go becomes a part of you somehow.", + "author": "Anita Desai" + }, { - "quote":"The only thing better than singing is more singing.", - "author":"Ella Fitzgerald" + "quote": "He who would travel happily must travel light.", + "author": "Antoine de Saint-Exupéry" }, { - "quote":"Your children need your presence more than your presents.", - "author":"Jesse Jackson" + "quote": "A ship in harbor is safe, but that is not what ships are built for.", + "author": "John A. Shedd" }, { - "quote":"Our birthdays are feathers in the broad wing of time.", - "author":"Jean Paul" + "quote": "To awaken quite alone in a strange town is one of the pleasantest sensations in the world.", + "author": "Freya Stark" }, { - "quote":"You don't get older, you get better.", - "author":"Shirley Bassey" + "quote": "Like all great travelers, I have seen more than I remember, and remember more than I have seen.", + "author": "Benjamin Disraeli" }, { - "quote":"Don't just count your years, make your years count.", - "author":"George Meredith" - } - ], - "Humorous":[ + "quote": "Take only memories, leave only footprints.", + "author": "Chief Seattle" + }, { - "quote":"People who think they know everything are a great annoyance to those of us who do.", - "author":"Isaac Asimov" + "quote": "I met a lot of people in Europe. I even encountered myself.", + "author": "James Baldwin" }, { - "quote":"I don't want to go to heaven. None of my friends are there.", - "author":"Oscar Wilde" + "quote": "Travel brings power and love back into your life.", + "author": "Rumi" }, { - "quote":"To get back my youth I would do anything in the world, except take exercise, get up early, or be respectable.", - "author":"Oscar Wilde" + "quote": "Wandering re-establishes the original harmony which once existed between man and the universe.", + "author": "Anatole France" }, { - "quote":"The difference between fiction and reality? Fiction has to make sense.", - "author":"Tom Clancy" + "quote": "The most beautiful thing in the world is, of course, the world itself.", + "author": "Wallace Stevens" }, { - "quote":"The man who says his wife can't take a joke, forgets that she took him.", - "author":"Oscar Wilde" + "quote": "To travel is to discover that everyone is wrong about other countries.", + "author": "Aldous Huxley" }, { - "quote":"A bank is a place that will lend you money if you can prove that you don’t need it.", - "author":"Bob Hope" - } - ], - "travel":[ + "quote": "A journey is best measured in friends, not in miles.", + "author": "Tim Cahill" + }, + { + "quote": "We wander for distraction, but we travel for fulfillment.", + "author": "Hilaire Belloc" + }, + { + "quote": "Once you have traveled, the voyage never ends; the mind can never break off from the journey.", + "author": "Pat Conroy" + }, + { + "quote": "The traveler sees what he sees, the tourist sees what he has come to see.", + "author": "G.K. Chesterton" + }, + { + "quote": "Wherever you go, go with all your heart.", + "author": "Confucius" + }, + { + "quote": "To travel is worth any cost or sacrifice.", + "author": "Elizabeth Gilbert" + }, + { + "quote": "Paris is always a good idea.", + "author": "Audrey Hepburn" + }, + { + "quote": "Travel and change of place impart new vigor to the mind.", + "author": "Seneca" + }, + { + "quote": "To move, to breathe, to fly, to float; to gain all while you give; to roam the roads of lands remote; to travel is to live.", + "author": "Hans Christian Andersen" + }, + { + "quote": "There are no foreign lands. It is the traveler only who is foreign.", + "author": "Robert Louis Stevenson" + }, + { + "quote": "A mind that is stretched by a new experience can never go back to its old dimensions.", + "author": "Oliver Wendell Holmes Sr." + }, + { + "quote": "It is better to travel well than to arrive.", + "author": "Buddha" + }, { - "quote":"Jobs fill your pockets, adventures fill your soul.", - "author":"Jamie Lyn Beatty" + "quote": "If you reject the food, ignore the customs, fear the religion, and avoid the people, you might better stay home.", + "author": "James A. Michener" }, { - "quote":"Its the not the Destination, It's the journey.", - "author":"Ralph Waldo Emerson" + "quote": "The journey is my home.", + "author": "Muriel Rukeyser" }, { - "quote":"Take only memories, leave only footprints.", - "author":"Chief Seattle" + "quote": "The impulse to travel is one of the hopeful symptoms of life.", + "author": "Agnes Repplier" }, { - "quote":"The journey of a thousand miles begins with one step.", - "author":"Lao Tzu" + "quote": "To travel hopefully is a better thing than to arrive.", + "author": "Robert Louis Stevenson" }, { - "quote":"A journey is best measured in friends, not in miles. ", - "author":"Tim Cahill" + "quote": "Oh, the places you’ll go!", + "author": "Dr. Seuss" } ], - "typo":[ + "typo": [ + { + "quote": "This may sound cheesy, but everything will be grate!", + "author": "Unknown" + }, + { + "quote": "Give me liberty, or give me deaf!", + "author": "Unknown" + }, + { + "quote": "I used to be a baker, but I couldn’t make enough dough — now I’m just bred and butter.", + "author": "Unknown" + }, + { + "quote": "I have a photographic memory; it just never develped.", + "author": "Unknown" + }, + { + "quote": "I’m reading a book on anti-gravity — it’s impossable to put down.", + "author": "Unknown" + }, + { + "quote": "My math skills are average at best — they just don’t ad up.", + "author": "Unknown" + }, + { + "quote": "I’m writing a book on hurricanes — it’s taking the wind out of my sales.", + "author": "Unknown" + }, + { + "quote": "I told a chemistry joke, but there was no reaction — element of surprise was misssing.", + "author": "Unknown" + }, + { + "quote": "I tried to catch some fog yesterday — I mist.", + "author": "Unknown" + }, + { + "quote": "I wanted to learn sign language, but it was over my hand.", + "author": "Unknown" + }, + { + "quote": "The calendar’s days are numbered — it’s about time.", + "author": "Unknown" + }, + { + "quote": "I used to be a banker, but I lost intrest.", + "author": "Unknown" + }, + { + "quote": "I wondered why the baseball was getting bigger — then it hit me rite in the feels.", + "author": "Unknown" + }, + { + "quote": "I’m on a seafood diet — I see food and I eate it.", + "author": "Unknown" + }, + { + "quote": "I put my root beer in a square glass — now it’s just beer.", + "author": "Unknown" + }, + { + "quote": "The past, present, and future walked into a bar — it was tense, very grammer tense.", + "author": "Unknown" + }, + { + "quote": "Broken pencils are pointles — but they still make a marke.", + "author": "Unknown" + }, + { + "quote": "I gave all my dead batteries away — free of charge, but they re-fused.", + "author": "Unknown" + }, + { + "quote": "I used to play piano by ear, now I use my hands — much less hare.", + "author": "Unknown" + }, + { + "quote": "I’m reading a book about anti-social behavior — nobody else gets the point, introvercly.", + "author": "Unknown" + }, + { + "quote": "I’m so good at sleeping I can do it with my eyes close.", + "author": "Unknown" + }, + { + "quote": "I’d tell you a construction joke, but I’m still working on the punchlien.", + "author": "Unknown" + }, + { + "quote": "I’m on a whiskey diet — I’ve lost three days alreedy.", + "author": "Unknown" + }, + { + "quote": "Claustrophobic people are more productive thinking outside the boxe.", + "author": "Unknown" + }, + { + "quote": "I used to be a baker too — couldn’t earn my keep, kneadless to say.", + "author": "Unknown" + }, + { + "quote": "The man who survived pepper spray and mustard gas is now a seasoned vetern.", + "author": "Unknown" + }, + { + "quote": "I don’t trust stairs — they’re always up to somthing.", + "author": "Unknown" + }, + { + "quote": "I invented a new word — plagairism.", + "author": "Unknown" + }, + { + "quote": "I bought shoes from a drug dealer once — I don’t know what they laced them with, but I was tripping for dayss.", + "author": "Unknown" + }, + { + "quote": "I was going to tell a time-travel joke — but you didn’t like it yesturday.", + "author": "Unknown" + }, + { + "quote": "I stayed up all night wondering where the sun went — then it dawned on me eventualy.", + "author": "Unknown" + }, + { + "quote": "I’m reading a book on glue — can’t seam to put it down.", + "author": "Unknown" + }, + { + "quote": "I told a joke about infinity — it went on for ever and everr.", + "author": "Unknown" + }, + { + "quote": "I used to be a Velcro salesman — it was a total ripoff, stuck with me tho.", + "author": "Unknown" + }, + { + "quote": "I once had a job at a calendar factory — I got fired for taking a few days offf.", + "author": "Unknown" + }, + { + "quote": "Parallel lines have so much in common — it’s a shame they’ll never meat.", + "author": "Unknown" + }, + { + "quote": "I asked the librarian if the library had books on paranoia — she whispered, ‘they’re right behinde you.’", + "author": "Unknown" + }, + { + "quote": "I told a joke about numb3rs — nobody counted on that outcome.", + "author": "Unknown" + }, + { + "quote": "I don’t play soccer because I enjoy the sport — I’m just in it for the kicks, pun intennded.", + "author": "Unknown" + }, + { + "quote": "I fell in love with a mathematician — she had acute angles, truly obtuse to my charmm.", + "author": "Unknown" + }, + { + "quote": "I ate a clock once — it was very time consuming, seconds were the worst partts.", + "author": "Unknown" + }, + { + "quote": "The person who invented autocorrect should burn in hello.", + "author": "Unknown" + }, + { + "quote": "My friend’s bakery burned down — now his business is toast, crumby situtation.", + "author": "Unknown" + }, + { + "quote": "Did you hear about the claustrophobic astronaut? He needed a little spacee.", + "author": "Unknown" + }, + { + "quote": "I used to hate facial hair — but then it grew on me, mustahce you a question.", + "author": "Unknown" + }, + { + "quote": "I gave up my seat to a blind person on the bus — that’s how I lost my job as a bus drive.", + "author": "Unknown" + }, + { + "quote": "I wasn’t originally going to get a brain transplant — but then I changed my minde.", + "author": "Unknown" + }, + { + "quote": "I know a lot of jokes about retired people — none of them workk.", + "author": "Unknown" + }, + { + "quote": "I’m reading a book about teleportation — it’s bound to take me places, eventualy.", + "author": "Unknown" + }, + { + "quote": "Earth without ‘art’ is just ‘eh’ — and without ‘ear’ you can’t here it.", + "author": "Unknown" + }, + { + "quote": "I told my computer I needed a break — now it won’t stop sending me kit-kat ads, very cache-y.", + "author": "Unknown" + }, { - "quote":"This may sound cheesy, but everything will be grate!", - "author":"Unknown" + "quote": "I asked my dog what’s two minus two — he said nothing, barkitecture flaw.", + "author": "Unknown" }, { - "quote":"Give me liberty, or give me deaf!", - "author":"Unknown" + "quote": "I used to date a math teacher — we had problems, then we solved them wrong.", + "author": "Unknown" } ] -} +} \ No newline at end of file