├── motivate ├── motivate.bat ├── __init__.py ├── install.sh ├── data │ ├── 015.json │ ├── 141.json │ ├── 180.json │ ├── 138.json │ ├── 136.json │ ├── 110.json │ ├── 145.json │ ├── 113.json │ ├── 022.json │ ├── 117.json │ ├── 149.json │ ├── 150.json │ ├── 112.json │ ├── 100.json │ ├── 130.json │ ├── 101.json │ ├── 111.json │ ├── 126.json │ ├── 154.json │ ├── 153.json │ ├── 003.json │ ├── 091.json │ ├── 108.json │ ├── 132.json │ ├── 118.json │ ├── 125.json │ ├── 124.json │ ├── 123.json │ ├── 146.json │ ├── 116.json │ ├── 148.json │ ├── 005.json │ ├── 134.json │ ├── 176.json │ ├── 155.json │ ├── 128.json │ ├── 178.json │ ├── 121.json │ ├── 093.json │ ├── 131.json │ ├── 147.json │ ├── 127.json │ ├── 157.json │ ├── 143.json │ ├── 013.json │ ├── 021.json │ ├── 129.json │ ├── 144.json │ ├── 177.json │ ├── 120.json │ ├── 140.json │ ├── 164.json │ ├── 160.json │ ├── 170.json │ ├── 014.json │ ├── 017.json │ ├── 019.json │ ├── 122.json │ ├── 020.json │ ├── 165.json │ ├── 086.json │ ├── 092.json │ ├── 166.json │ ├── 133.json │ ├── 167.json │ ├── 018.json │ ├── 135.json │ ├── 169.json │ ├── 152.json │ └── 139.json ├── find_dupes.py ├── unique_quotes.py ├── txt_to_json.py ├── combine_remove_dups.py └── quotes_api.py ├── requirements.txt ├── setup.cfg ├── motivate.png ├── dummy.sh ├── .gitignore ├── setup.py ├── LICENSE ├── README.md └── 200.json /motivate/motivate.bat: -------------------------------------------------------------------------------- 1 | python motivate.py -------------------------------------------------------------------------------- /motivate/__init__.py: -------------------------------------------------------------------------------- 1 | from motivate import quote -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | setuptools==36.2.2 2 | requests 3 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /motivate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaris/motivate/HEAD/motivate.png -------------------------------------------------------------------------------- /dummy.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | while true 3 | do 4 | moti 5 | sleep 1m 6 | done 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | env/ 3 | venv/ 4 | cache/ 5 | .idea 6 | dist/ 7 | motivate.egg-info/ 8 | .DS_Store 9 | 10 | moti 11 | mmoti 12 | /.vs 13 | -------------------------------------------------------------------------------- /motivate/install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | if [[ $EUID -ne 0 ]]; then 4 | echo "This script must be with sudo" 1>&2 5 | exit 1 6 | fi 7 | 8 | INSTALLDIR="/opt/motivate" 9 | 10 | # Create motivate folder 11 | mkdir -p $INSTALLDIR 12 | 13 | # Copy the datafolder and set permissions 14 | cp -r $PWD/data $INSTALLDIR/ 15 | chmod -R 777 $INSTALLDIR/data 16 | 17 | # Copy and link the executable 18 | cp motivate.py $INSTALLDIR 19 | ln -s $INSTALLDIR/motivate.py /usr/local/bin/motivate 20 | -------------------------------------------------------------------------------- /motivate/data/015.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "Technology is a useful servant but a dangerous master.", 5 | "author": "Christian Lous Lange" 6 | }, 7 | { 8 | "quote": "The science of today is the technology of tomorrow", 9 | "author": "Edward Teller" 10 | }, 11 | { 12 | "quote": "The only constant in the technology industry is change", 13 | "author": "Marc Benioff" 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | from setuptools import setup, find_packages 2 | 3 | setup( 4 | name='motivate', 5 | version='0.2', 6 | description='A simple script to print random motivational quotes.', 7 | url='https://github.com/mubaris/motivate', 8 | download_url='https://github.com/mubaris/motivate/archive/0.2.tar.gz', 9 | author='mubaris', 10 | author_email='mubarishassannk@gmail.com', 11 | license='MIT', 12 | keywords = ['motivation', 'quotes'], 13 | packages=find_packages(), 14 | zip_safe=False 15 | ) -------------------------------------------------------------------------------- /motivate/find_dupes.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import json 4 | import os 5 | 6 | scriptpath = os.path.dirname(__file__) 7 | data_dir = os.path.join(scriptpath, 'data') 8 | all_json = [f for f in os.listdir(data_dir) if os.path.isfile(os.path.join(data_dir, f))] 9 | quotes = [] 10 | for f in all_json: 11 | filename = os.path.join(data_dir, f) 12 | with open(filename) as json_data: 13 | quotes += json.load(json_data)['data'] 14 | 15 | uniq_authors = {quote['author'] for quote in quotes} 16 | uniq_quotes = {quote['quote'] for quote in quotes} 17 | 18 | print('Unique quotes: {}, authors: {}'.format(len(uniq_quotes), len(uniq_authors))) 19 | 20 | seen = set() 21 | dupes = sorted([x for x in quotes if x['quote'] in seen or seen.add(x['quote'])], key=lambda x: x['quote']) 22 | 23 | print(*dupes, sep='\n') 24 | -------------------------------------------------------------------------------- /motivate/unique_quotes.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import json 4 | import os 5 | 6 | scriptpath = os.path.dirname(__file__) 7 | data_dir = os.path.join(scriptpath, 'data') 8 | quote_files = [os.path.join(data_dir, f) for f in os.listdir(data_dir) if os.path.isfile(os.path.join(data_dir, f))] 9 | quotes = [] 10 | for f in quote_files: 11 | with open(f, 'r') as quote_file: 12 | quotes += json.load(quote_file)['data'] 13 | 14 | unique_quotes = [] 15 | seen_quotes = set() 16 | for x in quotes: 17 | if x['quote'] not in seen_quotes: 18 | unique_quotes.append(x) 19 | seen_quotes.add(x['quote']) 20 | 21 | with open('data_unique/unique_quotes.json', 'w') as unique_quotes_file: 22 | json.dump({'data': list(unique_quotes)}, unique_quotes_file, indent=4, ensure_ascii=False) 23 | unique_quotes_file.write('\n') 24 | -------------------------------------------------------------------------------- /motivate/data/141.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote":"You are your own best friend. Listen to yourself more often than someone else.", 5 | "author":"Steven Cuoco" 6 | }, 7 | { 8 | "quote":"You deserve more in your life. Think big. Love more and share beyond your limits. You will then become limitless.", 9 | "author":"Steven Cuoco" 10 | }, 11 | { 12 | "quote":"How vain it is to sit down to write when you have not stood up to live.", 13 | "author":"Henry David Thoreau" 14 | }, 15 | { 16 | "quote":"The only people who see the whole picture, are the ones who step out of the frame.", 17 | "author":"Salman Rushdie" 18 | }, 19 | { 20 | "quote":"Happiness is not something you postpone for the future;it is something you design for the present.", 21 | "author":"Jim Rohn" 22 | }, 23 | { 24 | "quote":"The bird is powered by its own life and by its motivation", 25 | "author":"APJ Abdul Kalam" 26 | } 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /motivate/data/180.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "You can have everything you want in life if you just help enough people get what they want in life.", 5 | "author": "Zig Ziglar" 6 | }, 7 | { 8 | "quote": "If I have the belief that I can do it, I shall surely acquire the capacity to do it even if I may not have it at the beginning.", 9 | "author": "Gandhi" 10 | }, 11 | { 12 | "quote": "It takes courage to grow up and become who you really are.", 13 | "author": "E. E. Cummings" 14 | }, 15 | { 16 | "quote": "Great minds have great purposes, others have wishes. Little minds are tamed and subdued by misfortune; but great minds rise above them.", 17 | "author": "Washington Irving" 18 | }, 19 | { 20 | "quote": "The start is what stops most people.", 21 | "author": "Don Shula" 22 | }, 23 | { 24 | "quote": "Happiness is not something you postpone for the future; it is something you desing for the present.", 25 | "author": "Jim Rohn" 26 | } 27 | ] 28 | } 29 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Mubaris Hassan 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /motivate/txt_to_json.py: -------------------------------------------------------------------------------- 1 | # Utilitary to parse a txt file to the json format to make contributions easier 2 | # The file must be in the following format 3 | # "quote1",Author 4 | # "quote2",Other Author 5 | # To run: python quotes_to_json.py 6 | # if the quotes file is not named quotes.txt them run: python quotes_to_json.py --file="File name" 7 | 8 | import json 9 | import argparse 10 | import os 11 | import sys 12 | 13 | if __name__ == "__main__": 14 | parser = argparse.ArgumentParser() 15 | parser.add_argument("--file", help="Name of the quotes file", default="quotes.txt") 16 | args = parser.parse_args() 17 | 18 | file_name = args.file 19 | 20 | if not os.path.exists(file_name): 21 | sys.exit("Error: The specified file doesn't exists.") 22 | 23 | quotes = [] 24 | with open(file_name, 'r') as f: 25 | for line in f: 26 | divided_string = line.strip("\n").split('\",') 27 | quote = divided_string[0].strip('\"') 28 | author = divided_string[1][1:] if divided_string[1][0] == ' ' else divided_string[1] 29 | quotes.append({ 30 | "author": author, 31 | "quote": quote 32 | }) 33 | 34 | final_dictionary = {"data":quotes} 35 | 36 | with open('quotes.json', 'w') as j: 37 | json.dump(final_dictionary, j) 38 | 39 | print("Sucess! Result file: quotes.json") 40 | -------------------------------------------------------------------------------- /motivate/data/138.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "Harsha Bhogle", 5 | "quote": "Sometimes your greatest strength can emerge as a weakness if the context changes." 6 | }, 7 | { 8 | "author": "Harsha Bhogle", 9 | "quote": "Change doesn't always mean progress, but the status quo isn't always the best result either. It is merely the most convenient." 10 | }, 11 | { 12 | "author": "Heraclitus", 13 | "quote": "There is nothing permanent except change." 14 | }, 15 | { 16 | "author": "Khalil Gibran", 17 | "quote": "Life without love is like a tree without blossoms or fruit." 18 | }, 19 | { 20 | "author": "Aesop", 21 | "quote": "No act of kindness, no matter how small, is ever wasted." 22 | }, 23 | { 24 | "author": "Napoleon Hill", 25 | "quote": "If you cannot do great things, do small things in a great way." 26 | }, 27 | { 28 | "author": "Sun Tzu", 29 | "quote": "The supreme art of war is to subdue the enemy without fighting." 30 | }, 31 | { 32 | "author": "George Orwell", 33 | "quote": "Happiness can exist only in acceptance." 34 | }, 35 | 36 | { 37 | "author": "William Blake", 38 | "quote": "Think in the morning. Act in the noon. Eat in the evening. Sleep in the night." 39 | }, 40 | { 41 | "author": "Steve Jobs", 42 | "quote": "Your time is limited, so don’t waste it living someone else’s life." 43 | }, 44 | { 45 | "author": "J.R.R. Tolkien", 46 | "quote": "Not all those who wander are lost." 47 | }, 48 | { 49 | "author": "George Sand", 50 | "quote": "There is only one happiness in this life, to love and be loved." 51 | }, 52 | { 53 | "author": "Plato", 54 | "quote": "Wise men speak because they have something to say; Fools because they have to say something." 55 | }, 56 | { 57 | "author": "Euripides", 58 | "quote": "Friends show their love in times of trouble, not in happiness." 59 | }, 60 | { 61 | "author": "Socrates", 62 | "quote": "The only true wisdom is in knowing you know nothing." 63 | } 64 | ] 65 | } 66 | -------------------------------------------------------------------------------- /motivate/combine_remove_dups.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | from json import load, dump 4 | from os import listdir 5 | from os.path import dirname, join, isfile 6 | 7 | 8 | def build_file_list(data_dir): 9 | return [file for file in listdir(data_dir) if isfile(join(data_dir, file))] 10 | 11 | def iterate_add_quotes(data_dir, file_list): 12 | all_quotes = [] 13 | for single_file in file_list: 14 | all_quotes += get_quotes(join(data_dir, single_file)) 15 | return unique_authors(all_quotes), unique_quotes(all_quotes), all_quotes 16 | 17 | def get_quotes(single_file_path): 18 | with open(single_file_path, encoding='utf8') as json_data: 19 | return load(json_data)['data'] 20 | 21 | def unique_authors(quote_list): 22 | return {quote['author'] for quote in quote_list} 23 | 24 | def unique_quotes(quote_list): 25 | return {quote['quote'] for quote in quote_list} 26 | 27 | def print_uniques(authors, quotes): 28 | print('Unique quotes: {}, authors: {}'.format(len(quotes), len(authors))) 29 | 30 | def find_duplicates(all_quotes): 31 | seen = set() 32 | return sorted([x for x in all_quotes if x['quote'] in seen or seen.add(x['quote'])], key=lambda x: x['quote']) 33 | 34 | 35 | # for each single quote dictionary in the list 36 | # list comprehension to make a list of the tuple of items preserving the pairing while 37 | # use set to remove duplicates 38 | # take these tuples, re-recreate a dictionary 39 | # then build the top level "data": [{'quote': 'author'},....] dictionary 40 | def get_unique_pairs(all_quotes): 41 | return {"data":[dict(tuple) for tuple in set([tuple(dict_items.items()) for dict_items in all_quotes])]} 42 | 43 | 44 | def output_json(processed_quotes): 45 | with open('data_unique/unique_quotes.json', 'w') as out_file: 46 | dump(processed_quotes, out_file, indent=4) 47 | 48 | 49 | def main(data_directory): 50 | all_files = build_file_list(data_directory) 51 | unique_authors, unique_quotes, all_quotes = iterate_add_quotes(data_directory, all_files) 52 | 53 | filtered_quotes = get_unique_pairs(all_quotes) 54 | print_uniques(unique_authors, unique_quotes) 55 | 56 | output_json(filtered_quotes) 57 | 58 | 59 | if __name__ == '__main__': 60 | scriptpath = dirname(__file__) 61 | data_dir = join(scriptpath, 'data') 62 | 63 | main(data_dir) -------------------------------------------------------------------------------- /motivate/data/136.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "Helen Hayes", 5 | "quote": "The expert at anything was once a beginner" 6 | }, 7 | { 8 | "author": "A.P.J Abdul Kalam", 9 | "quote": "Failure will never overtake me if my determination to succeed is strong enough." 10 | }, 11 | { 12 | "author": "A.P.J Abdul Kalam", 13 | "quote": "Don’t take rest after your first victory because if you fail in second, more lips are waiting to say that your first victory was just luck." 14 | }, 15 | { 16 | "author": "A.P.J Abdul Kalam", 17 | "quote": "All Birds find shelter during a rain. But Eagle avoids rain by flying above the Clouds." 18 | }, 19 | { 20 | "author": "A.P.J Abdul Kalam", 21 | "quote": "Man needs difficulties in life because they are necessary to enjoy the success." 22 | }, 23 | { 24 | "author": "A.P.J Abdul Kalam", 25 | "quote": "If you want to shine like a sun. First burn like a sun." 26 | }, 27 | { 28 | "author": "Steve Jobs", 29 | "quote": "Don’t let the noise of others’ opinions drown out your own inner voice." 30 | }, 31 | { 32 | "author": "Steve Jobs", 33 | "quote": "Being the richest man in the cemetery doesn’t matter to me. Going to bed at night saying we’ve done something wonderful… that’s what matters to me." 34 | }, 35 | 36 | { 37 | "author": "Steve Jobs", 38 | "quote": "Have the courage to follow your heart and intuition. They somehow already know what you truly want to become. Everything else is secondary." 39 | }, 40 | { 41 | "author": "Steve Jobs", 42 | "quote": "Your time is limited, so don’t waste it living someone else’s life." 43 | }, 44 | { 45 | "author": "Steve Jobs", 46 | "quote": "You have to be burning with an idea, or a problem, or a wrong that you want to right. If you’re not passionate enough from the start, you’ll never stick it out." 47 | }, 48 | { 49 | "author": "M.S. Dhoni", 50 | "quote": "Till the full stop doesn't comes, the sentence doesn't completes." 51 | }, 52 | { 53 | "author": "M.S. Dhoni", 54 | "quote": "When you Die, you Die. You don't think a better way to do it." 55 | }, 56 | { 57 | "author": "M.S. Dhoni", 58 | "quote": "I have three Dogs at home. Even after losing a series or winning they treat me the same way." 59 | }, 60 | { 61 | "author": "M.S. Dhoni", 62 | "quote": "You don't play for the crowd, you play for the country." 63 | } 64 | ] 65 | } 66 | -------------------------------------------------------------------------------- /motivate/data/110.json: -------------------------------------------------------------------------------- 1 | { 2 | "data":[ 3 | { 4 | "author": "Anonymous", 5 | "quote": "This too shall pass." 6 | }, 7 | { 8 | "author": "Albert Einstein", 9 | "quote": "Any fool can know. The point is to understand." 10 | }, 11 | { 12 | "author": "Winston Churchill", 13 | "quote": "If you are going through hell, keep going." 14 | }, 15 | { 16 | "author": "Robert Heilein", 17 | "quote": "There's no free lunch." 18 | }, 19 | { 20 | "author": "Pablo Picasso", 21 | "quote": "Everything you can imagine is real." 22 | }, 23 | { 24 | "author": "Anonymous", 25 | "quote": "I'm my problem but also my solution." 26 | }, 27 | { 28 | "author": "Anonymous", 29 | "quote": "Can't move mountains? Try small stones." 30 | }, 31 | { 32 | "author": "Eleanor Roosevelt", 33 | "quote": "Do what you feel right, for you'll be criticised anyway." 34 | }, 35 | { 36 | "author": "Jim Rohn", 37 | "quote": "Don't wish it were easier. Wish you were better." 38 | }, 39 | { 40 | "author": "Henry Ford", 41 | "quote": "Vision without execution is just hallucination." 42 | }, 43 | { 44 | "author": "Anonymous", 45 | "quote": "The moment you realize that you know nothing, you'll know everything." 46 | }, 47 | { 48 | "author": "Oscar Wilde", 49 | "quote": "Be yourself. Everyone else is already taken." 50 | }, 51 | { 52 | "author": "Gerard Butler", 53 | "quote": "Be the hero of your own life story" 54 | }, 55 | { 56 | "author": "Jim Rohn", 57 | "quote": "Either you run the day or the day runs you." 58 | }, 59 | { 60 | "author": "Chris Grosser", 61 | "quote": "Opportunities don't happen, you create them." 62 | }, 63 | { 64 | "author": "Confucius", 65 | "quote": "It does not matter how slowly you go, so long as you do not stop." 66 | }, 67 | { 68 | "author": "Spryte Loriano", 69 | "quote": "Every great story on the planet happened when someone decided not to give up, and kept going no matter what." 70 | }, 71 | { 72 | "author": "Charles Darwin", 73 | "quote": "A man who dares to waste one hour of time has not discovered the value of life." 74 | }, 75 | { 76 | "author": "Leonardo DiCaprio", 77 | "quote": "If you can do what you do best and be happy, you're further along in life than most people." 78 | }, 79 | { 80 | "author": "Aristotle", 81 | "quote": "He who has overcome his fears will truly be free." 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/145.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "Don't raise your voice. Improve your arguement.", 5 | "author": "Harvey Specter" 6 | }, 7 | { 8 | "quote": "Work until you no longer have to introduce yourself.", 9 | "author": "Harvey Specter" 10 | }, 11 | { 12 | "quote": "You'd be suprised what people you trust would do when someone puts them in a position where they think they don't have a choice.", 13 | "author": "Harvey Specter" 14 | }, 15 | { 16 | "quote": "Never destroy anyone in public when you can accomplish the same result in private.", 17 | "author": "Harvey Specter" 18 | }, 19 | { 20 | "quote": "Win a no win situation by rewriting the rules.", 21 | "author": "Harvey Specter" 22 | }, 23 | { 24 | "quote": "Kill them with success, Bury them with a smile.", 25 | "author": "Harvey Specter" 26 | }, 27 | { 28 | "quote": "Let them hate. Just make sure they spell your name right.", 29 | "author": "Harvey Specter" 30 | }, 31 | { 32 | "quote": "It's not a problem, if you always win.", 33 | "author": "Harvey Specter" 34 | }, 35 | { 36 | "quote": "I'm not about caring, I'm about winning.", 37 | "author": "Harvey Specter" 38 | }, 39 | { 40 | "quote": "I don't play the odds, I play the man.", 41 | "author": "Harvey Specter" 42 | }, 43 | { 44 | "quote": "When you are backed against the wall, Break the goddamn thing down.", 45 | "author": "Harvey Specter" 46 | }, 47 | { 48 | "quote": "I am against having emotions, not against using them.", 49 | "author": "Harvey Specter" 50 | }, 51 | { 52 | "quote": "The only time success comes before work is in dictionary.", 53 | "author": "Harvey Specter" 54 | }, 55 | { 56 | "quote": "Winners don't make excuses.", 57 | "author": "Harvey Specter" 58 | }, 59 | { 60 | "quote": "I don't have dreams, I have goals.", 61 | "author": "Harvey Specter" 62 | }, 63 | { 64 | "quote": "Sometimes good guys gotta to bad things to make the bad guys pay.", 65 | "author": "Harvey Specter" 66 | }, 67 | { 68 | "quote": "It's not bragging, If it is true.", 69 | "author": "Harvey Specter" 70 | } 71 | ] 72 | } 73 | -------------------------------------------------------------------------------- /motivate/data/113.json: -------------------------------------------------------------------------------- 1 | { 2 | "data":[ 3 | { 4 | "author": "Carol Burnett", 5 | "quote": "Only I can change my life. NO one can do it for me." 6 | }, 7 | { 8 | "author": "Ayn Rand", 9 | "quote": "A creative man is motivated by the desire to achieve, not by the desire to beat others." 10 | }, 11 | { 12 | "author": "Carl Sandburg", 13 | "quote": "To be a good loser is to learn how to win." 14 | }, 15 | { 16 | "author": "Norman Ralph Augustine", 17 | "quote": "Motivation will almost always beat mere talent." 18 | }, 19 | { 20 | "author": "Octavio Paz", 21 | "quote": "Deserve your dream." 22 | }, 23 | { 24 | "author": "John W. Gardner", 25 | "quote": "True happiness involves the full use of one's power and talent." 26 | }, 27 | { 28 | "author": "Virgil", 29 | "quote": "They can conquer who believe they can." 30 | }, 31 | { 32 | "author": "Philip Emeagwali", 33 | "quote": "The hardship that I encountered in the past will help me succeed in the future." 34 | }, 35 | { 36 | "author": "Saint Teresea of Avila", 37 | "quote": "Be gentle to all and stern with yourself." 38 | }, 39 | { 40 | "author": "Lucille Ball", 41 | "quote": "The more thing you do,the more you can do." 42 | }, 43 | { 44 | "author": "Baltasar Gracian", 45 | "quote": "The wise does at once what the fool does at last." 46 | }, 47 | { 48 | "author": "John Burroughs", 49 | "quote": "Leap, and net will appear." 50 | }, 51 | { 52 | "author": "Aeschylus", 53 | "quote": "God always strives together with those who strive." 54 | }, 55 | { 56 | "author": "Eliza Dushku", 57 | "quote": "Go big or go home.Because it's true. What do you have to lose?" 58 | }, 59 | { 60 | "author": "Leo Durocher", 61 | "quote": "I come to win." 62 | }, 63 | { 64 | "author": "Roes Kennedy", 65 | "quote": "I know not age, nor weariness nor defeat." 66 | }, 67 | { 68 | "author": "Edgar Cayce", 69 | "quote": "There is a progress whether you are going forward or backward! The thing is to move!" 70 | }, 71 | { 72 | "author": "Shiv Khera", 73 | "quote": "Your positive action combined with positive thinking results in success." 74 | }, 75 | { 76 | "author": "Lyndon B. Johnson", 77 | "quote": "Yesterday is not ours to recover, but tommorrow is ours to win or lose." 78 | }, 79 | { 80 | "author": "Matt Cameron", 81 | "quote": "Live life to the fullest, and focus on the positive." 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/quotes_api.py: -------------------------------------------------------------------------------- 1 | 2 | import re 3 | import json 4 | import secrets 5 | from urllib.parse import urlsplit 6 | 7 | import requests 8 | 9 | 10 | class QuotesApiException(Exception): 11 | pass 12 | 13 | 14 | class QuotesApi: 15 | url = None 16 | 17 | def _get_host(self): 18 | split_res = urlsplit(self.url) 19 | 20 | return "{0.scheme}//{0.netloc}".format(split_res) 21 | 22 | def _fetch_data(self): 23 | assert self.url is not None 24 | 25 | response = requests.get(self.url) 26 | 27 | if response.status_code in [400, 404]: 28 | raise Exception(response.reason) 29 | 30 | return response.text 31 | 32 | def _parse(self, data): 33 | raise NotImplementedError 34 | 35 | def get_random_quote(self): 36 | try: 37 | data = self._fetch_data() 38 | except Exception as e: 39 | raise QuotesApiException( 40 | u"Failed to fetch quote from %s: %s", 41 | self._get_host(), e.message) 42 | 43 | try: 44 | parsed_data = self._parse(data) 45 | except json.JSONDecodeError as e: 46 | raise QuotesApiException( 47 | u"Failed to parse data from %s: %s", 48 | self._get_host(), e.message) 49 | 50 | return parsed_data 51 | 52 | 53 | class QuotesOnDesignAPI(QuotesApi): 54 | url = "http://quotesondesign.com/wp-json/posts?filter%5Borderby%5D=rand&filter%5Bposts_per_page%5D=1" 55 | 56 | def _parse(self, data): 57 | data_dict = json.loads(data)[0] 58 | 59 | return { 60 | "quote": clean_content(data_dict["content"]), 61 | "author": clean_content(data_dict["title"]) 62 | } 63 | 64 | 65 | class ForismaticAPI(QuotesApi): 66 | url = "https://api.forismatic.com/api/1.0/?method=getQuote&format=json&lang=en" 67 | 68 | def _parse(self, data): 69 | data_dict = json.loads(data) 70 | 71 | return { 72 | "quote": clean_content(data_dict["quoteText"]), 73 | "author": clean_content(data_dict["quoteAuthor"]) 74 | } 75 | 76 | QUOTE_APIS = [ 77 | QuotesOnDesignAPI(), 78 | ForismaticAPI() 79 | ] 80 | 81 | 82 | def clean_content(content): 83 | # remove HTML 84 | p = re.compile('<.*?>') 85 | cleaned = re.sub(p, '', content) 86 | 87 | # clean spaces and new lines 88 | return cleaned.replace("\n", "").strip() 89 | 90 | 91 | def get_random_quote(): 92 | return secrets.choice(QUOTE_APIS).get_random_quote() 93 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Motivate 2 | 3 | [![Join the chat at https://gitter.im/pymotivate/Lobby](https://badges.gitter.im/pymotivate/Lobby.svg)](https://gitter.im/pymotivate/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) 4 | 5 | ![Motivate](motivate.png) 6 | 7 |
8 | 9 | A simple script to print random motivational quotes. Highly influenced by linux command [fortune](https://en.wikipedia.org/wiki/Fortune_(Unix)). 10 | 11 | ## Features 12 | * Colored Output 13 | * Supports `bash` and `zsh` 14 | 15 | ## Requirements 16 | 17 | ``` 18 | git 19 | python 3x 20 | ``` 21 | 22 | ## Installation 23 | 24 | ### Linux/MacOS 25 | 26 | ``` 27 | $ git clone https://github.com/mubaris/motivate.git 28 | $ cd motivate/motivate 29 | $ sudo ./install.sh 30 | $ source ~/.bashrc 31 | ``` 32 | 33 | zsh users should replace `.bashrc` with `.zshrc`. 34 | 35 | If you have no root priviledge, install in this way: 36 | ``` 37 | $ git clone https://github.com/mubaris/motivate.git 38 | $ cd motivate 39 | $ ln -s $PWD/motivate/motivate.py moti 40 | $ ln -s $PWD/dummy.sh mmoti 41 | 42 | $ export PATH=$PWD:$PATH 43 | $ # echo 'export PATH=$PWD:$PATH' >> ~/.bashrc 44 | 45 | ``` 46 | Later you can run by calling `moti` (a single run) or `mmoti` (keep running until you break it). 47 | After doing so, I found that python 2.x is enough to run this script. 48 | 49 | ### Windows 50 | 51 | * Make sure you have Python3 on your path. 52 | * Clone the repository `git clone https://github.com/mubaris/motivate.git`. 53 | * Add the path to your local clone to your system path. 54 | * Run `py -3 motivate.py` from the command prompt. 55 | 56 | ## Update Database 57 | 58 | ``` 59 | $ git clone https://github.com/mubaris/motivate.git 60 | $ cd motivate 61 | $ ./UPDATE 62 | ``` 63 | 64 | ## Usage 65 | 66 | ``` 67 | $ motivate 68 | 69 | "When something is important enough, you do it even if the odds are not in your favor." 70 | --Elon Musk 71 | ``` 72 | 73 | ## Contribution 74 | The most popular way to contribute is adding [new quotes](https://github.com/mubaris/motivate/issues/3). You do it by adding next JSON file in `motivate/data/` directory. The rule is 20 quotes per file. 75 | 76 | Before you submit your new JSON file, it is helpful to validate your file at this [website](https://jsonlint.com/) to make sure it is formatly correct. 77 | 78 | But any improvements are welcome - just open a pull request with some description. 79 | 80 | You're also welcome to discuss the idea on [Gitter Chat](https://gitter.im/pymotivate/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge). 81 | -------------------------------------------------------------------------------- /motivate/data/022.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "Oh captain, my captain.", 5 | "author": "Todd Anderson" 6 | }, 7 | { 8 | "quote": "No matter what anybody tells you, words and ideas can change the world.", 9 | "author": "John Keating" 10 | }, 11 | { 12 | "quote": "Go ahead. Look out the window. Isn't it a beautiful day?", 13 | "author": "Anonymous" 14 | }, 15 | { 16 | "quote": "People are crazy and times are strange/ I'm locked in tight, I'm out of range/ I used to care, but things have changed.", 17 | "author": "Bob Dylan" 18 | }, 19 | { 20 | "quote": "Discipline is the bridge between goals and accomplishment.", 21 | "author": "Jim Rohn" 22 | }, 23 | { 24 | "quote": "It's a slow process, but quitting won't speed it up.", 25 | "author": "Anonymous" 26 | }, 27 | { 28 | "quote": "A river cuts through a rock not because of its power but its persistence.", 29 | "author": "Anonymous" 30 | }, 31 | { 32 | "quote": "The man on top of the mountain didn't fall there.", 33 | "author": "Vince Lombardi" 34 | }, 35 | { 36 | "quote": "I can and I will. Watch me.", 37 | "author": "Anonymous" 38 | }, 39 | { 40 | "quote": "Doubt kills more dreams than failure ever will.", 41 | "author": "Karim Seddiki" 42 | }, 43 | { 44 | "quote": "Be so good they can't ignore you.", 45 | "author": "Steve Martin" 46 | }, 47 | { 48 | "quote": "The expert in anything was once a beginner.", 49 | "author": "Anonymous" 50 | }, 51 | { 52 | "quote": "Wake up. Kick ass. Repeat.", 53 | "author": "Anonymous" 54 | }, 55 | { 56 | "quote": "Failure is a bruise, not a tattoo.", 57 | "author": "Jon Sinclair" 58 | }, 59 | { 60 | "quote": "Worrying is stupid. It's like walking around with an umbrella waiting for it to rain.", 61 | "author": "Wiz Khalifa" 62 | }, 63 | { 64 | "quote": "A smooth sea never made a skilled sailor.", 65 | "author": "Franklin D. Roosevelt" 66 | }, 67 | { 68 | "quote": "Go the extra mile -- it's never crowded.", 69 | "author": "Anonymous" 70 | }, 71 | { 72 | "quote": "Look in the mirror... That's your competition.", 73 | "author": "Anonymous" 74 | }, 75 | { 76 | "quote": "I won't be a rock star. I will be a legend.", 77 | "author": "Freddie Mercury" 78 | } 79 | ] 80 | } 81 | -------------------------------------------------------------------------------- /motivate/data/117.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "There is some good in this world, and it’s worth fighting for.", 5 | "author": "J.R.R. Tolkien" 6 | }, 7 | { 8 | "quote": "Twenty years from now you will be more disappointed by the things that you didn’t do than by the ones you did do.", 9 | "author": "H.Jackson Brown Jr." 10 | }, 11 | { 12 | "quote": "Well-behaved women seldom make history.", 13 | "author": "Laurel Thatcher Ulrich" 14 | }, 15 | { 16 | "quote": "It is better to be hated for what you are than to be loved for what you are not.", 17 | "author": "André Gide" 18 | }, 19 | { 20 | "quote": "Who, being loved, is poor?", 21 | "author": "Oscar Wilde" 22 | }, 23 | { 24 | "quote": "Every human life is worth the same, and worth saving.", 25 | "author": "J.K. Rowling" 26 | }, 27 | { 28 | "quote": "Get busy living, or get busy dying.", 29 | "author": "Stephen King" 30 | }, 31 | { 32 | "quote": "The goal isn’t to live forever, the goal is to create something that will.", 33 | "author": "Chuck Palahniuk" 34 | }, 35 | { 36 | "quote": "Travel far enough, you meet yourself.", 37 | "author": "David Mitchell" 38 | }, 39 | { 40 | "quote": "None of us really changes over time. We only become more fully what we are.", 41 | "author": "Anne Rice" 42 | }, 43 | { 44 | "quote": "Most people are nice when you finally see them.", 45 | "author": "Harper Lee" 46 | }, 47 | { 48 | "quote": "Don’t panic.", 49 | "author": "Douglas Adams" 50 | }, 51 | { 52 | "quote": "All endings are also beginnings. We just don’t know it at the time.", 53 | "author": "Mitch Albom" 54 | }, 55 | { 56 | "quote": "When someone leaves, it’s because someone else is about to arrive.", 57 | "author": "Paulo Coelho" 58 | }, 59 | { 60 | "quote": "It’s no use going back to yesterday, because I was a different person then.", 61 | "author": "Lewis Carroll" 62 | }, 63 | { 64 | "quote": "The only limits for tomorrow are the doubts we have today.", 65 | "author": "Pittacus Lore" 66 | }, 67 | { 68 | "quote": "It is our choices that show what we truly are, far more than our abilities.", 69 | "author": "J.K. Rowling" 70 | }, 71 | { 72 | "quote": "If we wait until we’re ready, we’ll be waiting for the rest of our lives.", 73 | "author": "Lemony Snicket" 74 | }, 75 | { 76 | "quote": "I don’t want to die without any scars.", 77 | "author": "Chuck Palahniuk" 78 | }, 79 | { 80 | "quote": "Fear doesn’t shut you down; it wakes you up.", 81 | "author": "Veronica Roth" 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/149.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "Sigmund Freud", 5 | "quote": "The ego is not master in its own house." 6 | }, 7 | { 8 | "author": "Sigmund Freud", 9 | "quote": "Being entirely honest with oneself is a good exercise." 10 | }, 11 | { 12 | "author": "Sherlock Holmes", 13 | "quote": "The world is full of obvious things which nobody by any chance ever observes." 14 | }, 15 | { 16 | "author": "Sherlock Holmes", 17 | "quote": "There is nothing more deceptive than an obvious fact." 18 | }, 19 | { 20 | "author": "Nikola Tesla", 21 | "quote": "Be alone, that is the secret of invention; be alone, that is when ideas are born." 22 | }, 23 | { 24 | "author": "Nikola Tesla", 25 | "quote": "Of all things, I liked books best." 26 | }, 27 | { 28 | "author": "Tao Tzu", 29 | "quote": "When goodness is lost, it is replaced by morality." 30 | }, 31 | { 32 | "author": "Tao Tzu", 33 | "quote": "He who knows, does not speak. He who speaks, does not know." 34 | }, 35 | { 36 | "author": "Benjamin Graham", 37 | "quote": "Those who do not remember the past are condemned to repeat it." 38 | }, 39 | { 40 | "author": "Benjamin Graham", 41 | "quote": "Abnormally good or abnormally bad conditions do not last forever." 42 | }, 43 | { 44 | "author": "George R.R. Martin", 45 | "quote": "Fear cuts deeper than swords." 46 | }, 47 | { 48 | "author": "George R.R. Martin", 49 | "quote": "Most men would rather deny a hard truth than face it." 50 | }, 51 | { 52 | "author": "Dalai Lama", 53 | "quote": "Love is the absence of judgment." 54 | }, 55 | { 56 | "author": "Dalai Lama", 57 | "quote": "Know the rules well, so you can break them effectively." 58 | }, 59 | { 60 | "author": "John Nash", 61 | "quote": "The only thing greater than the power of the mind is the courage of the heart." 62 | }, 63 | { 64 | "author": "John Nash", 65 | "quote": "There is often a number of solutions for a given problem." 66 | }, 67 | { 68 | "author": "Richard Dawkins", 69 | "quote": "'Chance' is just a word expressing ignorance." 70 | }, 71 | { 72 | "author": "Richard Dawkins", 73 | "quote": "Let us try to teach generosity and altruism, because we are all born selfish." 74 | }, 75 | { 76 | "author": "Leonardo da Vinci", 77 | "quote": "Nothing strengthens authority so much as silence." 78 | }, 79 | { 80 | "author": "Leonardo da Vinci", 81 | "quote": "The noblest pleasure is the joy of understanding" 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/150.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "Mario Andretti", 5 | "quote": "If everything seems under control, you're not going fast enough." 6 | }, 7 | { 8 | "author": "Ayrton Senna", 9 | "quote": "I am not designed to come second or third. I am designed to win." 10 | }, 11 | { 12 | "author": "Ayrton Senna", 13 | "quote": "Being second is to be the first of the ones who lose." 14 | }, 15 | { 16 | "author": "Marv Levy", 17 | "quote": "Persistence can change failure into extraordinary achievement." 18 | }, 19 | { 20 | "author": "Tom Landry", 21 | "quote": "I’ve learned that something constructive comes from every defeat." 22 | }, 23 | { 24 | "author": "Laird Hamilton", 25 | "quote": "Make sure your worst enemy doesn’t live between your own two ears." 26 | }, 27 | { 28 | "author": "Bo Jackson", 29 | "quote": "Set your goals high, and don’t stop till you get there." 30 | }, 31 | { 32 | "author": "Bo Hogan", 33 | "quote": "If you can’t outplay them, outwork them." 34 | }, 35 | { 36 | "author": "Mike Singletary", 37 | "quote": "Do you know what my favorite part of the game is? The opportunity to play." 38 | }, 39 | { 40 | "author": "Vin Scully", 41 | "quote": "Good is not good when better is expected." 42 | }, 43 | { 44 | "author": "Billie Jean King", 45 | "quote": "Champions keep playing until they get it right." 46 | }, 47 | { 48 | "author": "Herb Brooks", 49 | "quote": "You were born to be a player. You were meant to be here. This moment is yours." 50 | }, 51 | { 52 | "author": "Mark Spitz", 53 | "quote": "If you fail to prepare, you’re prepared to fail." 54 | }, 55 | { 56 | "author": "George Halas", 57 | "quote": "Nobody who ever gave his best regretted it." 58 | }, 59 | { 60 | "author": "Paul Brown", 61 | "quote": "When you win, say nothing, when you lose, say less." 62 | }, 63 | { 64 | "author": "Arnold Palmer", 65 | "quote": "Always make a total effort, even when the odds are against you." 66 | }, 67 | { 68 | "author": "Ronnie Lott", 69 | "quote": "If you can believe it, the mind can achieve it." 70 | }, 71 | { 72 | "author": "Lou Holtz", 73 | "quote": "Without self-discipline, success is impossible, period." 74 | }, 75 | { 76 | "author": "Dean Smith", 77 | "quote": "What do do with a mistake: recognize it, admit it, learn from it, forget it." 78 | }, 79 | { 80 | "author": "Joe Namath", 81 | "quote": "If you aren’t going all the way, why go at all?" 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/112.json: -------------------------------------------------------------------------------- 1 | { 2 | "data":[ 3 | { 4 | "author": "George Bernard Shaw", 5 | "quote": "Life isn't about finding yourself. Life is about creating yourself." 6 | }, 7 | { 8 | "author": "Audrey Hepburn", 9 | "quote": "The most important thing is to enjoy your life - to be happy - it's all that matters." 10 | }, 11 | { 12 | "author": "Arthur Rubinstein", 13 | "quote": "I have found that if you love life, life will love you back." 14 | }, 15 | { 16 | "author": "Confucius", 17 | "quote": "Life is really simple, but we insist on making it complicated. " 18 | }, 19 | { 20 | "author": "Anne Hathaway", 21 | "quote": "We all have two lives. The second one starts when we realize we only have one." 22 | }, 23 | { 24 | "author": "Oscar Wilde", 25 | "quote": "To live is the rarest thing in the world. Most people exist, that is all." 26 | }, 27 | { 28 | "author": "Ralph Waldo Emerson", 29 | "quote": "Life is a progress, and not a station." 30 | }, 31 | { 32 | "author": "Emily Dickinson", 33 | "quote": "To live is so startling it leaves little time for anything else." 34 | }, 35 | { 36 | "author": "Jim Rohn", 37 | "quote": "It is not the length of life, but depth of life. " 38 | }, 39 | { 40 | "author": "Ralph Waldo Emerson", 41 | "quote": "Vision without execution is just hallucination." 42 | }, 43 | { 44 | "author": "Kevin Kruse", 45 | "quote": "Life is about making an impact, not making an income." 46 | }, 47 | { 48 | "author": "Socrates", 49 | "quote": "An unexamined life is not worth living." 50 | }, 51 | { 52 | "author": "Mark Twain", 53 | "quote": "The two most important days in your life are the day you are born and the day you find out why." 54 | }, 55 | { 56 | "author": "Doug Hutchison", 57 | "quote": "I think being in love with life is a key to eternal youth." 58 | }, 59 | { 60 | "author": "Eleanor Roosevelt", 61 | "quote": "If life were predictable it would cease to be life, and be without flavor." 62 | }, 63 | { 64 | "author": "Emily Dickinson", 65 | "quote": "Find ecstasy in life; the mere sense of living is joy enough." 66 | }, 67 | { 68 | "author": "Joan Rivers", 69 | "quote": "I enjoy life , I don’t care if it’s good things or bad things. That means you’re alive." 70 | }, 71 | { 72 | "author": "Sarah Louise Delany", 73 | "quote": "Life is short, and it is up to you to make it sweet." 74 | }, 75 | { 76 | "author": "H. Jackson Brown Jr.", 77 | "quote": "Life doesn’t require that we be the best, only that we try our best." 78 | }, 79 | { 80 | "author": "Terry Pratchett", 81 | "quote": "There isn't a way things should be. There's just what happens, and what we do." 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/100.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "In our darkest moments, when life flashes before us, we find something; Something that keeps us going. Something that pushes us.", 5 | "author": "Lara Croft" 6 | }, 7 | { 8 | "quote": "Sometimes we have to go deep inside ourselves to solve our problems.", 9 | "author": "Patrick Star" 10 | }, 11 | { 12 | "quote": "I see now that one’s birth is irrelevant. It’s what you do that determines who you are.", 13 | "author": "Mewtwo" 14 | }, 15 | { 16 | "quote": "There is no shame in fear, what matters is how we face it.", 17 | "author": "Jon Snow" 18 | }, 19 | { 20 | "quote": "If you put your mind to it, you can accomplish anything.", 21 | "author": "Marty McFly" 22 | }, 23 | { 24 | "quote": "Friends make the worst enemies.", 25 | "author": "Frank Underwood" 26 | }, 27 | { 28 | "quote": "I love waking up in the morning not knowing what's gonna happen or, who I'm gonna meet, where I'm gonna wind up.", 29 | "author": "Jack Dawson" 30 | }, 31 | { 32 | "quote": "Your focus determines your reality.", 33 | "author": "Qui-Gon Jinn" 34 | }, 35 | { 36 | "quote": "You have been my friend. That in itself is a tremendous thing.", 37 | "author": "Charlotte A. Cavatica" 38 | }, 39 | { 40 | "quote": "Unless someone like you cares a whole awful lot, nothing is going to get better. It’s not.", 41 | "author": "The Once-ler" 42 | }, 43 | { 44 | "quote": "You don't need a reason to help people.", 45 | "author": "Zidane Tribal" 46 | }, 47 | { 48 | "quote": "A sword wields no strength unless the hand that holds it has courage.", 49 | "author": "The Hero's Spirit of the Legend of Zelda" 50 | }, 51 | { 52 | "quote": "Pride is not the opposite of shame, but it’s source. True humility is the only antidote to shame.", 53 | "author": "Iroh of the Fire Nation" 54 | }, 55 | { 56 | "quote": "If our lives are already written, it would take a courageous man to change the script.", 57 | "author": "Alan Wake" 58 | }, 59 | { 60 | "quote": "At some point, everything's gonna go south on you and you're going to say, this is it. This is how I end. Now you can either accept that, or you can get to work. That's all it is.", 61 | "author": "Mark Watney" 62 | }, 63 | { 64 | "quote": "Even if you run into a storm, there's always a way out, no matter how bleak things seem.", 65 | "author": "Vyse" 66 | }, 67 | { 68 | "quote": "Life is a negotiation. We all want. We all give to get what we want.", 69 | "author": "Mordin Solus" 70 | }, 71 | { 72 | "quote": "Wishes can come true. But not if you just wait for miracles. Miracles are things we make for ourselves.", 73 | "author": "Oerba Dia Vanille" 74 | } 75 | ] 76 | } 77 | -------------------------------------------------------------------------------- /motivate/data/130.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "Dylan Thomas", 5 | "quote": "Do not go gentle into that good night, Old age should burn and rave at close of day; Rage, rage against the dying of the light." 6 | }, 7 | { 8 | "author": "Charles Atlas", 9 | "quote": "Step by step and the thing is done." 10 | }, 11 | { 12 | "author": "Michael Jordan", 13 | "quote": "I’ve failed over and over and over again. And that is why I succeed." 14 | }, 15 | { 16 | "author": "Mark Twain", 17 | "quote": "The secret of getting ahead is getting started." 18 | }, 19 | { 20 | "author": "Walt Disney", 21 | "quote": "If you can dream it, you can do it." 22 | }, 23 | { 24 | "author": "Robert H. Schuller", 25 | "quote": "I’d rather attempt to do something great and fail, than to attempt nothing and succeed." 26 | }, 27 | { 28 | "author": "Abraham Lincoln", 29 | "quote": "Your own resolution to succeed is more important than any other." 30 | }, 31 | { 32 | "author": "Ralph Marston", 33 | "quote": "What you do today can improve all your tomorrows." 34 | }, 35 | { 36 | "author": "Daniel Webster", 37 | "quote": "There is always room at the top." 38 | }, 39 | { 40 | "author": "Sam Levenson", 41 | "quote": "Do not watch the clock. Do what it does. Keep going." 42 | }, 43 | { 44 | "author": "Baltasar Gracian", 45 | "quote": "The wise does at once what the fool does at last." 46 | }, 47 | { 48 | "author": "William Butler Yeats", 49 | "quote": "Do not wait to strike till the iron is hot; but make it hot by striking." 50 | }, 51 | { 52 | "author": "Herbert Simon", 53 | "quote": "One finds limits by pushing them." 54 | }, 55 | { 56 | "author": "Wayne Dyer", 57 | "quote": "Go for it now. The future is promised to no one." 58 | }, 59 | { 60 | "author": "John Burroughs", 61 | "quote": "Leap, and the net will appear." 62 | }, 63 | { 64 | "author": "Norman Vincent Peale", 65 | "quote": "It’s always too early to quit" 66 | }, 67 | { 68 | "author": "Benjamin Franklin", 69 | "quote": "Well done is better than well said." 70 | }, 71 | { 72 | "author": "Victor Kiam", 73 | "quote": "Even if you fall on your face you’re still moving forward." 74 | }, 75 | { 76 | "author": "Zig Ziglar", 77 | "quote": "You don’t have to be great to start, but you have to start to be great." 78 | }, 79 | { 80 | "author": "Nelson Mandela", 81 | "quote": "It always seems impossible until it is done." 82 | } 83 | ] 84 | } -------------------------------------------------------------------------------- /motivate/data/101.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "How lucky I am to have something that makes saying goodbye so hard.", 5 | "author": "Winnie the Pooh" 6 | }, 7 | { 8 | "quote": "Nothing is foolproof for a sufficiently talented fool.", 9 | "author": "/u/c00yt825" 10 | }, 11 | { 12 | "quote": "My mother said to me, 'If you are a soldier, you will become a general. If you are a monk, you will become the Pope.' Instead, I was a painter, and became Picasso.", 13 | "author": "Pablo Picasso" 14 | }, 15 | { 16 | "quote": "You have no responsibility to live up to what other people think you ought to accomplish. I have no responsibility to be like they expect me to be. It's their mistake, not my failing.", 17 | "author": " Richard P. Feynman" 18 | }, 19 | { 20 | "quote": "The reason we struggle with insecurity is because we compare our behind-the-scenes with everyone else’s highlight reel.", 21 | "author": "Steve Furtick" 22 | }, 23 | { 24 | "quote": "The whole problem with the world is that fools and fanatics are always so certain of themselves, and wiser people so full of doubts.", 25 | "author": "Bertrand Russell" 26 | }, 27 | { 28 | "quote": "The master has failed more times than the beginner has even tried.", 29 | "author": "Stephen McCranie" 30 | }, 31 | { 32 | "quote": "And now that you don't have to be perfect, you can be good", 33 | "author": "John Steinbeck" 34 | }, 35 | { 36 | "quote": "", 37 | "author": "Charlotte A. Cavatica" 38 | }, 39 | { 40 | "quote": "A ship is safe in a harbor. But thats not what ships are for.", 41 | "author": "/u/the_big_mothergoose" 42 | }, 43 | { 44 | "quote": "Never attribute to malice that which is adequately explained by stupidity.", 45 | "author": "Jargon File" 46 | }, 47 | { 48 | "quote": "We are all in the gutter, but some of us are looking at the stars.", 49 | "author": "Oscar Wilde" 50 | }, 51 | { 52 | "quote": "We judge ourselves by our intentions and others by their behaviour.", 53 | "author": "Stephen M.R. Covey" 54 | }, 55 | { 56 | "quote": "Don't waste your time on jealousy. Sometimes you're ahead. Sometimes you're behind. The race is long. And in the end, it's only with yourself", 57 | "author": "Mary Schmich" 58 | }, 59 | { 60 | "quote": "Don't do something permanently stupid when you're temporarily upset.", 61 | "author": "/u/joepamps" 62 | }, 63 | { 64 | "quote": "What luck for rulers that men do not think", 65 | "author": "Adolf Hitler" 66 | }, 67 | { 68 | "quote": "I will either find a way, or make one", 69 | "author": "Hannibal" 70 | }, 71 | { 72 | "quote": "Life does not stop and start at your convenience, you miserable piece of shit", 73 | "author": "Walter Sobchak" 74 | } 75 | ] 76 | } 77 | -------------------------------------------------------------------------------- /motivate/data/111.json: -------------------------------------------------------------------------------- 1 | { 2 | "data":[ 3 | { 4 | "author": "Ryan Nicodemus", 5 | "quote": "Temporary habits are almost as bad as no habits at all." 6 | }, 7 | { 8 | "author": "Joshua Fields Millburn", 9 | "quote": "Many things are both useful and dangerous. An automobile is useful; an automobile is dangerous. Likewise for nostalgia." 10 | }, 11 | { 12 | "author": "The Minimalists", 13 | "quote": "If we are constantly consuming, then we are not creating." 14 | }, 15 | { 16 | "author": "Joshua Fields Millburn", 17 | "quote": "Never leave the scene of a good idea without taking action." 18 | }, 19 | { 20 | "author": "Sheryl Sandberg", 21 | "quote": "If you’re offered a seat on a rocket ship, don’t ask what seat! Just get on." 22 | }, 23 | { 24 | "author": "Ralph Waldo Emerson", 25 | "quote": "The only person you are destined to become is the person you decide to be." 26 | }, 27 | { 28 | "author": "Anonymous (Ancient Indian Proverb)", 29 | "quote": "Certain things catch your eye, but pursue only those that capture the heart." 30 | }, 31 | { 32 | "author": "The Minimalists", 33 | "quote": "However we spend our time—be it surfing Facebook or exercising at the gym—those are our actual priorities." 34 | }, 35 | { 36 | "author": "Ryan Nicodemus", 37 | "quote": "Distraction is a form of procrastination." 38 | }, 39 | { 40 | "author": "The Minimalists", 41 | "quote": "You needn’t be defined by your past. And certainly, your future does not have to look like your past, unless you allow it to." 42 | }, 43 | { 44 | "author": "John Sonmez", 45 | "quote": "Trust the process." 46 | }, 47 | { 48 | "author": "Joshua Fields Millburn", 49 | "quote": "Letting go of control is the best way to regain total control." 50 | }, 51 | { 52 | "author": "The Minimalists", 53 | "quote": "Criticism is inevitable—unless you do nothing important with your life." 54 | }, 55 | { 56 | "author": "The Minimalists", 57 | "quote": "If you’re not growing, you’re dying." 58 | }, 59 | { 60 | "author": "Joshua Fields Millburn", 61 | "quote": "Let go of distractions—make room for intention." 62 | }, 63 | { 64 | "author": "The Minimalists", 65 | "quote": "A conversation with a friend costs nothing, and can be the most meaningful thing you’ll do today." 66 | }, 67 | { 68 | "author": "Anonymous", 69 | "quote": "Don't take criticism from someone you wouldn't take advice." 70 | }, 71 | { 72 | "author": "Robert T. Kiyosaki", 73 | "quote": "Failure defeats losers; failure inspires winners." 74 | }, 75 | { 76 | "author": "Alan Kay", 77 | "quote": "The best way to predict the future is to invent it." 78 | }, 79 | { 80 | "author": "Joshua Fields Millburn", 81 | "quote": "The more we grow, the more we have to give." 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/126.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "Robin Sharma", 5 | "quote": "Why allow a painful past to destroy your perfect future." 6 | }, 7 | { 8 | "author": "Robin Sharma", 9 | "quote": "If you’re not scared a lot you’re not doing very much." 10 | }, 11 | { 12 | "author": "Robin Sharma", 13 | "quote": "Success lies in a masterful consistency around the fundamentals." 14 | }, 15 | { 16 | "author": "Robin Sharma", 17 | "quote": "Life is a series of moments. If you miss the moments, you miss your life." 18 | }, 19 | { 20 | "author": "Robin Sharma", 21 | "quote": "To the victim, adversity is bad. To the leader and warrior, hard times are life’s richest times of growth, opportunity, and possibility. Use them to fly." 22 | }, 23 | { 24 | "author": "Robin Sharma", 25 | "quote": "Ideation without execution is delusion." 26 | }, 27 | { 28 | "author": "Robin Sharma", 29 | "quote": "Once you slay one fear you’ll conquer many fears." 30 | }, 31 | { 32 | "author": "Robin Sharma", 33 | "quote": "What makes mastery is not the absence of failure but the absence of giving up." 34 | }, 35 | { 36 | "author": "Robin Sharma", 37 | "quote": "Average people talk about people. Exceptional people discuss their dreams." 38 | }, 39 | { 40 | "author": "Robin Sharma", 41 | "quote": "Stop watching the news. Start doing your dreams." 42 | }, 43 | { 44 | "author": "Robin Sharma", 45 | "quote": "The secret to productivity is simplicity." 46 | }, 47 | { 48 | "author": "Robin Sharma", 49 | "quote": "The secret of passion is purpose." 50 | }, 51 | { 52 | "author": "Robin Sharma", 53 | "quote": "When you go to where your fear lives, your freedom starts to display itself." 54 | }, 55 | { 56 | "author": "Robin Sharma", 57 | "quote": "The smallest of actions is always better than the noblest of intentions." 58 | }, 59 | { 60 | "author": "Robin Sharma", 61 | "quote": "Greatness on the outside begins within." 62 | }, 63 | { 64 | "author": "Robin Sharma", 65 | "quote": "What makes a champion is not how elegantly you start, but how strongly you finish." 66 | }, 67 | { 68 | "author": "Robin Sharma", 69 | "quote": "Be willing to do what’s hard now to enjoy what’s beautiful later." 70 | }, 71 | { 72 | "author": "Robin Sharma", 73 | "quote": "Mistake is a mistake only if you make it twice." 74 | }, 75 | { 76 | "author": "Robin Sharma", 77 | "quote": "Don’t live the same year 75 times and call it a life." 78 | }, 79 | { 80 | "author": "Robin Sharma", 81 | "quote": "Be the CEO of your life." 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/154.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "But man is not made for defeat. A man can be destroyed but not defeated.", 5 | "author": "Ernest Hemingway" 6 | }, 7 | { 8 | "quote": "When you reach the end of your rope, tie a knot in it and hang on.", 9 | "author": "Franklin D. Roosevelt" 10 | }, 11 | { 12 | "quote": "Don't cry because it's over, smile because it happened.", 13 | "author": "Dr. Seuss" 14 | }, 15 | { 16 | "quote": "Be yourself; everyone else is already taken.", 17 | "author": "Oscar Wilde" 18 | }, 19 | { 20 | "quote": "You only live once, but if you do it right, once is enough.", 21 | "author": "Mae West" 22 | }, 23 | { 24 | "quote": "Be the change that you wish to see in the world.", 25 | "author": "Mahatma Gandhi" 26 | }, 27 | { 28 | "quote": "I've learned that people will forget what you said, people will forget what you did, but people will never forget how you made them feel", 29 | "author": "Maya Angelou" 30 | }, 31 | { 32 | "quote": "Live as if you were to die tomorrow. Learn as if you were to live forever", 33 | "author": "Mahatma Gandhi" 34 | }, 35 | { 36 | "quote": "Not all those who wander are lost.", 37 | "author": "J. R. R. Tolkien" 38 | }, 39 | { 40 | "quote": "The secret of getting ahead is getting started.", 41 | "author": "Mark Twain" 42 | }, 43 | { 44 | "quote": "All our dreams can come true, if we have the courage to pursue them.", 45 | "author": "Walt Disney" 46 | }, 47 | { 48 | "quote": "Life's most persistent and urgent question is, 'What are you doing for others?'", 49 | "author": "Martin Luther King, Jr." 50 | }, 51 | { 52 | "quote": "Success is not final, failure is not fatal: it is the courage to continue that counts.", 53 | "author": "Winston Churchill" 54 | }, 55 | { 56 | "quote": "Nothing is impossible, the word itself says 'I'm possible'!", 57 | "author": "Audrey Hepburn" 58 | }, 59 | { 60 | "quote": "There are only two ways to live your life. One is as though nothing is a miracle. The other is as though everything is a miracle.", 61 | "author": "Albert Einstein" 62 | }, 63 | { 64 | "quote": "Good friends, good books, and a sleepy conscience: this is the ideal life.", 65 | "author": "Mark Twain" 66 | }, 67 | { 68 | "quote": "Life is what happens to us while we are making other plans.", 69 | "author": "Allen Saunders" 70 | }, 71 | { 72 | "quote": "I have not failed. I've just found 10,000 ways that won't work.", 73 | "author": "Thomas A. Edison" 74 | }, 75 | { 76 | "quote": "The man who does not read has no advantage over the man who cannot read", 77 | "author": "Mark Twain" 78 | }, 79 | { 80 | "quote": "I like nonsense, it wakes up the brain cells. Fantasy is a necessary ingredient in living.", 81 | "author": "Dr. Seuss" 82 | } 83 | ] 84 | } -------------------------------------------------------------------------------- /motivate/data/153.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "Success is not final; failure is not fatal: It is the courage to continue that counts", 5 | "author": "Winston S. Churchill" 6 | }, 7 | { 8 | "quote": "It is better to fail in originality than to succeed in imitation.", 9 | "author": "Herman Melville" 10 | }, 11 | { 12 | "quote": "The road to success and the road to failure are almost exactly the same.", 13 | "author": "Colin R. Davis" 14 | }, 15 | { 16 | "quote": "Success usually comes to those who are too busy to be looking for it.", 17 | "author": "Henry David Thoreau" 18 | }, 19 | { 20 | "quote": "Opportunities don't happen. You create them.", 21 | "author": "Chris Grosser" 22 | }, 23 | { 24 | "quote": "Don't be afraid to give up the good to go for the great.", 25 | "author": "John D. Rockefeller" 26 | }, 27 | { 28 | "quote": "I find that the harder I work, the more luck I seem to have", 29 | "author": "Thomas Jefferson" 30 | }, 31 | { 32 | "quote": "Try not to become a man of success. Rather become a man of value.", 33 | "author": "Albert Einstein" 34 | }, 35 | { 36 | "quote": "Never give in except to convictions of honor and good sense", 37 | "author": "Winston Churchill" 38 | }, 39 | { 40 | "quote": "Stop chasing the money and start chasing the passion.", 41 | "author": "Tony Hsieh" 42 | }, 43 | { 44 | "quote": "Be willing to go all out, in pursuit of your dream. Ultimately it will pay off. You are more powerful than you think you are. Go for it.", 45 | "author": "Les Brown" 46 | }, 47 | { 48 | "quote": "Listen to yourself the voice that’s in your Heart not your head,it will lead you to your Goal.", 49 | "author": "Les Brown" 50 | }, 51 | { 52 | "quote": "Other people’s opinion of you does not have to become your reality", 53 | "author": "Les Brown" 54 | }, 55 | { 56 | "quote": "You don’t have to be great to get started, but you have to get started to be great.", 57 | "author": "Les Brown" 58 | }, 59 | { 60 | "quote": "Too many of us are not living our dreams because we are living our fears", 61 | "author": "Les Brown" 62 | }, 63 | { 64 | "quote": "Life has no limitations, except the ones you make.", 65 | "author": "Les Brown" 66 | }, 67 | { 68 | "quote": "It has been said,most people die at age 25 and don’t get buried until they are 65.Make an effort to live your life to the fullest", 69 | "author": "Les Brown" 70 | }, 71 | { 72 | "quote": "The greatest revenge is massive success.", 73 | "author": "Les Brown" 74 | }, 75 | { 76 | "quote": "Live out of your imagination instead of out of your memory", 77 | "author": "Les Brown" 78 | }, 79 | { 80 | "quote": "Success is walking from failure to failure with no loss of enthusiasm.", 81 | "author": "Winston Churchill" 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/003.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "The best and most beautiful things in the world cannot be seen or even touched - they must be felt with the heart.", 5 | "author": "Helen Keller" 6 | }, 7 | { 8 | "quote": "The best preparation for tomorrow is doing your best today.", 9 | "author": "H. Jackson Brown, Jr." 10 | }, 11 | { 12 | "quote": "Life isn’t about getting and having, it’s about giving and being.", 13 | "author": "Kevin Kruse" 14 | }, 15 | { 16 | "quote": "Whatever the mind of man can conceive and believe, it can achieve.", 17 | "author": "Napoleon Hill" 18 | }, 19 | { 20 | "quote": "Strive not to be a success, but rather to be of value.", 21 | "author": "Albert Einstein" 22 | }, 23 | { 24 | "quote": "Two roads diverged in a wood, and I—I took the one less traveled by, And that has made all the difference.", 25 | "author": "Robert Frost" 26 | }, 27 | { 28 | "quote": "I attribute my success to this: I never gave or took any excuse.", 29 | "author": "Florence Nightingale" 30 | }, 31 | { 32 | "quote": "You miss 100% of the shots you don’t take.", 33 | "author": "Wayne Gretzky" 34 | }, 35 | { 36 | "quote": "I’ve missed more than 9000 shots in my career. I’ve lost almost 300 games. 26 times I’ve been trusted to take the game winning shot and missed. I’ve failed over and over and over again in my life. And that is why I succeed.", 37 | "author": "Michael Jordan" 38 | }, 39 | { 40 | "quote": "The most difficult thing is the decision to act, the rest is merely tenacity.", 41 | "author": "Amelia Earhart" 42 | }, 43 | { 44 | "quote": "Every strike brings me closer to the next home run.", 45 | "author": "Babe Ruth" 46 | }, 47 | { 48 | "quote": "Definiteness of purpose is the starting point of all achievement.", 49 | "author": "W. Clement Stone" 50 | }, 51 | { 52 | "quote": "We must balance conspicuous consumption with conscious capitalism.", 53 | "author": "Kevin Krus" 54 | }, 55 | { 56 | "quote": "Life is what happens to you while you’re busy making other plans.", 57 | "author": "John Lennon" 58 | }, 59 | { 60 | "quote": "We become what we think about.", 61 | "author": "Earl Nightingale" 62 | }, 63 | { 64 | "quote": "The most common way people give up their power is by thinking they don’t have any.", 65 | "author": "Alice Walker" 66 | }, 67 | { 68 | "quote": "The mind is everything. What you think you become.", 69 | "author": "Buddha" 70 | }, 71 | { 72 | "quote": "The best time to plant a tree was 20 years ago. The second best time is now.", 73 | "author": "Chinese Proverb" 74 | }, 75 | { 76 | "quote": "An unexamined life is not worth living.", 77 | "author": "Socrates" 78 | }, 79 | { 80 | "quote": "Eighty percent of success is showing up.", 81 | "author": "Woody Allen" 82 | } 83 | ] 84 | } -------------------------------------------------------------------------------- /motivate/data/091.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "Comfort is the enemy of achievement.", 5 | "author": "Farrah Gray" 6 | }, 7 | { 8 | "quote": "Luck is where opportunity meets preparation.", 9 | "author": "Seneca" 10 | }, 11 | { 12 | "quote": "Courage is knowing what not to fear.", 13 | "author": "Plato" 14 | }, 15 | { 16 | "quote": "The measure of a man is what he does with power.", 17 | "author": "Plato" 18 | }, 19 | { 20 | "quote": "The beginning is the most important part of the work.", 21 | "author": "Plato" 22 | }, 23 | { 24 | "quote": "Today is not the day I die.", 25 | "author": "Oberyn Martell" 26 | }, 27 | { 28 | "quote": "I don't stop when I am tired, I stop when I am done.", 29 | "author": "James Bond" 30 | }, 31 | { 32 | "quote": "Rhetoric is the art of ruling the minds of men.", 33 | "author": "Plato" 34 | }, 35 | { 36 | "quote": "Philosophy is the highest music.", 37 | "author": "Plato" 38 | }, 39 | { 40 | "quote": "All men's souls are immortal, but the souls of the righteous are immortal and divine.", 41 | "author": "Socrates" 42 | }, 43 | { 44 | "quote": "You have to be odd to be number one.", 45 | "author": "Dr. Suess" 46 | }, 47 | { 48 | "quote": "Life happens wherever you are, whether you make it or not.", 49 | "author": "Iroh" 50 | }, 51 | { 52 | "quote": "It is usually best to admit mistakes when they occur, and to seek to restore honor..", 53 | "author": "Iroh" 54 | }, 55 | { 56 | "quote": "Sometimes the best way to solve your own problems is to help someone else.", 57 | "author": "Iroh" 58 | }, 59 | { 60 | "quote": "Push yourself because no one else is going to do it for you.", 61 | "author": "Unknown" 62 | }, 63 | { 64 | "quote": "You only live once, but if you do it right, once is enough.", 65 | "author": "Mae West" 66 | }, 67 | { 68 | "quote": "Your goals don't care how you feel.", 69 | "author": "Unknown" 70 | }, 71 | { 72 | "quote": "Sweat is fat crying.", 73 | "author": "Unknown" 74 | }, 75 | { 76 | "quote": "Be better than you were yesterday.", 77 | "author": "Unknown" 78 | }, 79 | { 80 | "quote": "Rome wasn't built in a day.", 81 | "author": "Unknown" 82 | } 83 | ] 84 | } -------------------------------------------------------------------------------- /motivate/data/108.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "Józef Piłsudski", 5 | "quote": "To be defeated and not submit, is victory; to be victorious and rest on one's laurels, is defeat." 6 | }, 7 | { 8 | "author": "Józef Piłsudski", 9 | "quote": "To want to, is to be able to." 10 | }, 11 | { 12 | "author": "Chinese Proverb", 13 | "quote": "The flowers of all the tomorrows are in the seeds of today." 14 | }, 15 | { 16 | "author": "Benjamin Franklin", 17 | "quote": "We are all born ignorant, but one must work hard to remain stupid." 18 | }, 19 | { 20 | "author": "Steve Carell", 21 | "quote": "You need to be a peli-CAN. Not peli-CAN'T." 22 | }, 23 | { 24 | "author": "Oprah Winfrey", 25 | "quote": "Turn your wounds into wisdom." 26 | }, 27 | { 28 | "author": "Albert Einstein", 29 | "quote": "Try not to become a person of success but a person of value." 30 | }, 31 | { 32 | "author": "Mahatma Gandhi", 33 | "quote": "We must be the change we wish to see in the world" 34 | }, 35 | { 36 | "author": "African Proverb", 37 | "quote": "Even a slow walker will arrive." 38 | }, 39 | { 40 | "author": "Ralph Waldo Emerson", 41 | "quote": "Self-trust is the first secret of success." 42 | }, 43 | { 44 | "author": "Mark Twain", 45 | "quote": "Humor is man's greatest blessing." 46 | }, 47 | { 48 | "author": "Russian Proverb", 49 | "quote": "Little drops of water wear down big stones." 50 | }, 51 | { 52 | "author": "Pablo Casals", 53 | "quote": "The person who works and is never bored is never old. Work and interest in worthwhile things are the best remedy for age." 54 | }, 55 | { 56 | "author": "Ralph Waldo Emerson", 57 | "quote": "Men succeed when they realize that their failures are the preparation for their victories." 58 | }, 59 | { 60 | "author": "Albert Einstein", 61 | "quote": "Anyone who has never made a mistake has never tried anything new." 62 | }, 63 | { 64 | "author": "Nike, Inc.", 65 | "quote": "Just do it." 66 | }, 67 | { 68 | "author": "Samuel Johnson", 69 | "quote": "Clear your mind of can't." 70 | }, 71 | { 72 | "author": "Albert Einstein", 73 | "quote": "In the middle of difficulty lies opportunity." 74 | }, 75 | { 76 | "author": "James Cash (J.C.) Penney", 77 | "quote": "Long-range goals keep you from being frustrated by short-term failures." 78 | }, 79 | { 80 | "author": "Henry David Thoreau", 81 | "quote": "The question is not what you look at, but what you see." 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/132.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "Albert Einstein", 5 | "quote": "Anyone who has never made a mistake has never tried anything new." 6 | }, 7 | { 8 | "author": "Winston Churchill", 9 | "quote": "Success is walking from failure to failure with no loss of enthusiasm." 10 | }, 11 | { 12 | "author": "Winston Churchill", 13 | "quote": "The pessimist sees difficulty in every opportunity. The optimist sees opportunity in every difficulty." 14 | }, 15 | { 16 | "author": "Will Rogers", 17 | "quote": "Don’t Let Yesterday Take Up Too Much Of Today." 18 | }, 19 | { 20 | "author": "Vince Lombardi", 21 | "quote": "It’s Not Whether You Get Knocked Down, It’s Whether You Get Up." 22 | }, 23 | { 24 | "author": "Steve Jobs", 25 | "quote": "If You Are Working On Something That You Really Care About, You Don’t Have To Be Pushed. The Vision Pulls You." 26 | }, 27 | { 28 | "author": "Maya Angelou", 29 | "quote": "We May Encounter Many Defeats But We Must Not Be Defeated." 30 | }, 31 | { 32 | "author": "Brian Tracy", 33 | "quote": "Imagine Your Life Is Perfect In Every Respect; What Would It Look Like?" 34 | }, 35 | { 36 | "author": "Napoleon Hill", 37 | "quote": "Whatever the mind of man can conceive and believe, it can achieve." 38 | }, 39 | { 40 | "author": "Albert Einstein", 41 | "quote": "Strive not to be a success, but rather to be of value." 42 | }, 43 | { 44 | "author": "Robert Frost", 45 | "quote": "Two roads diverged in a wood, and I—I took the one less traveled by, And that has made all the difference." 46 | }, 47 | { 48 | "author": "Wayne Gretzky", 49 | "quote": "You miss 100% of the shots you don’t take." 50 | }, 51 | { 52 | "author": "Babe Ruth", 53 | "quote": "Every strike brings me closer to the next home run." 54 | }, 55 | { 56 | "author": "Buddha", 57 | "quote": "The mind is everything. What you think you become." 58 | }, 59 | { 60 | "author": "Vince Lombardi", 61 | "quote": "Winning isn’t everything, but wanting to win is." 62 | }, 63 | { 64 | "author": "Jim Rohn", 65 | "quote": "Either you run the day, or the day runs you." 66 | }, 67 | { 68 | "author": "Frank Sinatra", 69 | "quote": "The best revenge is massive success." 70 | }, 71 | { 72 | "author": "Anais Nin", 73 | "quote": "Life shrinks or expands in proportion to one's courage." 74 | }, 75 | { 76 | "author": "Eleanor Roosevelt", 77 | "quote": "Remember no one can make you feel inferior without your consent." 78 | }, 79 | { 80 | "author": "Theodore Roosevelt", 81 | "quote": "Believe you can and you’re halfway there." 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/118.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "Just because something doesn’t do what you planned it to do doesn’t mean it’s useless.", 5 | "author": "Thomas Edison" 6 | }, 7 | { 8 | "quote": "If you try to fail, and succeed, which have you done?", 9 | "author": "George Carlin" 10 | }, 11 | { 12 | "quote": "You can’t wait for inspiration. You have to go after it with a club.", 13 | "author": "Jack London" 14 | }, 15 | { 16 | "quote": "People say nothing is impossible, but I do nothing every day.", 17 | "author": "A.A. Milne" 18 | }, 19 | { 20 | "quote": "A diamond is merely a lump of coal that did well under pressure.", 21 | "author": "Unknown" 22 | }, 23 | { 24 | "quote": "Even if you are on the right track, you’ll get run over if you just sit there.", 25 | "author": "Will Rogers" 26 | }, 27 | { 28 | "quote": "Life is like a sewer… what you get out of it depends on what you put into it.", 29 | "author": "Tom Lehrer" 30 | }, 31 | { 32 | "quote": "Never let your sense of morals prevent you from doing what is right.", 33 | "author": "Isaac Asimov" 34 | }, 35 | { 36 | "quote": "If you think you are too small to make a difference, try sleeping with a mosquito.", 37 | "author": "Dalai Lama" 38 | }, 39 | { 40 | "quote": "When I hear somebody sigh, ‘Life is hard,’ I am always tempted to ask, ‘Compared to what?’", 41 | "author": "Sydney Harris" 42 | }, 43 | { 44 | "quote": "Well-behaved women seldom make history.", 45 | "author": "Laurel Thatcher Ulrich" 46 | }, 47 | { 48 | "quote": "If you’re going to be able to look back on something and laugh about it, you might as well laugh about it now.", 49 | "author": "Marie Osmond" 50 | }, 51 | { 52 | "quote": "There are no traffic jams along the extra mile.", 53 | "author": "Roger Staubach" 54 | }, 55 | { 56 | "quote": "If you don’t know where you are going, you might wind up someplace else.", 57 | "author": "Yogi Berra" 58 | }, 59 | { 60 | "quote": "Luck is what you have left over after you give 100 percent.", 61 | "author": "Langston Coleman" 62 | }, 63 | { 64 | "quote": "I didn’t fail the test. I just found 100 ways to do it wrong.", 65 | "author": "Benjamin Franklin" 66 | }, 67 | { 68 | "quote": "The elevator to success is out of order. You’ll have to use the stairs… one step at a time.", 69 | "author": "Joe Girard" 70 | }, 71 | { 72 | "quote": "The minute you settle for less than you deserve, you get even less than you settled for.", 73 | "author": "Maureen Dowd" 74 | }, 75 | { 76 | "quote": "You must learn from the mistakes of others. You can’t possibly live long enough to make them all yourself.", 77 | "author": "Sam Levenson" 78 | }, 79 | { 80 | "quote": "Try not to become a man of success, but a man of value.", 81 | "author": "Albert Einstein" 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /200.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote":"People aren't born ordinary but they choose to be ordinary", 5 | "author": "Unknown" 6 | }, 7 | { 8 | "quote":"We should not give up and we should not allow the problem to defeat us.", 9 | "author":"A.P.J. Abdul Kalam" 10 | }, 11 | { 12 | "quote":"Great dreams of great dreamers are always transcended", 13 | "author":"A.P.J. Abdul Kalam" 14 | }, 15 | { 16 | "quote":"If you don't build your dream, someone else will hire you to help them build theirs.", 17 | "author":"Dhirubhai Ambani" 18 | }, 19 | { 20 | "quote":"Our dreams have to be bigger. Our ambitions higher. Our commitment deeper. And our efforts greater.", 21 | "author":"Dhirubhai Ambani" 22 | }, 23 | { 24 | "quote":"Do or do not. There is no try.", 25 | "author":"Yoda" 26 | }, 27 | { 28 | "quote":"The most difficult thing is the decision to act, the rest is merely tenacity.", 29 | "author":"Amelia Earhart" 30 | }, 31 | { 32 | "quote":"What’s money? A man is a success if he gets up in the morning and goes to bed at night and in between does what he wants to do.", 33 | "author":"Bob Dylan" 34 | }, 35 | { 36 | "quote":"Certain things catch your eye, but pursue only those that capture the heart.", 37 | "author":"Ancient Indian Proverb" 38 | }, 39 | { 40 | "quote":"The only person you are destined to become is the person you decide to be.", 41 | "author":"Ralph Waldo Emerson" 42 | }, 43 | { 44 | "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.", 45 | "author":"Oprah Winfrey" 46 | }, 47 | { 48 | "quote":"I am not a product of my circumstances. I am a product of my decisions.", 49 | "author":"Steven Covey" 50 | }, 51 | { 52 | "quote":"The only way to do great work is to love what you do.", 53 | "author":"Steve Jobs" 54 | }, 55 | { 56 | "quote":"The pessimist sees difficulty in every opportunity. The optimist sees opportunity in every difficulty.", 57 | "author":"Winston Churchill" 58 | }, 59 | { 60 | "quote":"Don’t let yesterday take up too much of today.", 61 | "author":"Will Rogers" 62 | }, 63 | { 64 | "quote":"Failure will never overtake me if my determination to succeed is strong enough.", 65 | "author":"Og Mandino" 66 | }, 67 | { 68 | "quote":"We may encounter many defeats but we must not be defeated.", 69 | "author":"Maya Angelou" 70 | }, 71 | { 72 | "quote":"To see what is right and not do it is a lack of courage.", 73 | "author":"Confucious" 74 | }, 75 | { 76 | "quote":"Today’s accomplishments were yesterday’s impossibilities.", 77 | "author":"Robert H. Schuller" 78 | }, 79 | { 80 | "quote":"There are no limits to what you can accomplish, except the limits you place on your own thinking.", 81 | "author":"Brian Tracy" 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/125.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "Robin Sharma", 5 | "quote": "Small daily improvements lead to stunning results." 6 | }, 7 | { 8 | "author": "Robin Sharma", 9 | "quote": "Become one of the rare people who don’t know how to quit." 10 | }, 11 | { 12 | "author": "Robin Sharma", 13 | "quote": "The fears we don’t face become our limits." 14 | }, 15 | { 16 | "author": "Robin Sharma", 17 | "quote": "Your daily behavior reveals your deepest beliefs." 18 | }, 19 | { 20 | "author": "Robin Sharma", 21 | "quote": "The beautiful thing about fear is, when you run to it, it runs away." 22 | }, 23 | { 24 | "author": "Robin Sharma", 25 | "quote": "The beautiful thing about today is that you get the choice to make it better than yesterday." 26 | }, 27 | { 28 | "author": "Robin Sharma", 29 | "quote": "Lead without a title." 30 | }, 31 | { 32 | "author": "Robin Sharma", 33 | "quote": "Just about every massively creative person was considered an oddball by everyone around them." 34 | }, 35 | { 36 | "author": "Robin Sharma", 37 | "quote": "Picasso didn’t wait until he was Picasso to perform like Picasso." 38 | }, 39 | { 40 | "author": "Robin Sharma", 41 | "quote": "Your life is too important to give it to distractions." 42 | }, 43 | { 44 | "author": "Robin Sharma", 45 | "quote": "To double your income and success, triple your investment in personal development and professional mastery." 46 | }, 47 | { 48 | "author": "Robin Sharma", 49 | "quote": "When you see yourself as a powerful creator of your conditions, you will see opportunities to get to your goals, and dreams, all around you." 50 | }, 51 | { 52 | "author": "Robin Sharma", 53 | "quote": "How can you cross new bridges if you’re not willing to burn old ones?" 54 | }, 55 | { 56 | "author": "Robin Sharma", 57 | "quote": "You’ll never change the world if you’re worried about being liked." 58 | }, 59 | { 60 | "author": "Robin Sharma", 61 | "quote": "Trials can be teachers. Hardship can breed heroism. Pain can morph into power. It’s all your choice." 62 | }, 63 | { 64 | "author": "Robin Sharma", 65 | "quote": "Stop managing your time. Start managing your focus." 66 | }, 67 | { 68 | "author": "Robin Sharma", 69 | "quote": "Persistence gets you farther than brilliance." 70 | }, 71 | { 72 | "author": "Robin Sharma", 73 | "quote": "Shatter all fears." 74 | }, 75 | { 76 | "author": "Robin Sharma", 77 | "quote": "Who you are becoming is more important than what you are accumulating." 78 | }, 79 | { 80 | "author": "Robin Sharma", 81 | "quote": "You were born awesome." 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/124.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "Robin Sharma", 5 | "quote": "Simplicity is the trademark of genius." 6 | }, 7 | { 8 | "author": "Robin Sharma", 9 | "quote": "It’s not about the end goal, it’s about who you become by consistently pushing to the edge of your limits." 10 | }, 11 | { 12 | "author": "Robin Sharma", 13 | "quote": "The way you start your day determines how well you live your day." 14 | }, 15 | { 16 | "author": "Robin Sharma", 17 | "quote": "Dream big, start small, act now." 18 | }, 19 | { 20 | "author": "Robin Sharma", 21 | "quote": "Life is short. Do big things." 22 | }, 23 | { 24 | "author": "Robin Sharma", 25 | "quote": "Victims make excuses. Leaders deliver results." 26 | }, 27 | { 28 | "author": "Robin Sharma", 29 | "quote": "The quality of your life is determined by the quality of your thoughts." 30 | }, 31 | { 32 | "author": "Robin Sharma", 33 | "quote": "You can’t win the game if you don’t even play it." 34 | }, 35 | { 36 | "author": "Robin Sharma", 37 | "quote": "All change is hard at the first, messy in the middle, and so gorgeous at the end." 38 | }, 39 | { 40 | "author": "Robin Sharma", 41 | "quote": "Ordinary people love entertainment. Extraordinary people adore education." 42 | }, 43 | { 44 | "author": "Robin Sharma", 45 | "quote": "Close all your escape routes, burn all your plan b’s and get busy doing that dream that only you were built to do." 46 | }, 47 | { 48 | "author": "Robin Sharma", 49 | "quote": "Hard times produce your greatest gifts." 50 | }, 51 | { 52 | "author": "Robin Sharma", 53 | "quote": "Fear is a big liar." 54 | }, 55 | { 56 | "author": "Robin Sharma", 57 | "quote": "Average performers stop when they feel fear. Iconic producers accelerate once they get frightened." 58 | }, 59 | { 60 | "author": "Robin Sharma", 61 | "quote": "The best leaders are the most dedicated learners. Read great books daily." 62 | }, 63 | { 64 | "author": "Robin Sharma", 65 | "quote": "Are your fears standing in the way of your biggest life?" 66 | }, 67 | { 68 | "author": "Robin Sharma", 69 | "quote": "Your current conditions are echoes of your past." 70 | }, 71 | { 72 | "author": "Robin Sharma", 73 | "quote": "The way we do small things determines the way we do everything." 74 | }, 75 | { 76 | "author": "Robin Sharma", 77 | "quote": "All it takes is one new insight or idea, strongly acted on, to take you to a completely different place." 78 | }, 79 | { 80 | "author": "Robin Sharma", 81 | "quote": "Feeling lost? Good! Now you get to walk to new paths that lead to much better places." 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/123.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "Robin Sharma", 5 | "quote": "We grow fearless when we do the things we fear." 6 | }, 7 | { 8 | "author": "Robin Sharma", 9 | "quote": "The activity you’re most avoiding contains your biggest opportunity." 10 | }, 11 | { 12 | "author": "Robin Sharma", 13 | "quote": "Fill your brain with giant dreams so that there’s no space for petty pursuits." 14 | }, 15 | { 16 | "author": "Robin Sharma", 17 | "quote": "No one will believe in you until you believe in you." 18 | }, 19 | { 20 | "author": "Robin Sharma", 21 | "quote": "Greatness begins beyond your comfort zone." 22 | }, 23 | { 24 | "author": "Robin Sharma", 25 | "quote": "You are born into genius, but have you resigned yourself to mediocrity?" 26 | }, 27 | { 28 | "author": "Robin Sharma", 29 | "quote": "Great achievement always requires great sacrifice." 30 | }, 31 | { 32 | "author": "Robin Sharma", 33 | "quote": "Your ‘I Can’ is more important than your IQ." 34 | }, 35 | { 36 | "author": "Robin Sharma", 37 | "quote": "Your excuses are just the lies your fears have sold you." 38 | }, 39 | { 40 | "author": "Robin Sharma", 41 | "quote": "Having talent is fantastic. Having confidence is even more important." 42 | }, 43 | { 44 | "author": "Robin Sharma", 45 | "quote": "Every minute spent worrying about the way things were is a moment stolen from creating the way things can be." 46 | }, 47 | { 48 | "author": "Robin Sharma", 49 | "quote": "Take the stones people throw at you and use them to build a monument." 50 | }, 51 | { 52 | "author": "Robin Sharma", 53 | "quote": " Don’t confuse activity with productivity. Many people are simply busy being busy." 54 | }, 55 | { 56 | "author": "Robin Sharma", 57 | "quote": "When we stop taking risks, we stop living life." 58 | }, 59 | { 60 | "author": "Robin Sharma", 61 | "quote": "Today’s a great day to behave as the person you’ve always wanted to be." 62 | }, 63 | { 64 | "author": "Robin Sharma", 65 | "quote": "Make your faith larger than your fears and your dreams bigger than your doubts." 66 | }, 67 | { 68 | "author": "Robin Sharma", 69 | "quote": "Be slow to criticize and fast to appreciate." 70 | }, 71 | { 72 | "author": "Robin Sharma", 73 | "quote": "You can’t be great if you don’t feel great. Make exceptional health your number one priority." 74 | }, 75 | { 76 | "author": "Robin Sharma", 77 | "quote": "You can’t win if you don’t try." 78 | }, 79 | { 80 | "author": "Robin Sharma", 81 | "quote": "If you want to have the results only 5% have, you must be willing to do and think like only 5% do and think." 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/146.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [{ 3 | "author": "Adolf Hitler", 4 | "quote": "Think Thousand times before taking a decision But -After taking decision never turn back even if you get Thousand difficulties!" 5 | }, 6 | 7 | { 8 | 9 | "author": "Theodore Roosevelt", 10 | "quote": "Believe you can and you're halfway there." 11 | }, 12 | 13 | { 14 | "author": "Walt Disney", 15 | "quote": "The Way Get Started Is To Quit Talking And Begin Doing." 16 | }, 17 | 18 | { 19 | "author": "Vince Lombardi", 20 | "quote": "It's Not Whether You Get Knocked Down, It's Whether You Get Up." 21 | }, 22 | 23 | { 24 | "author": "Rob Siltanen", 25 | "quote": "People Who Are Crazy Enough To Think They Can Change The World, Are The Ones Who Do." 26 | }, 27 | 28 | { 29 | "author": "Dr. Henry Link", 30 | "quote": "We Generate Fears While We Sit. We Overcome Them By Action." 31 | }, 32 | 33 | { 34 | "author": "Theodore Roosevelt", 35 | "quote": "Do What You Can With All You Have, Wherever You Are." 36 | }, 37 | 38 | { 39 | "author": " Robert H. Schuller", 40 | "quote": "Today's Accomplishments Were Yesterday's Impossibilities." 41 | }, 42 | 43 | { 44 | "author": " Abraham Lincoln", 45 | "quote": "Whatever you are, be a good one." 46 | }, 47 | 48 | { 49 | "author": " Benjamin Franklin", 50 | "quote": "You may delay, but time will not." 51 | }, 52 | 53 | { 54 | "author": "Mahatma Gandhi", 55 | "quote": "Take care of this moment." 56 | }, 57 | 58 | { 59 | "author": "Napoleon Hill", 60 | "quote": "Every adversity, every failure, every heartbreak, carries with it the seed of an equal or greater benefit." 61 | }, 62 | 63 | { 64 | "author": "Nelson Mandela", 65 | "quote": "I never lose. I either win or learn." 66 | }, 67 | 68 | { 69 | "author": "Tony Robbins", 70 | "quote": "No matter how many mistakes you make or how slow you progress, you are still way ahead of everyone who isn't trying" 71 | }, 72 | 73 | { 74 | "author": "Che Guevara", 75 | "quote": "Be realistic, demand the impossible!" 76 | }, 77 | 78 | { 79 | "author": "plato", 80 | "quote": "A good decision is based on knowledge and not on numbers." 81 | }, 82 | 83 | { 84 | "author": "Ernest Hemingway", 85 | "quote": "The world breaks everyone, and afterwards, some are strong at the broken places" 86 | }, 87 | 88 | { 89 | "author": "Harry Main", 90 | "quote": "If you believe you can do it, go out there and do it, because that is the only way you are gonna get it!" 91 | }, 92 | 93 | { 94 | "author": "anonymous", 95 | "quote": "Pick your life, don't let it pick you." 96 | }, 97 | 98 | { 99 | "author": "O Feltham", 100 | "quote": "The greatest results in life are usually attained by common sense and perseverance." 101 | } 102 | ] 103 | } 104 | -------------------------------------------------------------------------------- /motivate/data/116.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "Anton Chekhov", 5 | "quote": "People don't notice whether it is winter or summer when they are happy." 6 | }, 7 | { 8 | "author": "Markus Almond", 9 | "quote": "Once you’ve found the craft you love and you start to get some momentum, share it with other people. Teach that thing you love so that other’s can love it too." 10 | }, 11 | { 12 | "author": "Sun Tzu", 13 | "quote": "Every battle is won or lost before it is ever fought." 14 | }, 15 | { 16 | "author": "Roman Price", 17 | "quote": "If you are still looking for that one person who will change your life, take a look in the mirror." 18 | }, 19 | { 20 | "author": "Harvey Specter", 21 | "quote": "Kill them with success, Bury them with a smile." 22 | }, 23 | { 24 | "author": "Anonymous", 25 | "quote": "The un-aimed arrow never misses." 26 | }, 27 | { 28 | "author": "Anonymous", 29 | "quote": "The early bird gets the worm, but the second mouse gets the cheese." 30 | }, 31 | { 32 | "author": "Anonymous", 33 | "quote": "Study yesterday, live today and believe in tomorrow." 34 | }, 35 | { 36 | "author": "Sam Harris", 37 | "quote": "It matters what people actually are. Rather than what they can be made to seem to be." 38 | }, 39 | { 40 | "author": "Paulo Coelho", 41 | "quote": "The beauty of truth: whether it is bad or good, it is liberating." 42 | }, 43 | { 44 | "author": "Mark Twain", 45 | "quote": "Patriotism is supporting your country all the time, and your government when it deserves it." 46 | }, 47 | { 48 | "author": "Albert Einstein", 49 | "quote": "Try not to become a man of success. Rather become a man of value." 50 | }, 51 | { 52 | "author": "James Patterson", 53 | "quote": "Popcorn for breakfast! Why not? It's a grain. It's like, like, grits, but with high self-esteem." 54 | }, 55 | { 56 | "author": "Anonymous", 57 | "quote": "You can't always be happy. You can't always be sad." 58 | }, 59 | { 60 | "author": "Warren Buffett", 61 | "quote": "The more you Learn, the more you Earn." 62 | }, 63 | { 64 | "author": "The universe is full of magical things patiently waiting for our wits to grow sharper.", 65 | "quote": "Eden Phillpotts" 66 | }, 67 | { 68 | "author": "Anonymous", 69 | "quote": "It can take a lifetime to become what you always were to begin with." 70 | }, 71 | { 72 | "author": "Anonymous", 73 | "quote": "Safety rules are written in blood." 74 | }, 75 | { 76 | "author": "John Barrymore", 77 | "quote": "A man is not old until regrets take the place of dreams." 78 | }, 79 | { 80 | "author": "Anonymous", 81 | "quote": "Everyone matters. Even your enemy." 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/148.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "Bob Marley", 5 | "quote": "I don’t believe in death, neither in flesh nor in spirit." 6 | }, 7 | { 8 | "author": "Bob Marley", 9 | "quote": "When one door is closed, don't you know, another is open." 10 | }, 11 | { 12 | "author": "Bob Marley", 13 | "quote": "Don’t gain the world and lose your soul. Wisdom is better than silver and gold." 14 | }, 15 | { 16 | "author": "Bob Marley", 17 | "quote": "In this great future, you can’t forget your past." 18 | }, 19 | { 20 | "author": "Bob Marley", 21 | "quote": "A hungry mob is an angry mob." 22 | }, 23 | { 24 | "author": "Bob Marley", 25 | "quote": "Better to die fighting for freedom than be a prisoner all the days of your life." 26 | }, 27 | { 28 | "author": "Bob Marley", 29 | "quote": "Don't trust people whose feelings change with time. Trust people whose feelings remain the same, even when the time changes." 30 | }, 31 | { 32 | "author": "Bob Marley", 33 | "quote": "Every day the bucket a-go a well, one day the bottom a-go drop out." 34 | }, 35 | { 36 | "author": "Bob Marley", 37 | "quote": "Every time I plant a seed, He say kill it before it grow, he say kill it before they grow." 38 | }, 39 | { 40 | "author": "Bob Marley", 41 | "quote": "Everything is political. I will never be a politician or even think political. Me just deal with life and nature. That is the greatest thing to me." 42 | }, 43 | { 44 | "author": "Bob Marley", 45 | "quote": "I don't know how to live good. I only know how to suffer." 46 | }, 47 | { 48 | "author": "Bob Marley", 49 | "quote": "Live for yourself and you will live in vain; live for others, and you will live again." 50 | }, 51 | { 52 | "author": "Bob Marley", 53 | "quote": "Love the life you live, live the life you love." 54 | }, 55 | { 56 | "author": "Bob Marley", 57 | "quote": "My future is righteousness." 58 | }, 59 | { 60 | "author": "Bob Marley", 61 | "quote": "Put your vision to reality." 62 | }, 63 | { 64 | "author": "Bob Marley", 65 | "quote": "Road of life is rocky and you may stumble too, so while you talk about me, someone else is judging you." 66 | }, 67 | { 68 | "author": "Bob Marley", 69 | "quote": "The people who were trying to make this world worse are not taking the day off. Why should I?" 70 | }, 71 | { 72 | "author": "Bob Marley", 73 | "quote": "Truth is the light, so you never give up the fight." 74 | }, 75 | { 76 | "author": "Bob Marley", 77 | "quote": "When the race gets hard to run. It means you just can't take the peace." 78 | }, 79 | { 80 | "author": "Bob Marley", 81 | "quote": "When the root is strong, the fruit is sweet." 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/005.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "The Way Get Started Is To Quit Talking And Begin Doing.", 5 | "author": "Walt Disney" 6 | }, 7 | { 8 | "quote": "The Pessimist Sees Difficulty In Every Opportunity. The Optimist Sees Opportunity In Every Difficulty.", 9 | "author": "Winston Churchill" 10 | }, 11 | { 12 | "quote": "Don’t Let Yesterday Take Up Too Much Of Today.", 13 | "author": "Will Rogers" 14 | }, 15 | { 16 | "quote": "If You Are Working On Something That You Really Care About, You Don’t Have To Be Pushed. The Vision Pulls You.", 17 | "author": "Steve Jobs" 18 | }, 19 | { 20 | "quote": "People Who Are Crazy Enough To Think They Can Change The World, Are The Ones Who Do.", 21 | "author": "Rob Siltanen" 22 | }, 23 | { 24 | "quote": "We May Encounter Many Defeats But We Must Not Be Defeated.", 25 | "author": "Maya Angelou" 26 | }, 27 | { 28 | "quote": "Knowing Is Not Enough; We Must Apply. Wishing Is Not Enough; We Must Do.", 29 | "author": "Johann Wolfgang Von Goethe" 30 | }, 31 | { 32 | "quote": "Imagine Your Life Is Perfect In Every Respect; What Would It Look Like?", 33 | "author": "Brian Tracy" 34 | }, 35 | { 36 | "quote": "We Generate Fears While We Sit. We Overcome Them By Action.", 37 | "author": "Dr. Henry Link" 38 | }, 39 | { 40 | "quote": "Whether You Think You Can Or Think You Can’t, You’re Right.", 41 | "author": "Henry Ford" 42 | }, 43 | { 44 | "quote": "Security Is Mostly A Superstition. Life Is Either A Daring Adventure Or Nothing.", 45 | "author": "Helen Keller" 46 | }, 47 | { 48 | "quote": "The Man Who Has Confidence In Himself Gains The Confidence Of Others.", 49 | "author": "Hasidic Proverb" 50 | }, 51 | { 52 | "quote": "The Only Limit To Our Realization Of Tomorrow Will Be Our Doubts Of Today.", 53 | "author": "Franklin D. Roosevelt" 54 | }, 55 | { 56 | "quote": "Creativity Is Intelligence Having Fun.", 57 | "author": "Albert Einstein" 58 | }, 59 | { 60 | "quote": "What You Lack In Talent Can Be Made Up With Desire, Hustle And Giving 110% All The Time.", 61 | "author": "Don Zimmer" 62 | }, 63 | { 64 | "quote": "Do What You Can With All You Have, Wherever You Are.", 65 | "author": "Theodore Roosevelt" 66 | }, 67 | { 68 | "quote": "You Are Never Too Old To Set Another Goal Or To Dream A New Dream.", 69 | "author": "C.S. Lewis" 70 | }, 71 | { 72 | "quote": "To See What Is Right And Not Do It Is A Lack Of Courage.", 73 | "author": "Confucious" 74 | }, 75 | { 76 | "quote": "No one can make you feel inferior without your consent.", 77 | "author": "Eleanor Roosevelt" 78 | }, 79 | { 80 | "quote": "If you’re going through hell keep going.", 81 | "author": "Winston Churchill" 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/134.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "Pulkit Goel", 5 | "quote": "Even if you came last, you won over all those who feared to give it a try." 6 | }, 7 | { 8 | "author": "Masashi Kishimoto", 9 | "quote": "Where should I go: To Left where nothing is Right or to Right where nothing is Left." 10 | }, 11 | { 12 | "author": "Norman Vincent Peale", 13 | "quote": "Shoot for the moon. Even if you miss, you'll land among the stars." 14 | }, 15 | { 16 | "author": "Karen Lamb", 17 | "quote": "A year from now you may wish you had started today." 18 | }, 19 | { 20 | "author": "Swami Vivekananda", 21 | "quote": "Talk to yourself everyday, or you may miss talking to someone great." 22 | }, 23 | { 24 | "author": "Bhagavad Gita", 25 | "quote": "The ignorant work for their own profit, the wise work for the welfare of the world, without thought for themselves." 26 | }, 27 | { 28 | "author": "Chanakya", 29 | "quote": "Once you start working on something, don’t be afraid of failure and don’t abandon it. People who work sincerely are the happiest." 30 | }, 31 | { 32 | "author": "Arjun", 33 | "quote": "The reason of my success is that I saw nothing else but the Bird's Eye" 34 | }, 35 | { 36 | "author": "Chanakya", 37 | "quote": "As soon as the fear approaches near, attack and destroy it." 38 | }, 39 | { 40 | "author": "Wiiliam Shakespeare", 41 | "quote": "Cowards die many times before their deaths; The valiant never taste of death but once. " 42 | }, 43 | { 44 | "author": "Pulkit Goel", 45 | "quote": "Fear the Fear" 46 | }, 47 | { 48 | "author": "Albert Einstein", 49 | "quote": "I have no special talents. I am only passionately curious." 50 | }, 51 | { 52 | "author": "Carl Sagan", 53 | "quote": "Imagination will often carry us to worlds that never were, but without it we go nowhere." 54 | }, 55 | { 56 | "author": "Frank Sinatra", 57 | "quote": " The best revenge is massive success.Frank Sinatra" 58 | }, 59 | { 60 | "author": "Dalai Lama", 61 | "quote": "Happiness is not something readymade. It comes from your own actions." 62 | }, 63 | { 64 | "author": "Unknown", 65 | "quote": "Brain is like an Umbrella, works best when open." 66 | }, 67 | { 68 | "author": "Kabirdas", 69 | "quote": "Wherever you are is the entry point." 70 | }, 71 | { 72 | "author": "Walt Disney", 73 | "quote": "The way get started is to quit talking and begin doing." 74 | }, 75 | { 76 | "author": "Marie Curie", 77 | "quote": "I was taught that the way of progress is neither swift nor easy." 78 | }, 79 | { 80 | "author": "Chanakya", 81 | "quote": "Learn from other men’s mistakes. You really do not have to touch the fire to see how hot it is!" 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/176.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "Without craftsmanship, inspiration is a mere reed shaken in the wind.", 5 | "author": "Johannes Brahms" 6 | }, 7 | { 8 | "quote": "Neither a lofty degree of intelligence nor imagination nor both together go to the making of genius. Love, love, love, that is the soul of genius.", 9 | "author": "Wolfgang Amadeus Mozart" 10 | }, 11 | { 12 | "quote": "I pay no attention whatever to anybody's praise or blame, I simply follow my own feelings.", 13 | "author": "Wolfgang Amadeus Mozart" 14 | }, 15 | { 16 | "quote": "Inspiration is an awakening, a quickening of all man's faculties, and it is manifested in all high artistic achievements.", 17 | "author": "Giacomo Puccini" 18 | }, 19 | { 20 | "quote": "Works of art make rules; rules do not make works of art.", 21 | "author": "Claude Debussy" 22 | }, 23 | { 24 | "quote": "To achieve great things, two things are needed; a plan, and not quite enough time.", 25 | "author": "Leonard Bernstein" 26 | }, 27 | { 28 | "quote": "I am hitting my head against the walls, but the walls are giving way.", 29 | "author": "Gustav Mahler" 30 | }, 31 | { 32 | "quote": "I was obliged to be industrious. Whoever is equally industrious will succeed equally well.", 33 | "author": "Johann Sebastian Bach" 34 | }, 35 | { 36 | "quote": "I can't understand why people are frightened of new ideas. I'm frightened of the old ones.", 37 | "author": "John Cage" 38 | }, 39 | { 40 | "quote": "Imagination creates reality.", 41 | "author": "Richard Wagner" 42 | }, 43 | { 44 | "quote": "The beautiful thing about learning is nobody can take it away from you.", 45 | "author": "B.B. King" 46 | }, 47 | { 48 | "quote": "Those who have achieved all their aims probably set them too low.", 49 | "author": "Herbert Von Karajan" 50 | }, 51 | { 52 | "quote": "I accept chaos, I'm not sure whether it accepts me.", 53 | "author": "Bob Dylan" 54 | }, 55 | { 56 | "quote": "A man is a success if he gets up in the morning and gets to bed at night, and in between he does what he wants to do.", 57 | "author": "Bob Dylan" 58 | }, 59 | { 60 | "quote": "Without deviation from the norm, progress is not possible.", 61 | "author": "Frank Zappa" 62 | }, 63 | { 64 | "quote": "The truth is like the sun. You can shut it out for a time, but it ain't goin' away.", 65 | "author": "Elvis Presley" 66 | }, 67 | { 68 | "quote": "Wanting to be someone else is a waste of the person you are.", 69 | "author": "Kurt Cobain" 70 | }, 71 | { 72 | "quote": "Everything is scary if you look at it. So you just got to live it.", 73 | "author": "Mary J. Blige" 74 | }, 75 | { 76 | "quote": "My heroes are the ones who survived doing it wrong, who made mistakes, but recovered from them.", 77 | "author": "Bono" 78 | }, 79 | { 80 | "quote": "To listen is an effort, and just to hear is no merit. A duck hears also.", 81 | "author": "Igor Stravinsky" 82 | } 83 | ] 84 | } -------------------------------------------------------------------------------- /motivate/data/155.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "Your attitude, not your aptitude, will determine your altitude.", 5 | "author": "Zig Ziglar" 6 | }, 7 | { 8 | "quote": "Positive thinking will let you do everything better than negative thinking will.", 9 | "author": "Zig Ziglar" 10 | }, 11 | { 12 | "quote": "You were born to win, but to be a winner, you must plan to win, prepare to win, and expect to win.", 13 | "author": "Zig Ziglar" 14 | }, 15 | { 16 | "quote": "What you get by achieving your goals is not as important as what you become by achieving your goals.", 17 | "author": "Zig Ziglar" 18 | }, 19 | { 20 | "quote": "The foundation stones for a balanced success are honesty, character, integrity, faith, love and loyalty.", 21 | "author": "Zig Ziglar" 22 | }, 23 | { 24 | "quote": "Positive thinking will let you use the ability which you have, and that is awesome.", 25 | "author": "Zig Ziglar" 26 | }, 27 | { 28 | "quote": "With integrity, you have nothing to fear, since you have nothing to hide. With integrity, you will do the right thing, so you will have no guilt.", 29 | "author": "Zig Ziglar" 30 | }, 31 | { 32 | "quote": "Try to look at your weakness and convert it into your strength. That's success.", 33 | "author": "Zig Ziglar" 34 | }, 35 | { 36 | "quote": "Be grateful for what you have and stop complaining - it bores everybody else, does you no good, and doesn't solve any problems.", 37 | "author": "Zig Ziglar" 38 | }, 39 | { 40 | "quote": "Honesty and integrity are by far the most important assets of an entrepreneur.", 41 | "author": "Zig Ziglar" 42 | }, 43 | { 44 | "quote": "People often say that motivation doesn't last. Well, neither does bathing - that's why we recommend it daily.", 45 | "author": "Zig Ziglar" 46 | }, 47 | { 48 | "quote": "You were designed for accomplishment, engineered for success, and endowed with the seeds of greatness.", 49 | "author": "Zig Ziglar" 50 | }, 51 | { 52 | "quote": "You don't have to be great to start, but you have to start to be great.", 53 | "author": "Zig Ziglar" 54 | }, 55 | { 56 | "quote": "Many people spend more time in planning the wedding than they do in planning the marriage.", 57 | "author": "Zig Ziglar" 58 | }, 59 | { 60 | "quote": "There are no traffic jams on the extra mile.", 61 | "author": "Zig Ziglar" 62 | }, 63 | { 64 | "quote": "Yesterday ended last night. Today is a brand-new day.", 65 | "author": "Zig Ziglar" 66 | }, 67 | { 68 | "quote": "Isn't it amazing how much stuff we get done the day before vacation?", 69 | "author": "Zig Ziglar" 70 | }, 71 | { 72 | "quote": "The first step in solving a problem is to recognize that it does exist.", 73 | "author": "Zig Ziglar" 74 | }, 75 | { 76 | "quote": "If you learn from defeat, you haven’t really lost.", 77 | "author": "Zig Ziglar" 78 | }, 79 | { 80 | "quote": "Don’t count the things you do, do the things that count.", 81 | "author": "Zig Ziglar" 82 | } 83 | ] 84 | } -------------------------------------------------------------------------------- /motivate/data/128.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "Robin Sharma", 5 | "quote": "Do your best and then let life do the rest." 6 | }, 7 | { 8 | "author": "Robin Sharma", 9 | "quote": "Anyone can be a critic. What takes guts is to see the best in people." 10 | }, 11 | { 12 | "author": "Robin Sharma", 13 | "quote": "Your habits are driving your performance. Your rituals are creating your results." 14 | }, 15 | { 16 | "author": "Robin Sharma", 17 | "quote": "Silence is the place productive people go to think." 18 | }, 19 | { 20 | "author": "Robin Sharma", 21 | "quote": "Greatness comes by beginning something that doesn’t end with you." 22 | }, 23 | { 24 | "author": "Robin Sharma", 25 | "quote": "Leadership is not a title, it’s a behavior." 26 | }, 27 | { 28 | "author": "Robin Sharma", 29 | "quote": "Your results are dependent on your devotion." 30 | }, 31 | { 32 | "author": "Robin Sharma", 33 | "quote": "Have the guts to be true to yourself." 34 | }, 35 | { 36 | "author": "Robin Sharma", 37 | "quote": "Blaming others is excusing yourself." 38 | }, 39 | { 40 | "author": "Robin Sharma", 41 | "quote": "What makes genius is not just the idea, but the execution around the idea to bring it to the world." 42 | }, 43 | { 44 | "author": "Robin Sharma", 45 | "quote": "Never sacrifice happiness for the sake of achievement. The real key to life is to happily achieve." 46 | }, 47 | { 48 | "author": "Robin Sharma", 49 | "quote": "Never be too busy to be kind." 50 | }, 51 | { 52 | "author": "Robin Sharma", 53 | "quote": "You can’t get to your next best self by clinging to who you were yesterday." 54 | }, 55 | { 56 | "author": "Robin Sharma", 57 | "quote": "Time management is life management." 58 | }, 59 | { 60 | "author": "Robin Sharma", 61 | "quote": "To double your net worth, double your self-worth. Because you will never exceed the height of your self-image." 62 | }, 63 | { 64 | "author": "Robin Sharma", 65 | "quote": "Defeat only happens when you stop believing." 66 | }, 67 | { 68 | "author": "Robin Sharma", 69 | "quote": "Focus on being superb at what you do and, over time you will be known as remarkable." 70 | }, 71 | { 72 | "author": "Robin Sharma", 73 | "quote": "Rewarding yourself with good things sends a message to the deepest, and the highest, part of you. One that says, ‘I’m worth it, I deserve it’." 74 | }, 75 | { 76 | "author": "Robin Sharma", 77 | "quote": "You were born into genius. Don’t settle for any mediocrity." 78 | }, 79 | { 80 | "author": "Robin Sharma", 81 | "quote": "Make your life matter. Be of use. Serve as many people as possible. This is how each of us can shift from the ordinary to the extraordinary and walk amongst the best who ever lived." 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/178.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "Business opportunities are like buses, there’s always another one coming.", 5 | "author": "Richard Branson" 6 | }, 7 | { 8 | "quote": "I have not failed. I’ve just found 10,000 ways that won’t work.", 9 | "author": "Thomas Edison" 10 | }, 11 | { 12 | "quote": "A friendship founded on business is better than a business founded on friendship.", 13 | "author": "John D. Rockfeller" 14 | }, 15 | { 16 | "quote": "The way get started is to quit talking and begin doing.", 17 | "author": "Walt Disney" 18 | }, 19 | { 20 | "quote": "The pessimist sees difficulty in every opportunity. The optimist sees opportunity in every difficulty.", 21 | "author": "Winston Churchill" 22 | }, 23 | { 24 | "quote": "Don’t let yesterday take up too much of today.", 25 | "author": "Will Rogers" 26 | }, 27 | { 28 | "quote": "You learn more from failure than from success. Don’t let it stop you. Failure builds character.", 29 | "author": "Unknown" 30 | }, 31 | { 32 | "quote": "It’s not whether you get knocked down, it’s whether you get up.", 33 | "author": "Vince Lombardi" 34 | }, 35 | { 36 | "quote": "If you are working on something that you really care about, you don’t have to be pushed. The vision pulls you.", 37 | "author": "Steve Jobs" 38 | }, 39 | { 40 | "quote": "People who are crazy enough to think they can change the world, are the ones who do.", 41 | "author": "Rob Siltanen" 42 | }, 43 | { 44 | "quote": "Failure will never overtake me if my determination to succeed is strong enough.", 45 | "author": "Og Mandino" 46 | }, 47 | { 48 | "quote": "Entrepreneurs are great at dealing with uncertainty and also very good at minimizing risk. That’s the classic entrepreneur.", 49 | "author": "Mohnish Pabrai" 50 | }, 51 | { 52 | "quote": "We may encounter many defeats but we must not be defeated.", 53 | "author": "Maya Angelou" 54 | }, 55 | { 56 | "quote": "Knowing is not enough; we must apply. Wishing is not enough; we must do.", 57 | "author": "Johann Wolfgang Von Goethe" 58 | }, 59 | { 60 | "quote": "Imagine your life is perfect in every respect; what would it look like?", 61 | "author": " Brian Tracy" 62 | }, 63 | { 64 | "quote": "We generate fears while we sit. We overcome them by action.", 65 | "author": "Dr. Henry Link" 66 | }, 67 | { 68 | "quote": "Whether you think you can or think you can’t, you’re right.", 69 | "author": "Henry Ford" 70 | }, 71 | { 72 | "quote": "Security is mostly a superstition. Life is either a daring adventure or nothing.", 73 | "author": "Helen Keller" 74 | }, 75 | { 76 | "quote": "The man who has confidence in himself gains the confidence of others.", 77 | "author": "Hasidic Proverb" 78 | }, 79 | { 80 | "quote": "The only limit to our realization of tomorrow will be our doubts of today.", 81 | "author": "Franklin D. Roosevelt" 82 | }, 83 | { 84 | "quote": "Creativity is intelligence having fun.", 85 | "author": "Albert Einstein" 86 | } 87 | ] 88 | } 89 | -------------------------------------------------------------------------------- /motivate/data/121.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "Soichiro Honda", 5 | "quote": "It wasn’t necessary to be born a nobleman or rich to succeed in life." 6 | }, 7 | { 8 | "author": "Soichiro Honda", 9 | "quote": "I just wouldn’t give in, no way." 10 | }, 11 | { 12 | "author": "Soichiro Honda", 13 | "quote": "If you make a superior product, people will buy it." 14 | }, 15 | { 16 | "author": "Soichiro Honda", 17 | "quote": "Profound belief in something allows every individual to find an immense inner force, and to overcome his or her failings." 18 | }, 19 | { 20 | "author": "Soichiro Honda", 21 | "quote": "You don’t measure a man’s greatness by his physical size, but by his acts, by the impact he makes on human history." 22 | }, 23 | { 24 | "author": "Soichiro Honda", 25 | "quote": "I would have to put in the necessary time, but nothing could stop me from succeeding." 26 | }, 27 | { 28 | "author": "Soichiro Honda", 29 | "quote": "Real happiness lies in the completion of work using your own brains and skills." 30 | }, 31 | { 32 | "author": "Soichiro Honda", 33 | "quote": "There are qualities which lead to success. Courage, perseverance, the ability to dream and to persevere." 34 | }, 35 | { 36 | "author": "Soichiro Honda", 37 | "quote": "I let no one disturb my concentration… Even hunger could not disturb me." 38 | }, 39 | { 40 | "author": "Soichiro Honda", 41 | "quote": "A diploma is by no means a sure ticket to life." 42 | }, 43 | { 44 | "author": "Soichiro Honda", 45 | "quote": "I don’t give a damn for the diploma. What I want is the knowledge." 46 | }, 47 | { 48 | "author": "Soichiro Honda", 49 | "quote": "When you fail, you also learn how not to fail." 50 | }, 51 | { 52 | "author": "Soichiro Honda", 53 | "quote": "Racing improves the breed." 54 | }, 55 | { 56 | "author": "Soichiro Honda", 57 | "quote": "The laboratory of a factory is the best place to learn about failure!" 58 | }, 59 | { 60 | "author": "Soichiro Honda", 61 | "quote": "A company is most clearly defined not by its people or its history, but by it’s products." 62 | }, 63 | { 64 | "author": "Soichiro Honda", 65 | "quote": "Success is 99% failure." 66 | }, 67 | { 68 | "author": "Soichiro Honda", 69 | "quote": "If I’d had to manage my company myself, I would have very quickly gone bankrupt." 70 | }, 71 | { 72 | "author": "Soichiro Honda", 73 | "quote": "My biggest thrill is when I plan something and it fails. My mind is then filled with ideas on how I can improve it." 74 | }, 75 | { 76 | "author": "Soichiro Honda", 77 | "quote": "Hope, makes you forget all the difficult hours." 78 | }, 79 | { 80 | "author": "Soichiro Honda", 81 | "quote": "I enjoy working, and it isn’t because I’m president that I would deprive myself of that pleasure!" 82 | } 83 | 84 | ] 85 | } 86 | -------------------------------------------------------------------------------- /motivate/data/093.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "Do you want to know who you are? Don't ask. Act! Action will delineate and define you.", 5 | "author": "Thomas Jefferson" 6 | }, 7 | { 8 | "quote": "When we are no longer able to change a situation, we are challenged to change ourselves.", 9 | "author": "Viktor E. Frankl" 10 | }, 11 | { 12 | "quote": "The way to get started is to quit talking ans begin doing.", 13 | "author": "Walt Disney Company" 14 | }, 15 | { 16 | "quote": "Do what is right, not what is easy nor what is popular.", 17 | "author": "Roy T. Bennett" 18 | }, 19 | { 20 | "quote": "Success is not how high you have climbed, but how you make a positive difference to the world.", 21 | "author": "Roy T. Bennett" 22 | }, 23 | { 24 | "quote": "Create. Not for the money. Not for the fame. Not for the recognition. But for the pure joy of creating something and sharing it.", 25 | "author": "Ernest Barbaric" 26 | }, 27 | { 28 | "quote": "Champions extend their limits and make things happen.", 29 | "author": "Amit Ray" 30 | }, 31 | { 32 | "quote": "Anyone can exist. Most fools do. It takes guts to truly Live.", 33 | "author": "RMV" 34 | }, 35 | { 36 | "quote": "Pour on, I will endure.", 37 | "author": "William Shakespeare" 38 | }, 39 | { 40 | "quote": "This feat I also had no idea how to accomplish, but ignorance had never stopped me from taking action before.", 41 | "author": "Viet Thanh Nguyen" 42 | }, 43 | { 44 | "quote": "Sacred joy exists in any suffering.", 45 | "author": "Lailah Gift Akita" 46 | }, 47 | { 48 | "quote": "Many people will try to Sell you a Dream, its Your place to let them know you Already have one", 49 | "author": "Kalon Jackson" 50 | }, 51 | { 52 | "quote": "You cannot move things by not moving.", 53 | "author": "Suzy Kassem" 54 | }, 55 | { 56 | "quote": "Butterflies don't know their wings' Colors, but others see their Splendor.", 57 | "author": "Mohith Agadi" 58 | }, 59 | { 60 | "quote": "If you want to be successful, put yourself in a discomfort zone.", 61 | "author": "Sharfaraz Ahmed" 62 | }, 63 | { 64 | "quote": "Sometimes all the players get a bad hand. You just have to be determined enough to see the game through.", 65 | "author": "Dean Wilson" 66 | }, 67 | { 68 | "quote": "Despair and disappointment are the parent of countless inspired, inspiring, triumphant creations.", 69 | "author": "Rasheed Ogunlaru" 70 | }, 71 | { 72 | "quote": "There is a miracle in your mess, don't let the mess make you miss the miracle.", 73 | "author": "Patience Johnson" 74 | }, 75 | { 76 | "quote": "Wishes don't bring riches; work make things work.", 77 | "author": "Ifeanyi Enoch Onuoha" 78 | }, 79 | { 80 | "quote": "If you know your goal and work for it you will reach the peak.", 81 | "author": "Jounayet Rahman" 82 | } 83 | ] 84 | } -------------------------------------------------------------------------------- /motivate/data/131.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "Eric Thomas", 5 | "quote": "When you want to succeed as bad as you want to breathe,33 then you’ll be successful." 6 | }, 7 | { 8 | "author": "Robert H. Schuller", 9 | "quote": "Tough times never last, but tough people do." 10 | }, 11 | { 12 | "author": "Tim Notke", 13 | "quote": "Hard work beats talent when talent doesn’t work hard." 14 | }, 15 | { 16 | "author": "Spryte Loriano", 17 | "quote": "Every great story on the planet happened when someone decided not to give up, but kept going no matter what." 18 | }, 19 | { 20 | "author": "Anonymous", 21 | "quote": "Don’t stop when you’re tired. STOP when you are DONE." 22 | }, 23 | { 24 | "author": "Og Mandino", 25 | "quote": "ailure will never overtake me if my determination to succeed is strong enough." 26 | }, 27 | { 28 | "author": "Conrad Hilton", 29 | "quote": "Success… seems to be connected with action. Successful people keep moving. They make mistakes, but they don’t quit." 30 | }, 31 | { 32 | "author": "W. Clement Stone", 33 | "quote": " Aim for the moon. If you miss, you may hit a star." 34 | }, 35 | { 36 | "author": "Pablo Picasso", 37 | "quote": "Action is the foundational key to all success." 38 | }, 39 | { 40 | "author": "Anonymous", 41 | "quote": "The ones who are crazy enough to think they can change the world, are the ones who do." 42 | }, 43 | { 44 | "author": "Jim Rohn", 45 | "quote": " Successful people do what unsuccessful people are not willing to do. Don’t wish it were easier, wish you were better." 46 | }, 47 | { 48 | "author": "Ayn Rand", 49 | "quote": "The question isn’t who is going to let me; it’s who is going to stop me." 50 | }, 51 | { 52 | "author": "Herbert Simon", 53 | "quote": "One finds limits by pushing them." 54 | }, 55 | { 56 | "author": "Confucius", 57 | "quote": "It does not matter how slowly you go, so long as you do not stop." 58 | }, 59 | { 60 | "author": "Washington Irving", 61 | "quote": " Little minds are tamed and subdued by misfortune; but great minds rise above it." 62 | }, 63 | { 64 | "author": "Thomas A. Edison", 65 | "quote": "Our greatest weakness lies in giving up. The most certain way to succeed is always to try just one more time." 66 | }, 67 | { 68 | "author": "Wayne Dyer", 69 | "quote": "Be miserable. Or motivate yourself. Whatever has to be done, it’s always your choice." 70 | }, 71 | { 72 | "author": "Kresley Cole", 73 | "quote": " Nothing great ever came that easy." 74 | }, 75 | { 76 | "author": "Napoleon Hill", 77 | "quote": "The greatest achievement was at first, and for a time, but a dream." 78 | }, 79 | { 80 | "author": "Anonymous", 81 | "quote": "Great things come to those who don’t wait." 82 | } 83 | ] 84 | } -------------------------------------------------------------------------------- /motivate/data/147.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "Rumi", 5 | "quote": "Before death takes away what you are given, give away what there is to give." 6 | }, 7 | { 8 | "author": "Rumi", 9 | "quote": "Don’t grieve. Anything you lose comes round in another form." 10 | }, 11 | { 12 | "author": "Rumi", 13 | "quote": "What you seek is seeking you." 14 | }, 15 | { 16 | "author": "Rumi", 17 | "quote": "Let yourself be silently drawn by the stronger pull of what you really love." 18 | }, 19 | { 20 | "author": "Rumi", 21 | "quote": "Words are a pretext. It is the inner bond that draws one person to another, not words." 22 | }, 23 | { 24 | "author": "Rumi", 25 | "quote": "In your light I learn how to love. In your beauty, how to make poems. You dance inside my chest where no-one sees you, but sometimes I do, and that sight becomes this art." 26 | }, 27 | { 28 | "author": "Rumi", 29 | "quote": "Gamble everything for love, if you are a true human being. Halfheartedness does not reach into majesty." 30 | }, 31 | { 32 | "author": "Rumi", 33 | "quote": "Your task is not to seek for love, but merely to seek and find all the barriers within yourself that you have built against it." 34 | }, 35 | { 36 | "author": "Rumi", 37 | "quote": "This is love: to fly toward a secret sky, to cause a hundred veils to fall each moment. First to let go of life. Finally, to take a step without feet." 38 | }, 39 | { 40 | "author": "Rumi", 41 | "quote": "You are not a drop in the ocean. You are the entire ocean in a drop" 42 | }, 43 | { 44 | "author": "Rumi", 45 | "quote": "Everyone has been made for some particular work, and the desire for that work has been put in every heart." 46 | }, 47 | { 48 | "author": "Rumi", 49 | "quote": "Come, seek, for search is the foundation of fortune: every success depends upon focusing the heart." 50 | }, 51 | { 52 | "author": "Rumi", 53 | "quote": "Gamble everything for love, if you are a true human being. Halfheartedness does not reach into majesty." 54 | }, 55 | { 56 | "author": "Rumi", 57 | "quote": "Lovers don’t finally meet somewhere. They’re in each other all along." 58 | }, 59 | { 60 | "author": "Rumi", 61 | "quote": "Why are you so enchanted by this world, when a mine of gold lies within you?" 62 | }, 63 | { 64 | "author": "Rumi", 65 | "quote": "You were born with wings, why prefer to crawl through life?" 66 | }, 67 | { 68 | "author": "Rumi", 69 | "quote": "There is a voice that doesn’t use words. Listen." 70 | }, 71 | { 72 | "author": "Rumi", 73 | "quote": "Yesterday I was clever, so I wanted to change the world. Today I am wise, so I am changing myself." 74 | }, 75 | { 76 | "author": "Rumi", 77 | "quote": "If you are irritated by every rub, how will you be polished?" 78 | }, 79 | { 80 | "author": "Rumi", 81 | "quote": "Let the beauty of what you love be what you do." 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/127.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "Robin Sharma", 5 | "quote": "Run your own race. Who cares what others are doing? The only question that matters is, Am I progressing?" 6 | }, 7 | { 8 | "author": "Robin Sharma", 9 | "quote": "Stop being a prisoner of your past. Become the architect of your future." 10 | }, 11 | { 12 | "author": "Robin Sharma", 13 | "quote": "To be successful in business and life, spot the possibilities while others look for problems." 14 | }, 15 | { 16 | "author": "Robin Sharma", 17 | "quote": "There is great power in starting." 18 | }, 19 | { 20 | "author": "Robin Sharma", 21 | "quote": "If you don’t act on life, life will act on you." 22 | }, 23 | { 24 | "author": "Robin Sharma", 25 | "quote": "Give out what you most want to come back." 26 | }, 27 | { 28 | "author": "Robin Sharma", 29 | "quote": "Have the discipline to clean out all the energy-draining people in your life." 30 | }, 31 | { 32 | "author": "Robin Sharma", 33 | "quote": "You were born into fearlessness, but the world may have taught you to fear." 34 | }, 35 | { 36 | "author": "Robin Sharma", 37 | "quote": "Speak your truth even if your voice shakes." 38 | }, 39 | { 40 | "author": "Robin Sharma", 41 | "quote": "Care a lot more about how many people you help than how much recognition you receive." 42 | }, 43 | { 44 | "author": "Robin Sharma", 45 | "quote": "Misunderstood is the price ambition pays to become legendary." 46 | }, 47 | { 48 | "author": "Robin Sharma", 49 | "quote": "This day is your life in miniature. Make it brilliant." 50 | }, 51 | { 52 | "author": "Robin Sharma", 53 | "quote": "Everything is created twice, first in the mind and then in reality." 54 | }, 55 | { 56 | "author": "Robin Sharma", 57 | "quote": "Success belongs to the relentless learners. Because as you know more, you can achieve more." 58 | }, 59 | { 60 | "author": "Robin Sharma", 61 | "quote": "Cut your excuses in half and double your actions around your goals." 62 | }, 63 | { 64 | "author": "Robin Sharma", 65 | "quote": "If you’re not growing more leaders you’re not leading, you’re following." 66 | }, 67 | { 68 | "author": "Robin Sharma", 69 | "quote": "One of the saddest things in life is to get to the end and look back in regret, knowing that you could have been and done so much more, and then wondering why you didn’t." 70 | }, 71 | { 72 | "author": "Robin Sharma", 73 | "quote": "People residing within the cult of average don’t like to see others rise. It threatens their security and spotlights their low self-worth. Go for great, no matter what they say." 74 | }, 75 | { 76 | "author": "Robin Sharma", 77 | "quote": "Daily ripples of excellence over time become a tsunami of success." 78 | }, 79 | { 80 | "author": "Robin Sharma", 81 | "quote": "The hours that ordinary people waste, extraordinary people leverage." 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/157.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "Muhammad Ali", 5 | "quote": "If my mind can concieve it, and my heart can believe it- then I can achieve it." 6 | }, 7 | { 8 | "author": "Muhammad Ali", 9 | "quote": "What you are thinking is what you are becoming." 10 | }, 11 | { 12 | "author": "Muhammad Ali", 13 | "quote": "Don't quit. Suffer now and live the rest of your life as a Champion." 14 | }, 15 | { 16 | "author": "Muhammad Ali", 17 | "quote": "He who is not courageous enough to take risks will accomplish nothing in life." 18 | }, 19 | { 20 | "author": "Muhammad Ali", 21 | "quote": "What keeps me going is goals." 22 | }, 23 | { 24 | "author":"Muhammad Ali", 25 | "quote": "Impossible is nothing." 26 | }, 27 | { 28 | "author": "Elon Musk", 29 | "quote": "If you need inspiring words, don't do it." 30 | }, 31 | { 32 | "author": "Winston Churchill", 33 | "quote": "Continuous effort- not strength or intelligence is the key to unlocking our potential." 34 | }, 35 | { 36 | "author": "Virat Kohli", 37 | "quote": "Self-belief and hard work will always earn you success." 38 | }, 39 | { 40 | "author": "Conor McGregor", 41 | "quote": "There's no talent here, this is hard work. This is an obsession." 42 | }, 43 | { 44 | "author": "Conor McGregor", 45 | "quote": "Excellence is not a skill. Excellence is an attitude." 46 | }, 47 | { 48 | "author": "Conor McGregor", 49 | "quote": "Doubt is only removed by action. If you're not working then that's where doubt comes in." 50 | }, 51 | { 52 | "author": "Conor McGregor", 53 | "quote": "When you are about to quit remember why you started." 54 | }, 55 | { 56 | "author": "Conor McGregor", 57 | "quote": "The more you seek the uncomfortable, the more you will become comfortable." 58 | }, 59 | { 60 | "author": "Conor McGregor", 61 | "quote": "Losers focus on winners. Winners focus on winning." 62 | }, 63 | { 64 | "author": "Conor McGregor", 65 | "quote": "Failure is not an option for me. Success is all I envision." 66 | }, 67 | { 68 | "author": "Conor McGregor", 69 | "quote": "I never lose. Either I win or I learn." 70 | }, 71 | { 72 | "author": "Conor McGregor", 73 | "quote": "Be passionate. Be optimistic. Be grateful." 74 | }, 75 | { 76 | "author": "Richard Branson", 77 | "quote": "If your dreams don't scare you, they are too small." 78 | }, 79 | { 80 | "author": "Richard Branson", 81 | "quote": "Spend more time smiling than frowning and more time praising than criticising." 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/143.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [{ 3 | "author": "Anatole France", 4 | "quote": "It is by acts and not by ideas that people live." 5 | }, 6 | { 7 | "author": "Anonymous", 8 | "quote": "Always imitate the behavior of the winners when you lose." 9 | }, 10 | { 11 | "author": "Karl von Bonstetten", 12 | "quote": "To resist the frigidity of old age one must combine the body, the mind and the heart - and to keep them in parallel vigor one must exercise, study and love." 13 | }, 14 | { 15 | "author": "Lois McMaster Bujold", 16 | "quote": "If you make it plain you like people, it's hard for them to resist liking you back." 17 | }, 18 | { 19 | "author": "Dorothy C. Fisher", 20 | "quote": "A mother is not a person to lean on but a person to make leaning unnecessary." 21 | }, 22 | { 23 | "author": "George Iles", 24 | "quote": "A superstition is a premature explanation that overstays its time." 25 | }, 26 | { 27 | "author": "George Eliot ", 28 | "quote": "The scornful nostril and the high head gather not the odors that lie on the track of truth." 29 | }, 30 | { 31 | "author": "Joan Rivers", 32 | "quote": "A man can sleep around, no questions asked, but if a woman makes nineteen or twenty mistakes she's a tramp." 33 | }, 34 | { 35 | "author": "Ogden Nash", 36 | "quote": "Progress might have been all right once, but it has gone on too long." 37 | }, 38 | { 39 | "author": "Susan Jeffers", 40 | "quote": "Feel the fear and do it anyway." 41 | }, 42 | { 43 | "author": "Ellen Herman", 44 | "quote": "Joel - That's the movies, Ed. Try reality. Ed - No thanks." 45 | }, 46 | { 47 | "author": "Mark Twain", 48 | "quote": "When in doubt, tell the truth." 49 | }, 50 | { 51 | "author": "Starline X. Hodge", 52 | "quote": "Just because it's only 'stuff' doesn't mean I can't appreciate it while I have it." 53 | }, 54 | { 55 | "author": "Alan Corenk", 56 | "quote": "Democracy consists of choosing your dictators, after they've told you what you think it is you want to hear." 57 | }, 58 | { 59 | "author": "Steven Wright ", 60 | "quote": "Last night somebody broke into my apartment and replaced everything with exact duplicates... When I pointed it out to my roommate, he said, 'Do I know you?'" 61 | }, 62 | { 63 | "author": "Thomas Szasz", 64 | "quote": "Men are afraid to rock the boat in which they hope to drift safely through life's currents, when, actually, the boat is stuck on a sandbar. They would be better off to rock the boat and try to shake it loose." 65 | }, 66 | { 67 | "author": "Kyran Pittman,", 68 | "quote": "Different and new is just the same old if you keep doing it over and over." 69 | }, 70 | { 71 | "author": "Frank Lloyd Wright", 72 | "quote": "Noble life demands a noble architecture for noble uses of noble men. Lack of culture means what it has always meant: ignoble civilization and therefore imminent downfall." 73 | }, 74 | { 75 | "author": "Dan Quayle", 76 | "quote": "I stand by all the misstatements that I've made." 77 | }, 78 | { 79 | "author": "Bob Dylan", 80 | "quote": "If the point is sharp, and the arrow is swift, it can pierce through the dust no matter how thick." 81 | } 82 | ] 83 | } 84 | -------------------------------------------------------------------------------- /motivate/data/013.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "An ounce of practice is better than tons of teaching.", 5 | "author": "Mahatma Gandhi" 6 | }, 7 | { 8 | "quote": "The trouble is you think you have time.", 9 | "author": "Buddha" 10 | }, 11 | { 12 | "quote": "The more real you get, the more unreal the world gets.", 13 | "author": "John Lennon" 14 | }, 15 | { 16 | "quote": "Decide that you want it more than you are afraid of it.", 17 | "author": "Bill Cosby" 18 | }, 19 | { 20 | "quote": "Don't give up, Today is hard. Tomorrow will be worse. Day after tomorrow will be sunshine.", 21 | "author": "Jack Ma" 22 | }, 23 | { 24 | "quote": "If you don't give up, you still have a chance.", 25 | "author": "Jack Ma" 26 | }, 27 | { 28 | "quote": "The only way to work is to love what you do.", 29 | "author": "Steve Jobs" 30 | }, 31 | { 32 | "quote": "Be stubborn about your goals, and flexible about your methods.", 33 | "author": "Author Unknown" 34 | }, 35 | { 36 | "quote": "A dream becomes a goal when action is taken toward its achievement.", 37 | "author": "Bo Bennet" 38 | }, 39 | { 40 | "quote": "The goal is not to get rich. The goal is to live rich.", 41 | "author": "Darren Hardy" 42 | }, 43 | { 44 | "quote": "You can\u2019t go back and make a brand new start. But, you can start now and make a brand new ending.", 45 | "author": "Anonymous" 46 | }, 47 | { 48 | "quote": "Today, figure out what makes you happy and do more of it. Figure out what doesn't and do less of it.", 49 | "author": "Mandy Hale" 50 | }, 51 | { 52 | "quote": "Dont let someone else\u2019s opinion of you become your reality.", 53 | "author": "Les Brown" 54 | }, 55 | { 56 | "quote": "The biggest adventure you can take is to live the life of your dreams.", 57 | "author": "Oprah Winfrey." 58 | }, 59 | { 60 | "quote": "Success does not come to you, you go to it.", 61 | "author": "Marva Collins." 62 | }, 63 | { 64 | "quote": "Success is stumbling from failure to failure with no loss of enthusiasm.", 65 | "author": "Winston Churchill." 66 | }, 67 | { 68 | "quote": "If you are not willing to risk the usual, you will have to settle for ordinary.", 69 | "author": "Jim Rohn." 70 | }, 71 | { 72 | "quote": "If you want to shine like a sun, first burn like a sun.", 73 | "author": "APJ Abdul Kalam" 74 | }, 75 | { 76 | "quote": "Life is either a daring adventure or nothing.", 77 | "author": "Helen Keller." 78 | }, 79 | { 80 | "quote": "Failure is an opportunity to begin again more intelligently.", 81 | "author": "Henry Ford." 82 | } 83 | ] 84 | } -------------------------------------------------------------------------------- /motivate/data/021.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "A ship in port is safe, but that's not what ships are built for.", 5 | "author": "Grace Hopper" 6 | }, 7 | { 8 | "quote": " It is often easier to ask for forgiveness than to ask for permission.", 9 | "author": "Grace Hopper" 10 | }, 11 | { 12 | "quote": "You don't manage people; you manage things. You lead people.", 13 | "author": "Grace Hopper" 14 | }, 15 | { 16 | "quote": "I attribute my success to this: I never gave or took any excuse.", 17 | "author": "Florence Nightingale" 18 | }, 19 | { 20 | "quote": "The most difficult thing is the decision to act, the rest is merely tenacity.", 21 | "author": "Amelia Earhart" 22 | }, 23 | { 24 | "quote": "The most common way people give up their power is by thinking they don’t have any.", 25 | "author": "Alice Walker" 26 | }, 27 | { 28 | "quote": "The two most important days in your life are the day you are born and the day you find out why.", 29 | "author": "Mark Twain" 30 | }, 31 | { 32 | "quote": "When the whole world is silent, even one voice becomes powerful." , 33 | "author": "Malala Yousafzai" 34 | }, 35 | { 36 | "quote": "Knowing what must be done does away with fear." , 37 | "author": "Rosa Parks" 38 | }, 39 | { 40 | "quote": "No matter how difficult and painful it may be, nothing sounds as good to the soul as the truth." , 41 | "author": "Martha Beck" 42 | }, 43 | { 44 | "quote": "Be first and be lonely." , 45 | "author": "Ginni Rometty" 46 | }, 47 | { 48 | "quote": "Step out of the history that is holding you back. Step into the new story you are willing to create." , 49 | "author": "Oprah Winfrey" 50 | }, 51 | { 52 | "quote": "What you do makes a difference, and you have to decide what kind of difference you want to make." , 53 | "author": "Jane Goodall" 54 | }, 55 | { 56 | "quote": "A good compromise is one where everybody makes a contribution." , 57 | "author": "Angela Merkel" 58 | }, 59 | { 60 | "quote": "I choose to make the rest of my life the best of my life." , 61 | "author": "Louise Hay" 62 | }, 63 | { 64 | "quote": "In order to be irreplaceable one must always be different." , 65 | "author": "Coco Chanel" 66 | }, 67 | { 68 | "quote": "It’s one of the greatest gifts you can give yourself, to forgive. Forgive everybody." , 69 | "author": "Maya Angelou" 70 | }, 71 | { 72 | "quote":"Change your life today. Don’t gamble on the future, act now, without delay.", 73 | "author": "Simone de Beauvoir" 74 | }, 75 | { 76 | "quote":"If you’re not making some notable mistakes along the way, you’re certainly not taking enough business and career chances.", 77 | "author": "Sallie Krawcheck" 78 | }, 79 | { 80 | "quote":"Normal is not something to aspire to, it’s something to get away from.", 81 | "author": "Jodie Foster" 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/129.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "Robin Sharma", 5 | "quote": "The main reason we waste time on small things is that we haven’t identified our big things." 6 | }, 7 | { 8 | "author": "Robin Sharma", 9 | "quote": "The only limits on your life are those that you set yourself." 10 | }, 11 | { 12 | "author": "Robin Sharma", 13 | "quote": "Every thought plants a seed to one of your actions. Every action, good or bad, will yield a consequence. The person who takes good steps every day, cannot help but reap a harvest of awesome results." 14 | }, 15 | { 16 | "author": "Robin Sharma", 17 | "quote": "Dream up a vision so brave it makes all around you roll with laughter." 18 | }, 19 | { 20 | "author": "Robin Sharma", 21 | "quote": "Be so good at what you do that you leave people breathless by your performance." 22 | }, 23 | { 24 | "author": "Robin Sharma", 25 | "quote": "The only failure is not trying." 26 | }, 27 | { 28 | "author": "Robin Sharma", 29 | "quote": "Today with love and respect, I challenge you to do one thing that you never thought you could do. This day’s your platform to transform." 30 | }, 31 | { 32 | "author": "Robin Sharma", 33 | "quote": "Once you surrender to your vision, success begins to chase you." 34 | }, 35 | { 36 | "author": "Robin Sharma", 37 | "quote": "To have what few have, do what few do." 38 | }, 39 | { 40 | "author": "Robin Sharma", 41 | "quote": "When you’re old, you’ll have wished you dreamed bigger, reached higher and achieved more. So why wait until you’re old?" 42 | }, 43 | { 44 | "author": "Robin Sharma", 45 | "quote": "As you live your hours, so you create your years. As you live your days, so you craft your life." 46 | }, 47 | { 48 | "author": "Robin Sharma", 49 | "quote": "Until your dream dominates your mindset, you’ll never wake up your greatness." 50 | }, 51 | { 52 | "author": "Robin Sharma", 53 | "quote": "Never lose the sparkle in your eye, the fire in your belly and the steel in your character." 54 | }, 55 | { 56 | "author": "Robin Sharma", 57 | "quote": "Less talk, more do. Less selfish, more selfless." 58 | }, 59 | { 60 | "author": "Robin Sharma", 61 | "quote": "To construct an awesome life, build your daily life around your deepest priorities." 62 | }, 63 | { 64 | "author": "Robin Sharma", 65 | "quote": "Elite performance is never luck. It’s hard work." 66 | }, 67 | { 68 | "author": "Robin Sharma", 69 | "quote": "Genius is more about what you have the discipline to say no to versus yes to." 70 | }, 71 | { 72 | "author": "Robin Sharma", 73 | "quote": "Great achievement often happens when our backs are up against the wall." 74 | }, 75 | { 76 | "author": "Robin Sharma", 77 | "quote": "Dedicate yourself to expressing your best." 78 | }, 79 | { 80 | "author": "Robin Sharma", 81 | "quote": "Love is the secret weapon of the iconic entrepreneur. Work with love, lead with love, serve with love. Do these and you become undefeatable." 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/144.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [{ 3 | "author": "Confucius", 4 | "quote": "I want you to be everything that's you, deep at the center of your being." 5 | }, 6 | { 7 | "author": "Les Brown", 8 | "quote": "Life takes on meaning when you become motivated, set goals and charge after them in an unstoppable manner." 9 | }, 10 | { 11 | "author": "Leo Buscaglia", 12 | "quote": "Too often we underestimate the power of a touch, a smile, a kind word, a listening ear, an honest compliment, or the smallest act of caring, all of which have the potential to turn a life around." 13 | }, 14 | { 15 | "author": "Zig Ziglar", 16 | "quote": "People often say that motivation doesn't last. Well, neither does bathing-that's why we recommend it daily." 17 | }, 18 | { 19 | "author": "Donald Laird", 20 | "quote": "To handle yourself, use your head; to handle others, use your heart." 21 | }, 22 | { 23 | "author": "William Butler Yeats", 24 | "quote": "Education is not the filling of the pail, but, the lighting of the fire." 25 | }, 26 | { 27 | "author": "Dwight D. Eisenhower", 28 | "quote": "Motivation is the art of getting people to do what you want them to do because they want to do it." 29 | }, 30 | { 31 | "author": "Johann Wolfgang Von Goethe", 32 | "quote": "Instruction does much, but encouragement does everything." 33 | }, 34 | { 35 | "author": "Mike Ditka", 36 | "quote": "The ones who want to achieve and win championships motivate themselves." 37 | }, 38 | { 39 | "author": "Jim Ryun", 40 | "quote": "Motivation is what gets you started. Habit is what keeps you going." 41 | }, 42 | { 43 | "author": "Lou Holtz", 44 | "quote": "Motivation is simple. You eliminate those who are not motivated." 45 | }, 46 | { 47 | "author": "Pat Riley", 48 | "quote": "There's always the motivation of wanting to win. Everybody has that. But a champion needs, in his attitude, a motivation above and beyond winning." 49 | }, 50 | { 51 | "author": "Max Schmelling", 52 | "quote": "Why did I want to win? because I didn't want to lose!" 53 | }, 54 | { 55 | "author": "Francie Larrieu Smith", 56 | "quote": "The most important thing about motivation is goal setting. You should always have a goal." 57 | }, 58 | { 59 | "author": "Harriet Braiker", 60 | "quote": "Striving for excellence motivates you; striving for perfection is demoralizing." 61 | }, 62 | { 63 | "author": "Peter Davies", 64 | "quote": "Motivation is like food for the brain. You cannot get enough in one sitting. It needs continual and regular top ups." 65 | }, 66 | { 67 | "author": "Herman Cain", 68 | "quote": "Nobody motivates today's workers. If it doesn't come from within, it doesn't come. Fun helps remove the barriers that allow people to motivate themselves." 69 | }, 70 | { 71 | "author": "Dale Carnegie", 72 | "quote": "There is only one way... to get anybody to do anything. And that is by making the other person want to do it." 73 | }, 74 | { 75 | "author": "Jerry Gillies", 76 | "quote": "Make sure you visualize what you really want, not what someone else wants for you." 77 | }, 78 | { 79 | "author": "Walter Savage Landor", 80 | "quote": "We talk on principal, but act on motivation." 81 | } 82 | ] 83 | } -------------------------------------------------------------------------------- /motivate/data/177.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "I find the great thing in this world is not so much where we stand, as in what direction we are moving.", 5 | "author": "Oliver Wendell Holmes" 6 | }, 7 | { 8 | "quote": "Education is the best provision for old age.", 9 | "author": "Aristotle" 10 | }, 11 | { 12 | "quote": "Do not wait to strike 'til the iron is hot; but make it hot by striking.", 13 | "author": "William Butler Yeats" 14 | }, 15 | { 16 | "quote": "The night is far spent, the day is at hand; let us therefore cast off the works of darkness, and let us put on the armor of light.", 17 | "author": "The Holy Bible: Romans, 13:12" 18 | }, 19 | { 20 | "quote": "How happy are those whose walls already rise!", 21 | "author": "Virgil" 22 | }, 23 | { 24 | "quote": "There never was a good knife made of bad steel.", 25 | "author": "Benjamin Franklin" 26 | }, 27 | { 28 | "quote": "Wars may be fought with weapons, but they are won by men. It is the spirit of the men who follow and of the man who leads that gains the victory.", 29 | "author": "George S. Patton" 30 | }, 31 | { 32 | "quote": "The winds and the waves are always on the side of the ablest navigators.", 33 | "author": "Edward Gibbon" 34 | }, 35 | { 36 | "quote": "There is only one good, knowledge, and one evil, ignorance.", 37 | "author": "Socrates" 38 | }, 39 | { 40 | "quote": "Three things are necessary for the salvation of man: to know what he ought to believe; to know what he ought to desire; and to know what he ought to do.", 41 | "author": "St. Thomas Aquinas" 42 | }, 43 | { 44 | "quote": "We only live to discover beauty. All else is a form of waiting.", 45 | "author": "Kahlil Gibran" 46 | }, 47 | { 48 | "quote": "Most of us can, ad we choose, make of the world either a palace or a prison.", 49 | "author": "John Lubbock" 50 | }, 51 | { 52 | "quote": "Every genuine work of art has as much reason for being as the earth and the sun.", 53 | "author": "Ralph Waldo Emerson" 54 | }, 55 | { 56 | "quote": "The ancient Oracle said that I was the wisest of all the Greeks. It is because I alone, of all the Greeks, know that I know nothing.", 57 | "author": "Socrates" 58 | }, 59 | { 60 | "quote": "In preparing for battle I have always found that plans are useless, but planning is indispensable.", 61 | "author": "Dwight D. Eisenhower" 62 | }, 63 | { 64 | "quote": "Those who lose dreaming are lost.", 65 | "author": "Australian Aboriginal saying" 66 | }, 67 | { 68 | "quote": "More than ever before in human history, we share a common destiny. We can master it only if we face it together. And that is why we have the United Nations.", 69 | "author": "Kofi Annan" 70 | }, 71 | { 72 | "quote": "The brain is like a muscle. When it is in use we feel very good. Understanding is joyous.", 73 | "author": "Carl Sagan" 74 | }, 75 | { 76 | "quote": "The true test of civilization is, not the census, nor the size of cities, nor the crops - no, but the kind of man the country turns out.", 77 | "author": "Ralph Waldo Emerson" 78 | }, 79 | { 80 | "quote": "Numberless are the world's wonders, but none more wonderful than man.", 81 | "author": "Sophocles" 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/120.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "Jack Ma", 5 | "quote": "You’ve got to make your team have value, innovation, and vision." 6 | }, 7 | { 8 | "author": "Jack Ma", 9 | "quote": "Never give up. Today is hard, tomorrow will be worse, but the day after tomorrow will be sunshine." 10 | }, 11 | { 12 | "author": "Jack Ma", 13 | "quote": "The very important thing you should have is patience." 14 | }, 15 | { 16 | "author": "Jack Ma", 17 | "quote": "We’re never in lack of money. We lack people with dreams, (people) who can die for those dreams." 18 | }, 19 | { 20 | "author": "Jack Ma", 21 | "quote": "It doesn’t matter if I failed. At least I passed the concept on to others. Even if I don’t succeed, someone will succeed." 22 | }, 23 | { 24 | "author": "Jack Ma", 25 | "quote": "You should learn from your competitor, but never copy. Copy and you die." 26 | }, 27 | { 28 | "author": "Jack Ma", 29 | "quote": "You never know how much can you do in your life." 30 | }, 31 | { 32 | "author": "Jack Ma", 33 | "quote": "A peace talk is always difficult, always complicated." 34 | }, 35 | { 36 | "author": "Jack Ma", 37 | "quote": "A leader should have higher grit and tenacity, and be able to endure what the employees can’t." 38 | }, 39 | { 40 | "author": "Jack Ma", 41 | "quote": "If we are a good team and know what we want to do, one of us can defeat ten of them." 42 | }, 43 | { 44 | "author": "Jack Ma", 45 | "quote": "You never know that the things you’re doing are that meaningful to society." 46 | }, 47 | { 48 | "author": "Jack Ma", 49 | "quote": "When you are small, you have to be very focused and rely on your brain, not your strength." 50 | }, 51 | { 52 | "author": "Jack Ma", 53 | "quote": "Opportunity lies in the place where the complaints are." 54 | }, 55 | { 56 | "author": "Jack Ma", 57 | "quote": "Life is so short, so beautiful. Don’t be so serious about work. Enjoy the lives." 58 | }, 59 | { 60 | "author": "Jack Ma", 61 | "quote": "If you’ve never tried, how will you ever know if there’s any chance?" 62 | }, 63 | { 64 | "author": "Jack Ma", 65 | "quote": "If you don’t give up, you still have a chance. Giving up is the greatest failure." 66 | }, 67 | { 68 | "author": "Jack Ma", 69 | "quote": "When we have money, we start making mistakes." 70 | }, 71 | { 72 | "author": "Jack Ma", 73 | "quote": "I try to make myself happy because I know that if I’m not happy, my colleagues are not happy and my shareholders are not happy and my customers are not happy." 74 | }, 75 | { 76 | "author": "Jack Ma", 77 | "quote": "Help young people. Help small guys. Because small guys will be big. Young people will have the seeds you bury in their minds, and when they grow up, they will change the world." 78 | }, 79 | { 80 | "author": "Jack Ma", 81 | "quote": "No matter how tough the chase is, you should always have the dream you saw on the first day. It’ll keep you motivated and rescue you (from any weak thoughts)." 82 | } 83 | 84 | ] 85 | } 86 | -------------------------------------------------------------------------------- /motivate/data/140.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "A person destiny is what he thinks of himself.", 5 | "author": "Govind Dixit" 6 | }, 7 | { 8 | "quote": "Cooperation must be earned not demanded", 9 | "author": "Maya Angelou" 10 | }, 11 | { 12 | "quote": "There is nothing permanent except change.", 13 | "author": "Heraclitus" 14 | }, 15 | { 16 | "quote": "You cannot shake hands with a clenched fist. ", 17 | "author": "Indira Gandhi" 18 | }, 19 | { 20 | "quote": "Let us sacrifice our today so that our children can have a better tomorrow. ", 21 | "author": "A. P. J. Abdul Kalam " 22 | }, 23 | { 24 | "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.", 25 | "author": "Oprah Winfrey" 26 | }, 27 | { 28 | "quote": "It is better to be feared than loved, if you cannot be both.", 29 | "author": "Niccolo Machiavelli" 30 | }, 31 | { 32 | "quote": "Do not mind anything that anyone tells you about anyone else. Judge everyone and everything for yourself.", 33 | "author": "Henry James" 34 | }, 35 | { 36 | "quote": "There is no charm equal to tenderness of heart.", 37 | "author": "Jane Austen" 38 | }, 39 | { 40 | "quote": "All that we see or seem is but a dream within a dream.", 41 | "author": "Edgar Allan Poe" 42 | }, 43 | { 44 | "quote": "Lord, make me an instrument of thy peace. Where there is hatred, let me sow love.", 45 | "author": " Francis of Assisi" 46 | }, 47 | { 48 | "quote": "The only journey is the one within.", 49 | "author": "Rainer Maria Rilke" 50 | }, 51 | { 52 | "quote": "Good judgment comes from experience, and a lot of that comes from bad judgment.", 53 | "author": "Will Rogers" 54 | }, 55 | { 56 | "quote": "Think in the morning. Act in the noon. Eat in the evening. Sleep in the night.", 57 | "author": "William Blake" 58 | }, 59 | { 60 | "quote": "Life without love is like a tree without blossoms or fruit.", 61 | "author": "Khalil Gibran" 62 | }, 63 | { 64 | "quote": "No act of kindness, no matter how small, is ever wasted. ", 65 | "author": "Aesop" 66 | }, 67 | { 68 | "quote": "It is far better to be alone, than to be in bad company.", 69 | "author": "George Washington" 70 | }, 71 | { 72 | "quote": "If you cannot do great things, do small things in a great way.", 73 | "author": "Napoleon Hill" 74 | }, 75 | { 76 | "quote": "Permanence, perseverance and persistence in spite of all obstacles, discouragements, and impossibilities: It is this, that in all things distinguishes the strong soul from the weak. ", 77 | "author": "Thomas Carlyle" 78 | }, 79 | { 80 | "quote": "The supreme art of war is to subdue the enemy without fighting.", 81 | "author": "Sun Tzu" 82 | }, 83 | { 84 | "quote": "The most difficult thing is the decision to act, the rest is merely tenacity.", 85 | "author": "Amelia Earhart" 86 | }, 87 | { 88 | "quote": "It is during our darkest moments that we must focus to see the light.", 89 | "author": "Aristotle Onassis" 90 | }, 91 | { 92 | "quote": "Don’t judge each day by the harvest you reap but by the seeds that you plant.", 93 | "author": "Robert Louis Stevenson" 94 | } 95 | ] 96 | } 97 | -------------------------------------------------------------------------------- /motivate/data/164.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "Ronald Reagan", 5 | "quote": "A people free to choose will always choose peace." 6 | }, 7 | { 8 | "author": "Benjamin Jowett", 9 | "quote": "Never retreat. Never explain. Get it done and let them howel" 10 | }, 11 | { 12 | "author": "William P. Young", 13 | "quote": "I really do believe that od is love, one of deep affection and grace and forviveness and inspiration" 14 | }, 15 | { 16 | "author": "William Blake", 17 | "quote": "The man who never in his mind and thoughts travel'd to heaven is no artist" 18 | }, 19 | { 20 | "author": "Napoleon Bonaparte", 21 | "quote": "In politics stupidity is not a handicap" 22 | }, 23 | { 24 | "author": "Aldo Leopold", 25 | "quote": "Conservation is a state of hrmony between men and land" 26 | }, 27 | { 28 | "author": "Marcus Aurelius", 29 | "quote": "He who lives in harmony with himself lives in harmony with the universe" 30 | }, 31 | { 32 | "author": "Jessamyn West", 33 | "quote": "The past is really almost as much a work of the imagination as the future" 34 | }, 35 | { 36 | "author": "William Ellery Channing", 37 | "quote": "Faith is love taking the form of aspiration" 38 | }, 39 | { 40 | "author": "Bill Watterson", 41 | "quote": "If people sat outside the looked at the stars each night, I'll bet they'd live a lot differently" 42 | }, 43 | { 44 | "author": "Isaac Bashevis Singer", 45 | "quote": "Every creator painfully experiences the chasm between his inner vision and its ultimate expression" 46 | }, 47 | { 48 | "author": "William Lyon Phelps", 49 | "quote": "If I didn't start painting, I would have raised chickens" 50 | }, 51 | { 52 | "author": "Steve Jobs", 53 | "quote": "Innovation distinguishes between a leader and a follower" 54 | }, 55 | { 56 | "author": "Nathaniel Hawthorne", 57 | "quote": "A pure hand needs no glove to cover it" 58 | }, 59 | { 60 | "author": "Euripides", 61 | "quote": "The greatest pleasure of life is love" 62 | }, 63 | { 64 | "author": "Wallace Stevens", 65 | "quote": "In the world of words, the imagination is one of the forces of nature" 66 | }, 67 | { 68 | "author": "Arne Jacobsen", 69 | "quote": "If a building becomes architecture, then it is art" 70 | }, 71 | { 72 | "author": "Diogenes", 73 | "quote": "What I like to drink most is wine that belongs to others" 74 | }, 75 | { 76 | "author": "Hippocrates", 77 | "quote": "Life is short, the art is long" 78 | }, 79 | { 80 | "author": "Oscar Wilde", 81 | "quote": "Every portrait that is painted with feeling is a portrait of the artist, not the sitter" 82 | } 83 | ] 84 | } -------------------------------------------------------------------------------- /motivate/data/160.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "Tawfīq al-Ḥakīm", 5 | "quote": "My ambition is greater than my effort. My effort is greater than my talent. And my talent is a hostage of my temper. But I persist." 6 | }, 7 | { 8 | "author": "André Gide", 9 | "quote": "It is better to be hated for what you are than loved for what you aren't." 10 | }, 11 | { 12 | "author": "Tawfīq al-Ḥakīm", 13 | "quote": "Most people live way too long in the past. The past is a springboard to jump forward from, not a sofa to relax on." 14 | }, 15 | { 16 | "author": "Truman Capote", 17 | "quote": "Failure is the spice that gives success its taste" 18 | }, 19 | { 20 | "author": "Jacques Brel", 21 | "quote": "Talent doesn't exist. Talent is wanting to do something." 22 | }, 23 | { 24 | "author": "Socrate", 25 | "quote": "Falling is not failing. Failing is staying where you fell." 26 | }, 27 | { 28 | "author": "Cervantes", 29 | "quote": "When a door closes, another one opens up." 30 | }, 31 | { 32 | "author": "Samuel Becket", 33 | "quote": "Thriving for small things is achieving big things." 34 | }, 35 | { 36 | "author": "Jean-Paul Sartre", 37 | "quote": "In life, you don't do what you want but you are responsible for what you are." 38 | }, 39 | { 40 | "author": "Walt Disney", 41 | "quote": "If we have the courage to follow them, all dreams coome true." 42 | }, 43 | { 44 | "author": "Voltaire", 45 | "quote": "I decided to be happy because it's good for my health." 46 | }, 47 | { 48 | "author": "Albert Camus", 49 | "quote": "The way doesn't matter, ambition is enough to get anywhere." 50 | }, 51 | { 52 | "author": "Coluche", 53 | "quote": "The doors of the future are open to whoever can push them." 54 | }, 55 | { 56 | "author": "Winston Churchill", 57 | "quote": "Success is going from failure to failure without losing your enthusiasm." 58 | }, 59 | { 60 | "author": "Confucius", 61 | "quote": "You will never find what you don't look for." 62 | }, 63 | { 64 | "author": "François Mauriac", 65 | "quote": "Our life is worth what it costed us in efforts." 66 | }, 67 | { 68 | "author": "Georges Clémenceau", 69 | "quote": "There is only one way to fail, it is by giving up before succeeding." 70 | }, 71 | { 72 | "author": "Zig Ziglar", 73 | "quote": "The pessimistic says: «I'll it believe when I see it». The optimistic says «I'll see it when I believe it»." 74 | }, 75 | { 76 | "author": "Prosper de Crébillon", 77 | "quote": "Success is the son of courage." 78 | }, 79 | { 80 | "author": "Hegel", 81 | "quote": "Nothing big is accomplished without passion." 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/170.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "Terry Pratchett", 5 | "quote": "There are times in life when people must know when not to let go. Balloons are designed to teach small children this." 6 | }, 7 | { 8 | "author": "Terry Pratchett", 9 | "quote": "It is well known that a vital ingredient of success is not knowing that what you're attempting can't be done." 10 | }, 11 | { 12 | "author": "Terry Pratchett", 13 | "quote": "Fantasy is an exercise bicycle for the mind. It might not take you anywhere, but it tones up the muscles that can." 14 | }, 15 | { 16 | "author": "Terry Pratchett", 17 | "quote": "If you don’t turn your life into a story, you just become a part of someone else’s story." 18 | }, 19 | { 20 | "author": "Terry Pratchett", 21 | "quote": "Stories of imagination tend to upset those without one." 22 | }, 23 | { 24 | "author": "Terry Pratchett", 25 | "quote": "Coming back to where you started is not the same as never leaving." 26 | }, 27 | { 28 | "author": "Terry Pratchett", 29 | "quote": "The harder I work, the luckier I become." 30 | }, 31 | { 32 | "author": "Terry Pratchett", 33 | "quote": "If you trust in yourself and believe in your dreams and follow your star, you’ll still get beaten by people who spent their time working hard and learning things and weren’t so lazy." 34 | }, 35 | { 36 | "author": "Terry Pratchett", 37 | "quote": "Evil begins when you begin to treat people as things." 38 | }, 39 | { 40 | "author": "Terry Pratchett", 41 | "quote": "They say a little knowledge is a dangerous thing, but it’s not one half so bad as a lot of ignorance." 42 | }, 43 | { 44 | "author": "Terry Pratchett", 45 | "quote": "The presence of those seeking the truth is infinitely to be preferred to the presence of those who think they’ve found it." 46 | }, 47 | { 48 | "author": "Terry Pratchett", 49 | "quote": "Goodness is about what you do. Not who you pray to." 50 | }, 51 | { 52 | "author": "Terry Pratchett", 53 | "quote": "It’s still magic even if you know how it’s done." 54 | }, 55 | { 56 | "author": "Terry Pratchett", 57 | "quote": "It's not worth doing something unless you were doing something that someone, somewere, would much rather you weren't doing." 58 | }, 59 | { 60 | "author": "Terry Pratchett", 61 | "quote": "Real stupidity beats artificial intelligence every time" 62 | }, 63 | { 64 | "author": "Terry Pratchett", 65 | "quote": "It is said that your life flashes before your eyes just before you die. That is true, it's called life" 66 | }, 67 | { 68 | "author": "Terry Pratchett", 69 | "quote": "Wisdom comes from experience. Experience is often a result of lack of wisdom" 70 | }, 71 | { 72 | "author": "Terry Pratchett", 73 | "quote": "Inside every sane person there’s a madman struggling to get out" 74 | }, 75 | { 76 | "author": "Terry Pratchett", 77 | "quote": "So much universe, and so little time" 78 | }, 79 | { 80 | "author": "Terry Pratchett", 81 | "quote": "Inside every old person is a young person wondering what happened." 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/014.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "Only I can change my life. No one can do it for me.", 5 | "author": "Carol Burnett" 6 | }, 7 | { 8 | "quote": "Not how long, but how well you have lived is the main thing.", 9 | "author": "Seneca" 10 | }, 11 | { 12 | "quote": "The energy of the mind is the essence of life.", 13 | "author": "Aristotle" 14 | }, 15 | { 16 | "quote": "Love all, trust a few, do wrong to none.", 17 | "author": "William Shakespeare" 18 | }, 19 | { 20 | "quote": "In 20 years, you probably won't even remember this.", 21 | "author": "Anonymous" 22 | }, 23 | { 24 | "quote": "Never cowardly or cruel. Never give up, never give in.", 25 | "author": "Doctor Who" 26 | }, 27 | { 28 | "quote": "Do what you feel in your heart to be right, for you'll be criticized anyway.", 29 | "author": "Eleanor Roosevelt." 30 | }, 31 | { 32 | "quote": "Plant your garden and decorate your own soul, instead of waiting for someone to bring you flowers.", 33 | "author": "Jose Luis Borges" 34 | }, 35 | { 36 | "quote": "Nothing in life is to be feared; it is only to be understood. Now is the time to understand more so that we may fear less.", 37 | "author": "Marie Curie" 38 | }, 39 | { 40 | "quote": "Health is the greatest gift, contentment the greatest wealth, faithfulness the best relationship.", 41 | "author": "Buddha" 42 | }, 43 | { 44 | "quote": "Life is really simple, but we insist on making it complicated.", 45 | "author": "Confucius" 46 | }, 47 | { 48 | "quote": "This too, shall pass.", 49 | "author": "Anonymous" 50 | }, 51 | { 52 | "quote": "There is only one happiness in life – to love and to be loved.", 53 | "author": "George Sand" 54 | }, 55 | { 56 | "quote": "The only person you should try to be better than is the person you were yesterday.", 57 | "author": "Anonymous" 58 | }, 59 | { 60 | "quote": "Never be bullied into silence. Never allow yourself to be made a victim. Accept no one's definition of your life; define yourself.", 61 | "author": "Harvey Fierstein" 62 | }, 63 | { 64 | "quote": "Life's too mysterious to take too serious.", 65 | "author": "Mary Engelbreit" 66 | }, 67 | { 68 | "quote": "No one can make you feel inferior without your consent.", 69 | "author": "Eleanor Roosevelt" 70 | }, 71 | { 72 | "quote": "It's not about how hard you can hit; it's about how hard you can get hit and keep moving forward.", 73 | "author": "Rocky Balboa" 74 | }, 75 | { 76 | "quote": "It's OK to not be OK, as long as you don't stay that way.", 77 | "author": "Anonymous" 78 | }, 79 | { 80 | "quote": "May I never be complete. May I never be content. May I never be perfect.", 81 | "author": "Chuck Palahniuk" 82 | } 83 | ] 84 | } -------------------------------------------------------------------------------- /motivate/data/017.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "If you tell the truth, you don't have to remember anything", 5 | "author": "Mark Twain" 6 | }, 7 | { 8 | "quote": "The secret of getting ahead is getting started", 9 | "author": "Mark Twain" 10 | }, 11 | { 12 | "quote": "It's not the size of the dog in the fight, it's the size of the fight in the dog", 13 | "author": "Mark Twain" 14 | }, 15 | { 16 | "quote": "The two most important days in your life are the day you are born and the day you find out why", 17 | "author": "Mark Twain" 18 | }, 19 | { 20 | "quote": "If you don't read the newspaper, you're uniformed. If you read the newspaper, you're mis-informed", 21 | "author": "Mark Twain" 22 | }, 23 | { 24 | "quote": "Kindness is the language which the deaf can hear and the blind can see", 25 | "author": "Mark Twain" 26 | }, 27 | { 28 | "quote": "You can't depend on your eyes when your imagination is out of focus", 29 | "author": "Mark Twain" 30 | }, 31 | { 32 | "quote": "Courage is resistance to fear, master of fear, not absence of fear", 33 | "author": "Mark Twain" 34 | }, 35 | { 36 | "quote": "It is better to keep your mouth closed and let people think you are a fool than to open it and remove all doubt", 37 | "author": "Mark Twain" 38 | }, 39 | { 40 | "quote": "Age is an issue of mind over matter. If you don't mind, it doesn't matter", 41 | "author": "Mark Twain" 42 | }, 43 | { 44 | "quote": "All you need in this life is ignorance and confidence, and then success is sure", 45 | "author": "Mark Twain" 46 | }, 47 | { 48 | "quote": "Do the right thing. It will gratify some people and astonish the rest", 49 | "author": "Mark Twain" 50 | }, 51 | { 52 | "quote": "A person who won't read has no advantage over one who can't read", 53 | "author": "Mark Twain" 54 | }, 55 | { 56 | "quote": "The best way to cheer yourself up is to try to cheer somebody else up", 57 | "author": "Mark Twain" 58 | }, 59 | { 60 | "quote": "The only way to keep your health is to eat what you don't want, drink what you don't like, and do what you'd rather not", 61 | "author": "Mark Twain" 62 | }, 63 | { 64 | "quote": "Humor is mankind's greatest blessing", 65 | "author": "Mark Twain" 66 | }, 67 | { 68 | "quote": "When you fish for love, bait with your heart, not your brain", 69 | "author": "Mark Twain" 70 | }, 71 | { 72 | "quote": "Don't go around saying the world owes you a living. The world owes you nothing. It was here first", 73 | "author": "Mark Twain" 74 | }, 75 | { 76 | "quote": "Wrinkles should merely indicate where smiles have been", 77 | "author": "Mark Twain" 78 | }, 79 | { 80 | "quote": "When in doubt, tell the truth", 81 | "author": "Mark Twain" 82 | } 83 | ] 84 | } -------------------------------------------------------------------------------- /motivate/data/019.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "You can't play life like an untuned instrument and then ask why the music is unpleasent.", 5 | "author": "Shaan Ahmed" 6 | }, 7 | { 8 | "quote": "Reality is wrong. Dreams are for real.", 9 | "author": "Tupac Shakur" 10 | }, 11 | { 12 | "quote": "Just know that I was once considered just a dreamer... Then I paid my dues and turned so many doubters to believers...", 13 | "author": "Big K.R.I.T." 14 | }, 15 | { 16 | "quote": "Don't let nobody tell you that you can't do it. Love what you do until you don't love it anymore. Nothing's impossible.", 17 | "author": "Fetty Wap" 18 | }, 19 | { 20 | "quote": "If you don't build your dream someone will hire you to help build theirs.", 21 | "author": "Tony A. Gaskins Jr." 22 | }, 23 | { 24 | "quote": "I can accept failure, everyone fails at something. But I can’t accept not trying.", 25 | "author": "Michael Jordan" 26 | }, 27 | { 28 | "quote": "Only those who will risk going too far can possibly find out how far it is possible to go.", 29 | "author": "TS Eliot" 30 | }, 31 | { 32 | "quote": "Believe in your dreams and dream big. And then after you’ve done that, dream bigger.", 33 | "author": "Howard Schultz, CEO Starbucks" 34 | }, 35 | { 36 | "quote": "If your actions inspire others to dream more, learn more, do more and become more, you are a leader.", 37 | "author": "John Quincy Adams" 38 | }, 39 | { 40 | "quote": "Success is not built on success. It’s built on failure. It’s built on frustration. Sometimes its built on catastrophe.", 41 | "author": "Sumner Redstone" 42 | }, 43 | { 44 | "quote": "Skills are cheap. Passion is priceless.", 45 | "author": "Gary Vaynerchuk" 46 | }, 47 | { 48 | "quote": "I think the thing to do is enjoy the ride while you’re on it.", 49 | "author": "Johnny Depp" 50 | }, 51 | { 52 | "quote": "Sometimes you need to push people into the deep for some people will never learn to swim if they've never been taught how it feels to drown", 53 | "author": "Shaan Ahmed" 54 | }, 55 | { 56 | "quote": "No one should have the power to shatter your dreams unless you give it to them.", 57 | "author": "Unknown" 58 | }, 59 | { 60 | "quote": "A creative man is motivated by the desire to achieve, not by the desire to beat others.", 61 | "author": "Ayn Rand" 62 | }, 63 | { 64 | "quote": "Knowing Is Not Enough; We Must Apply. Wishing Is Not Enough; We Must Do.", 65 | "author": "Johann Wolfgang Von Goethe" 66 | }, 67 | { 68 | "quote": "Do one thing every day that scares you.", 69 | "author": "Eleanor Roosevelt" 70 | }, 71 | { 72 | "quote": "Pain is temporary. Quitting lasts forever.", 73 | "author": "Lance Armstrong" 74 | }, 75 | { 76 | "quote": "Understanding is the first step to acceptance, and only with acceptance can there be recovery.", 77 | "author": "J.K. Rowling" 78 | }, 79 | { 80 | "quote": "Mistakes are the portals of discovery.", 81 | "author": "James Joyce" 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/122.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "Albert Einstein", 5 | "quote": "Few are those who see with their own eyes and feel with their own hearts." 6 | }, 7 | { 8 | "author": "Albert Einstein", 9 | "quote": "Imagination is more important than knowledge. Knowledge is limited. Imagination encircles the world." 10 | }, 11 | { 12 | "author": "Albert Einstein", 13 | "quote": "Great spirits have always encountered violent opposition from mediocre minds." 14 | }, 15 | { 16 | "author": "Albert Einstein", 17 | "quote": "Not everything that can be counted counts, and not everything that counts can be counted." 18 | }, 19 | { 20 | "author": "Albert Einstein", 21 | "quote": "Everybody is a genius. But if you judge a fish by its ability to climb a tree, it will live its whole life believing that it is stupid." 22 | }, 23 | { 24 | "author": "Albert Einstein", 25 | "quote": "Look deep into nature, and then you will understand everything better." 26 | }, 27 | { 28 | "author": "Albert Einstein", 29 | "quote": "Any intelligent fool can make things bigger and more complex… It takes a touch of genius – and a lot of courage to move in the opposite direction." 30 | }, 31 | { 32 | "author": "Albert Einstein", 33 | "quote": "A man should look for what is, and not for what he thinks should be." 34 | }, 35 | { 36 | "author": "Albert Einstein", 37 | "quote": "In the middle of difficulty lies opportunity." 38 | }, 39 | { 40 | "author": "Albert Einstein", 41 | "quote": "A person who never made a mistake never tried anything new." 42 | }, 43 | { 44 | "author": "Albert Einstein", 45 | "quote": "Education is what remains after one has forgotten what one has learned in school." 46 | }, 47 | { 48 | "author": "Albert Einstein", 49 | "quote": "A human being is part of a whole called by us the universe." 50 | }, 51 | { 52 | "author": "Albert Einstein", 53 | "quote": "The important thing is to not stop questioning. Curiosity has its own reason for existing." 54 | }, 55 | { 56 | "author": "Albert Einstein", 57 | "quote": "A question that sometimes drives me hazy: am I or are the others crazy?" 58 | }, 59 | { 60 | "author": "Albert Einstein", 61 | "quote": "Life is like riding a bicycle. To keep your balance you must keep moving." 62 | }, 63 | { 64 | "author": "Albert Einstein", 65 | "quote": "There are only two ways to live your life. One is as though nothing is a miracle. The other is as though everything is a miracle." 66 | }, 67 | { 68 | "author": "Albert Einstein", 69 | "quote": "All that is valuable in human society depends upon the opportunity for development accorded the individual." 70 | }, 71 | { 72 | "author": "Albert Einstein", 73 | "quote": "Once you stop learning, you start dying." 74 | }, 75 | { 76 | "author": "Albert Einstein", 77 | "quote": "Only one who devotes himself to a cause with his whole strength and soul can be a true master. For this reason mastery demands all of a person." 78 | }, 79 | { 80 | "author": "Albert Einstein", 81 | "quote": "He who can no longer pause to wonder and stand rapt in awe, is as good as dead; his eyes are closed." 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/020.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "We ought to walk through the rooms of our lives not looking for flaws, but looking for potential.", 5 | "author": "Ellen Goodman" 6 | }, 7 | { 8 | "quote": " If you are not willing to risk the usual you will have to settle for the ordinary. ", 9 | "author": "Jim Rohn" 10 | }, 11 | { 12 | "quote": "All our dreams can come true if we have the courage to pursue them.", 13 | "author": "Walt Disney" 14 | }, 15 | { 16 | "quote": "Success is walking from failure to failure with no loss of enthusiasm.", 17 | "author": "Winston Churchill" 18 | }, 19 | { 20 | "quote": "Opportunities don’t happen, you create them.", 21 | "author": "Chris Grosser" 22 | }, 23 | { 24 | "quote": "Try not to become a person of success, but rather try to become a person of value.", 25 | "author": "Albert Einstein" 26 | }, 27 | { 28 | "quote": "Great minds discuss ideas; average minds discuss events; small minds discuss people.", 29 | "author": "Eleanor Roosevelt" 30 | }, 31 | { 32 | "quote": " I have not failed. I’ve just found 10,000 ways that won’t work." , 33 | "author": "Thomas A. Edison" 34 | }, 35 | { 36 | "quote": "What seems to us as bitter trials are often blessings in disguise." , 37 | "author": "Oscar Wilde" 38 | }, 39 | { 40 | "quote": "The distance between insanity and genius is measured only by success. " , 41 | "author": "Bruce Feirstein" 42 | }, 43 | { 44 | "quote": "When you stop chasing the wrong things you give the right things a chance to catch you. " , 45 | "author": "Lolly Daskal" 46 | }, 47 | { 48 | "quote": "Don’t be afraid to give up the good to go for the great." , 49 | "author": "John D. Rockefeller" 50 | }, 51 | { 52 | "quote": "In my experience, there is only one motivation, and that is desire. No reasons or principle contain it or stand against it. " , 53 | "author": "Jane Smiley" 54 | }, 55 | { 56 | "quote": "You must expect great things of yourself before you can do them." , 57 | "author": "Michael Jordan" 58 | }, 59 | { 60 | "quote": "People rarely succeed unless they have fun in what they are doing. " , 61 | "author": "Dale Carnegie" 62 | }, 63 | { 64 | "quote": "There is no chance, no destiny, no fate, that can hinder or control the firm resolve of a determined soul. " , 65 | "author": "Ella Wheeler Wilcox" 66 | }, 67 | { 68 | "quote": "Our greatest fear should not be of failure but of succeeding at things in life that don’t really matter. " , 69 | "author": "Francis Chan" 70 | }, 71 | { 72 | "quote":"You’ve got to get up every morning with determination if you’re going to go to bed with satisfaction. ", 73 | "author": "George Lorimer" 74 | }, 75 | { 76 | "quote":"To be successful you must accept all challenges that come your way. You can’t just accept the ones you like.", 77 | "author": "Mike Gafka" 78 | }, 79 | { 80 | "quote":"To accomplish great things, we must not only act, but also dream, not only plan, but also believe.", 81 | "author": "Anatole France" 82 | } 83 | ] 84 | } 85 | 86 | -------------------------------------------------------------------------------- /motivate/data/165.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "It is preoccupation with possession, more than anything else, that prevents men from living freely and nobly.", 5 | "author": "Bertrand Russell" 6 | }, 7 | { 8 | "quote": "To fear love is to fear life.", 9 | "author": "Bertrand Russell" 10 | }, 11 | { 12 | "quote": "Fear is the main source of superstition, and one of the main sources of cruelty. To conquer fear is the beginning of wisdom.", 13 | "author": "Bertrand Russell" 14 | }, 15 | { 16 | "quote": "Three passions, simply but overwhelmingly strong, have governed my life: the longing for love, the search for knowledge, and the unbearable pity for the suffering of mankind.", 17 | "author": "Bertrand Russell" 18 | }, 19 | { 20 | "quote": "Beauty in things exists in the mind which contemplates them.", 21 | "author": "David Hume" 22 | }, 23 | { 24 | "quote": "It is not the man who has too little, but the man who craves more, that is poor.", 25 | "author": "Lucius Annaeus Seneca" 26 | }, 27 | { 28 | "quote": "A good mind possesses a kingdom.", 29 | "author": "Lucius Annaeus Seneca" 30 | }, 31 | { 32 | "quote": "We are what we repeatedly do. Excellence, then, is not an act, but a habit.", 33 | "author": "Aristotle" 34 | }, 35 | { 36 | "quote": "In all things of nature there is something of the marvelous.", 37 | "author": "Aristotle" 38 | }, 39 | { 40 | "quote": "We should behave to our friends as we would wish our friends to behave to us.", 41 | "author": "Aristotle" 42 | }, 43 | { 44 | "quote": "The goal of life is living in agreement with nature.", 45 | "author": "Zeno" 46 | }, 47 | { 48 | "quote": "There is no witness so dreadful, no accuser so terrible as the conscience that dwells in the heart of every man.", 49 | "author": "Polybius" 50 | }, 51 | { 52 | "quote": "I know nothing except the fact of my ignorance.", 53 | "author": "Socrates" 54 | }, 55 | { 56 | "quote": "There is only one good, knowledge, and one evil, ignorance.", 57 | "author": "Socrates" 58 | }, 59 | { 60 | "quote": "Word is a shadow of deed.", 61 | "author": "Democritus" 62 | }, 63 | { 64 | "quote": "Criticism comes easier than craftsmanship.", 65 | "author": "Zeuxis" 66 | }, 67 | { 68 | "quote": "The life which is unexamined is not worth living.", 69 | "author": "Plato" 70 | }, 71 | { 72 | "quote": "False words are not only evil in themselves, but they infect the soul with evil.", 73 | "author": "Plato" 74 | }, 75 | { 76 | "quote": "Time is the most valuable thing a man can spend.", 77 | "author": "Theophrastus" 78 | }, 79 | { 80 | "quote": "Practice is the best of all instructors.", 81 | "author": "Publilius Syrus" 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/086.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "Vladimir Nabokov", 5 | "quote": "The breaking of a wave cannot explain the whole sea." 6 | }, 7 | { 8 | "author": "Sylvia Plath", 9 | "quote": "Go out and do something. It isn’t your room that’s a prison, it’s yourself." 10 | }, 11 | { 12 | "author": "Johann Wolfgang von Goethe", 13 | "quote": "A man sees in the world what he carries in his heart." 14 | }, 15 | { 16 | "author": "Banksy", 17 | "quote": "Nobody knows what you feel inside unless you tell them." 18 | }, 19 | { 20 | "author": "Søren Kierkegaard", 21 | "quote": "Do it or don’t do it — you will regret both." 22 | }, 23 | { 24 | "author": "Juan Gabriel Vásquez", 25 | "quote": "The saddest thing that can happen to a person is to find out their memories are lies." 26 | }, 27 | { 28 | "author": "Shinji Moon", 29 | "quote": "You are beautiful because you let yourself feel, and that is a brave thing indeed." 30 | }, 31 | { 32 | "author": "Lao Tzu", 33 | "quote": "New beginnings are often disguised as painful endings." 34 | }, 35 | { 36 | "author": "Elvis Presley", 37 | "quote": "People think you’re crazy if you talk about things they don’t understand." 38 | }, 39 | { 40 | "author": "Joyce Meyer", 41 | "quote": "You are not free until you have no need to impress anybody." 42 | }, 43 | { 44 | "author": "Haruki Murakami", 45 | "quote": "Whatever it is you’re seeking won’t come in the form you’re expecting." 46 | }, 47 | { 48 | "author": "Oscar Wilde", 49 | "quote": "Don’t be afraid. There are exquisite things in store for you. This is merely the beginning." 50 | }, 51 | { 52 | "author": "Mike McHargue", 53 | "quote": "People grow when they are loved well. If you want to help others heal, love them without an agenda." 54 | }, 55 | { 56 | "author": "Oscar Wilde", 57 | "quote": "The truth is rarely pure and never simple." 58 | }, 59 | { 60 | "author": "Ralph Waldo Emerson", 61 | "quote": "People do not seem to realise that their opinion of the world is also a confession of their character." 62 | }, 63 | { 64 | "author": "Ernest Hemingway", 65 | "quote": "We are all broken, that’s how the light gets in." 66 | }, 67 | { 68 | "author": "Katherine Henson", 69 | "quote": "Having a soft heart in a cruel world is courage, not weakness." 70 | }, 71 | { 72 | "author": "John Steinbeck", 73 | "quote": "It’s so much darker when a light goes out than it would have been if it had never shone." 74 | }, 75 | { 76 | "author": "Paulo Coelho", 77 | "quote": "Don’t allow your wounds to turn you into a person you are not." 78 | }, 79 | { 80 | "author": "Hellen Keller", 81 | "quote": "The best and most beautiful things in the world cannot be seen or even touched - they must be felt with the heart." 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/092.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "Penelope Douglas", 5 | "quote": "Acting like you don’t care is not letting it go" 6 | }, 7 | { 8 | "author": "Mik Everett", 9 | "quote": "If a writer falls in love with you, you can never die." 10 | }, 11 | { 12 | "author": "Nizar Qabbani", 13 | "quote": "Don’t lose a woman that has seen your flaws and still loves you." 14 | }, 15 | { 16 | "author": "Edgar Allan Poe", 17 | "quote": "All suffering originates from craving, from attachment, from desire." 18 | }, 19 | { 20 | "author": "Will Smith", 21 | "quote": "Stop letting people who do so little for you control so much of your mind and emotions." 22 | }, 23 | { 24 | "author": "Paulo Coelho", 25 | "quote": "You don’t have to explain your dreams, they belong to you." 26 | }, 27 | { 28 | "author": "Jason Myers", 29 | "quote": "Sometimes not telling people anything is a good thing." 30 | }, 31 | { 32 | "author": "Vincent van Gogh", 33 | "quote": "The more you love, the more you suffer." 34 | }, 35 | { 36 | "author": "Emily Giffin", 37 | "quote": "It always takes two. For relationships to work, for them to break apart, for them to be fixed." 38 | }, 39 | { 40 | "author": "Angelina Jolie", 41 | "quote": "It’s better to have nobody than someone who is half there, or who doesn’t want to be there." 42 | }, 43 | { 44 | "author": "Chris Brogan", 45 | "quote": "Don’t settle. Don’t finish crappy books. If you don’t like the menu, leave the restaurant. If you’re not on the right path, get off it." 46 | }, 47 | { 48 | "author": "John Green", 49 | "quote": "We all romanticize the people we adore." 50 | }, 51 | { 52 | "author": "Isak Dinesen", 53 | "quote": "The cure for anything is salt water. Sweat, tears or the ocean." 54 | }, 55 | { 56 | "author": "Mandy Hale", 57 | "quote": "Ten years from now, make sure you can say that you chose your life, you didn’t settle for it." 58 | }, 59 | { 60 | "author": "Abraham Hicks", 61 | "quote": "People will love you. People will hate you. And none of it will have anything to do with you." 62 | }, 63 | { 64 | "author": "Tyler Kent White", 65 | "quote": "Never apologize for burning too brightly or collapsing into yourself every night. That is how galaxies are made." 66 | }, 67 | { 68 | "author": "Robert Brault", 69 | "quote": "Eventually soul mates meet, for they have the same hiding place." 70 | }, 71 | { 72 | "author": "Lemony Snicket", 73 | "quote": "Do the scary thing first, and get scared later." 74 | }, 75 | { 76 | "author": "Patrick Stump", 77 | "quote": "When you have a bad day, a really bad day, try and treat the world better than it treated you." 78 | }, 79 | { 80 | "author": "Andrea Gibson", 81 | "quote": "You are not weak just because your heart feels so heavy." 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/166.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "You can't cross the sea merely by standing and staring at the water.", 5 | "author": "Rabindranath Tagore" 6 | }, 7 | { 8 | "quote": "Good, better, best. Never let it rest. 'Til your good is better and your better is best.", 9 | "author": "St. Jerome" 10 | }, 11 | { 12 | "quote": "It does not matter how slowly you go as long as you do not stop.", 13 | "author": "Confucius" 14 | }, 15 | { 16 | "quote": "Infuse your life with action. Don't wait for it to happen. Make it happen. Make your own future. Make your own hope. Make your own love. And whatever your beliefs, honor your creator, not by passively waiting for grace to come down from upon high, but by doing what you can to make grace happen... yourself, right now, right down here on Earth.", 17 | "author": "Bradley Whitford" 18 | }, 19 | { 20 | "quote": "It always seems impossible until it is done.", 21 | "author": "Nelson Mandela" 22 | }, 23 | { 24 | "quote": "Change your life today. Don't gamble on the future, act now, without delay.", 25 | "author": "Simone de Beauvoir" 26 | }, 27 | { 28 | "quote": "Your talent is God's gift to you. What you do with it is your gift back to God.", 29 | "author": "Leo Buscaglia" 30 | }, 31 | { 32 | "quote": "Keep your eyes on the stars, and your feet on the ground.", 33 | "author": "Theodore Roosevelt" 34 | }, 35 | { 36 | "quote": "Problems are not stop signs, they are guidelines.", 37 | "author": "Robert H. Schuller" 38 | }, 39 | { 40 | "quote": "Our greatest weakness lies in giving up. The most certain way to succeed is always to try just one more time.", 41 | "author": "Thomas A. Edison" 42 | }, 43 | { 44 | "quote": "Quality is not an act, it is a habit.", 45 | "author": "Aristotle" 46 | }, 47 | { 48 | "quote": "We may encounter many defeats but we must not be defeated.", 49 | "author": "Maya Angelou" 50 | }, 51 | { 52 | "quote": "Well done is better than well said.", 53 | "author": "Benjamin Franklin" 54 | }, 55 | { 56 | "quote": "If you fell down yesterday, stand up today.", 57 | "author": "H.G. Wells" 58 | }, 59 | { 60 | "quote": "Ever tried. Ever failed. No matter. Try Again. Fail again. Fail better.", 61 | "author": "Samuel Beckett" 62 | }, 63 | { 64 | "quote": "What you get by achieving your goals is not as important as what you become by achieving your goals.", 65 | "author": "Zig Ziglar" 66 | }, 67 | { 68 | "quote": "Every exit is an entry somewhere else.", 69 | "author": "Tom Stoppard" 70 | }, 71 | { 72 | "quote": "I am not afraid...I was born to do this.", 73 | "author": "Joan of Arc" 74 | }, 75 | { 76 | "quote": "A goal is a dream with a deadline.", 77 | "author": "Napoleon Hill" 78 | }, 79 | { 80 | "quote": "To begin, begin.", 81 | "author": "William Wordsworth" 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/133.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "The Goblet of Fire", 5 | "quote": "It matters not what someone is born, but what they grow to be." 6 | }, 7 | { 8 | "author": "The Sorcerer’s Stone", 9 | "quote": "It does not do to dwell on dreams and forget to live." 10 | }, 11 | { 12 | "author": " The Sorcerer’s Stone", 13 | "quote": "Fear of a name increases fear of the thing itself." 14 | }, 15 | { 16 | "author": "The Sorcerer’s Stone", 17 | "quote": "It takes a great deal of bravery to stand up to our enemies, but just as much to stand up to our friends." 18 | }, 19 | { 20 | "author": "The Goblet of Fire", 21 | "quote": "We are only as strong as we are united, as weak as we are divided." 22 | }, 23 | { 24 | "author": "The Order of the Phoenix", 25 | "quote": "We cannot choose our fate, but we can choose others. Be careful in knowing that." 26 | }, 27 | { 28 | "author": "The Goblet of Fire", 29 | "quote": "Understanding is the first step to acceptance, and only with acceptance can there be recovery." 30 | }, 31 | { 32 | "author": "The Half-Blood Prince", 33 | "quote": "It is the unknown we fear when we look upon death and darkness, nothing more" 34 | }, 35 | { 36 | "author": "The Deathly Hallows", 37 | "quote": "Words are, in my not so humble opinion, our most inexhaustible source of magic, capable of both influencing injury, and remedying it" 38 | }, 39 | { 40 | "author": "The Prisoner of Azkaban", 41 | "quote": "Happiness can be found, even in the darkest of times, if only one remembers to turn on the light" 42 | }, 43 | { 44 | "author": "Luna Lovegood, The Order of the Phoenix", 45 | "quote": "Things we lose have a way of coming back to us in the end, if not always in the way we expect." 46 | }, 47 | { 48 | "author": "Kingsley Shacklebolt, The Deathly Hallows", 49 | "quote": "We are all human, aren’t we? Every human life is worth the same, and worth saving." 50 | }, 51 | { 52 | "author": "The Order of the Phoenix", 53 | "quote": "The world isn’t split into good people and Death Eaters. We’ve all got both light and dark inside us. What matters is the part we choose to act on. That’s who we really are" 54 | }, 55 | { 56 | "author": "Fred", 57 | "quote": "Mischief Managed." 58 | }, 59 | { 60 | "author": "The Goblet of Fire", 61 | "quote": "Excuse me, I don't like people just because they're handsome!" 62 | }, 63 | { 64 | "author": "The Sorcerer’s Stone", 65 | "quote": "Ah, music,” he said wiping his eyes. “A magic beyond all we do here." 66 | }, 67 | { 68 | "author": "The Deathly Hallows", 69 | "quote": "Of course it is happening inside your head, Harry, but why on earth should that mean it is not real?" 70 | }, 71 | { 72 | "author": "The Goblet of Fire", 73 | "quote": "Numbing the pain for a while will make it worse when you finally feel it." 74 | }, 75 | { 76 | "author": "The Half-Blood Prince", 77 | "quote": "It is important,” Dumbledore said, “to fight, and fight again, and keep fighting, for only then could evil be kept at bay, though never quite eradicated." 78 | }, 79 | { 80 | "author": "The Chamber of Secrets", 81 | "quote": "It is our choices, Harry, that show what we truly are, far more than our abilities." 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/167.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "If you’re going to be able to look back on something and laugh about it, you might as well laugh about it now.", 5 | "author": "Marie Osmond" 6 | }, 7 | { 8 | "quote": "Be who you are and say what you feel, because those who mind don't matter and those who matter don't mind.", 9 | "author": "Dr. Seuss" 10 | }, 11 | { 12 | "quote": "Sometimes you gotta create what you want to be part of.", 13 | "author": "Geri Weitzman" 14 | }, 15 | { 16 | "quote": "Failure will never take me if my determination to succeed is strong enough.", 17 | "author": "Og Mandino" 18 | }, 19 | { 20 | "quote": "Accept the challenges so that you can feel the exhilaration of victory.", 21 | "author": "George S. Patton" 22 | }, 23 | { 24 | "quote": "Stay committed to your decisions, but stay flexible in your approach.", 25 | "author": "Tony Robbins" 26 | }, 27 | { 28 | "quote": "The most common way people give up their power is by thinking they don't have any.", 29 | "author": "Alice Walker" 30 | }, 31 | { 32 | "quote": "Talent is cheaper than table salt. What separates the talented individual from the successful one is a lot of hard work.", 33 | "author": "Stephen King" 34 | }, 35 | { 36 | "quote": "Effort only fully releases its reward after a person refuses to quit.", 37 | "author": "Napoleon Hill" 38 | }, 39 | { 40 | "quote": "You can't expect to hit the jackpot if you don't put a few nickels in the machine.", 41 | "author": "Flip Wilson" 42 | }, 43 | { 44 | "quote": "It is what we know already that often prevents us from learning.", 45 | "author": "Claude Bernard" 46 | }, 47 | { 48 | "quote": "The smallest deed is better than the greatest intention.", 49 | "author": "John Burroughs" 50 | }, 51 | { 52 | "quote": "The only thing that overcomes hard luck is hard work.", 53 | "author": "Harry Golden" 54 | }, 55 | { 56 | "quote": "The past cannot be changed. The future is yet in your power.", 57 | "author": "Mary Pickford" 58 | }, 59 | { 60 | "quote": "Don't watch the clock; do what it does. Keep going.", 61 | "author": "Sam Levenson" 62 | }, 63 | { 64 | "quote": "Courage is what it takes to stand up and speak; courage is also what it takes to sit down and listen.", 65 | "author": "Winston Churchill" 66 | }, 67 | { 68 | "quote": "I've found that luck is quite predictable. If you want more luck, take more chances. Be more active. Show up more often.", 69 | "author": "Brian Tracy" 70 | }, 71 | { 72 | "quote": "I have not failed. I've just found 10,000 ways that won't work.", 73 | "author": "Thomas A. Edison" 74 | }, 75 | { 76 | "quote": "You cannot change your destination overnight, but you can change your direction overnight.", 77 | "author": "Jim Rohn" 78 | }, 79 | { 80 | "quote": "Man cannot discover new oceans unless he has the courage to lose sight of the shore.", 81 | "author": "Andre Gide" 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/018.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "He understood well enough how a man with a choice between pride and responsibility will almost always choose pride—if responsibility robs him of his manhood.", 5 | "author": "Stephen King" 6 | }, 7 | { 8 | "quote": "We do not admire the man of timid peace. We admire the man who embodies victorious effort; the man who never wrongs his neighbor, who is prompt to help a friend, but who has those virile qualities necessary to win in the stern strife of actual life.", 9 | "author": "Theodore Roosevelt" 10 | }, 11 | { 12 | "quote": "It is not what he has, or even what he does which expresses the worth of a man, but what he is.", 13 | "author": "Henri-Frédéric Amiel" 14 | }, 15 | { 16 | "quote": "The way of a superior man is three-fold: virtuous, he is free from anxieties; wise, he is free from perplexities; bold, he is free from fear.", 17 | "author": "Confucius" 18 | }, 19 | { 20 | "quote": "A man should be able to hear, and to bear, the worst that could be said of him.", 21 | "author": "Saul Bellow" 22 | }, 23 | { 24 | "quote": "Nobody can give you freedom. Nobody can give you equality or justice or anything. If you’re a man, you take it", 25 | "author": "Malcolm X" 26 | }, 27 | { 28 | "quote": "To be a man requires that you accept everything life has to give you, beginning with your name", 29 | "author": "Burl Ives" 30 | }, 31 | { 32 | "quote": "Gardens are not made by singing 'Oh, how beautiful,' and sitting in the shade.", 33 | "author": "Rudyard Kipling" 34 | }, 35 | { 36 | "quote": "Man needs his difficulties because they are necessary to enjoy success.", 37 | "author": "A. P. J. Abdul Kalam" 38 | }, 39 | { 40 | "quote": "Fortune always favors the brave, and never helps a man who does not help himself.", 41 | "author": "P.T. Barnum" 42 | }, 43 | { 44 | "quote": "A hero is no braver than an ordinary man, but he is brave five minutes longer.", 45 | "author": "Ralph Waldo Emerson" 46 | }, 47 | { 48 | "quote": "I'd rather regret the things I've done than regret the things I haven't done.", 49 | "author": "Lucille Ball" 50 | }, 51 | { 52 | "quote": "We cannot direct the wind, but we can adjust the sails.", 53 | "author": "Dolly Parton" 54 | }, 55 | { 56 | "quote": "My hope still is to leave the world a bit better than when I got here.", 57 | "author": "Jim Henson" 58 | }, 59 | { 60 | "quote": "When I started counting my blessings, my whole life turned around.", 61 | "author": "Willie Nelson" 62 | }, 63 | { 64 | "quote": "We are what we believe we are.", 65 | "author": "C.S. Lewis" 66 | }, 67 | { 68 | "quote": "Courage is what it takes to stand up and speak; courage is also what it takes to sit down and listen.", 69 | "author": "Winston Churchill" 70 | }, 71 | { 72 | "quote": "A gem cannot be polished without friction, nor a man perfected without trials.", 73 | "author": "Lucius Annaeus Seneca" 74 | }, 75 | { 76 | "quote": "Success is not final, failure is not fatal: it is the courage to continue that counts.", 77 | "author": "Winston Churchill" 78 | }, 79 | { 80 | "quote": "There is nothing so stable as change.", 81 | "author": "Bob Dylan" 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/135.json: -------------------------------------------------------------------------------- 1 | { 2 | "data":[ 3 | { 4 | "author":"Eric Thomas", 5 | "quote":"When you want to succeed as bad as you want to breathe, then you’ll be successful." 6 | }, 7 | { 8 | "author":"Tim Notke", 9 | "quote":"Hard work beats talent when talent doesn’t work hard." 10 | }, 11 | { 12 | "author":"Vince Lombardi", 13 | "quote":"A man can be as great as he wants to be. If you believe in yourself and have the courage, the determination, the dedication, the competitive drive and if you are willing to sacrifice the little things in life and pay the price for the things that are worthwhile, it can be done." 14 | }, 15 | { 16 | "author":"Spryte Loriano", 17 | "quote":"Every great story on the planet happened when someone decided not to give up, but kept going no matter what." 18 | }, 19 | { 20 | "author":"Og Mandino", 21 | "quote":"Failure will never overtake me if my determination to succeed is strong enough." 22 | }, 23 | { 24 | "author":"Conrad Hilton", 25 | "quote":"Success… seems to be connected with action. Successful people keep moving. They make mistakes, but they don’t quit." 26 | }, 27 | { 28 | "author":"W. Clement Stone", 29 | "quote":"Aim for the moon. If you miss, you may hit a star." 30 | }, 31 | { 32 | "author":"Pablo Picasso", 33 | "quote":"Action is the foundational key to all success." 34 | }, 35 | { 36 | "author":"Jim Rohn", 37 | "quote":"Successful people do what unsuccessful people are not willing to do. Don’t wish it were easier, wish you were better." 38 | }, 39 | { 40 | "author":"Ayn Rand", 41 | "quote":"The question isn’t who is going to let me; it’s who is going to stop me." 42 | }, 43 | { 44 | "author":"Confucius", 45 | "quote":"It does not matter how slowly you go, so long as you do not stop." 46 | }, 47 | { 48 | "author":"Washington Irving", 49 | "quote":"Little minds are tamed and subdued by misfortune; but great minds rise above it." 50 | }, 51 | { 52 | "author":"Thomas Jefferson", 53 | "quote":"I find that the harder I work, the more luck I seem to have." 54 | }, 55 | { 56 | "author":"Mark Twain", 57 | "quote":"Twenty years from now you will be more disappointed by the things that you didn’t do than by the ones you did do, so throw off the bowlines, sail away from safe harbor, catch the trade winds in your sails. Explore, Dream, Discover." 58 | }, 59 | { 60 | "author":"Zig Ziglar", 61 | "quote":"You don’t have to be great to start, but you have to start to be great." 62 | }, 63 | { 64 | "author":"Audrey Hepburn", 65 | "quote":"Nothing is impossible, the word itself says “I’m possible”!" 66 | }, 67 | { 68 | "author":"Neale Donald Walsh", 69 | "quote":"Life begins at the end of your comfort zone." 70 | }, 71 | { 72 | "author":"John Wooden", 73 | "quote":"Things work out best for those who make the best of how things work out." 74 | }, 75 | { 76 | "author":"Dale Carnegie", 77 | "quote":"Most of the important things in the world have been accomplished by people who have kept on trying when there seemed to be no help at all." 78 | }, 79 | { 80 | "author":"Alfred A. Montapert", 81 | "quote":"Expect problems and eat them for breakfast." 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/169.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "author": "The Jackal (Far Cry 2)", 5 | "quote": "You can't break a man the way you do a dog or a horse. The harder you beat a man, the taller he stands." 6 | }, 7 | { 8 | "author": "G Man (Half-Life 2)", 9 | "quote": "The right man in the wrong place can make all the difference in the world." 10 | }, 11 | { 12 | "author": "Ada Wong (Resident Evil 6)", 13 | "quote": "The more things change, the more they stay the same." 14 | }, 15 | { 16 | "author": "Sheik (The Legend of Zelda: Ocarina of Time)", 17 | "quote": "Time passes, people move. Like a river's flow, it never ends. A childish mind will turn to noble ambition" 18 | }, 19 | { 20 | "author": "Ezio (Assasin's Creed II)", 21 | "quote": "Don't ever stop. Always keep going, no matter what happens and is taken from you. Even when life is so unfair, don't give up." 22 | }, 23 | { 24 | "author": "Samus Aran (Metroid: Other M)", 25 | "quote": "My past is not a memory. It's a force at my back. It pushes and steers. I may not always like where it leads me, but like any story, the past needs resolution. What's past is prologue." 26 | }, 27 | { 28 | "author": "Pandora (God of War III)", 29 | "quote": "Hope is what makes us strong. It is why we are here. It's what we fight with when all else is lost." 30 | }, 31 | { 32 | "author": "Waka (Okami)", 33 | "quote": "A journey of a thousand miles begins with a single step. So just take it step by step." 34 | }, 35 | { 36 | "author": "Ryu (Street Fighter Alpha 3)", 37 | "quote": "True victory is to give all of yourself, without regret." 38 | }, 39 | { 40 | "author": "Edmund Burke", 41 | "quote": "You must always remember that the only thing necessary for evil to triumph is for good men to do nothing." 42 | }, 43 | { 44 | "author": "Peppy Hare (Lylat Wars/Star Fox 64)", 45 | "quote": "Never give up. Trust your instincts." 46 | }, 47 | { 48 | "author": "Victor Sullivan (Uncharted 3: Drake's Deception)", 49 | "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." 50 | }, 51 | { 52 | "author": "Ignitus (The Legend of Spyro: Dawn of the Dragon)", 53 | "quote": "Even in the darkest of times, there is always hope. But sometimes fear clouds our vision. Sometimes our strength gives out. And yet sometimes, when all seems lost, a light shines through the darkness, and we are reminded that even the smallest amount of courage can turn the tides of war." 54 | }, 55 | { 56 | "author": "Gouken (Super Street Fighter IV)", 57 | "quote": "We are all our own worst enemy. But also our best teacher." 58 | }, 59 | { 60 | "author": "Sans (Undertale)", 61 | "quote": "Take care of yourself, kid. Cause someone really cares about you." 62 | }, 63 | { 64 | "author": "Chief (Animal Crossing)", 65 | "quote": "Don't wish it were easier, wish you were better." 66 | }, 67 | { 68 | "author": "Braum (League Of Legends)", 69 | "quote": "Today we fight each other. Tomorrow, we may fight together." 70 | }, 71 | { 72 | "author": "Illidan Stormrage (World of Warcraft)", 73 | "quote": "You are prepared!" 74 | }, 75 | { 76 | "author": "Waka (Okami)", 77 | "quote": "Life is all about resolve. Outcome is secondary." 78 | }, 79 | { 80 | "author": "Andrew Ryan (BioShock)", 81 | "quote": "A man chooses; a slave obeys." 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/152.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "Build confidence and momentum with each good decision you make from here on out and choose to be inspired.", 5 | "author": "Joe Rogan" 6 | }, 7 | { 8 | "quote": "We define ourselves far too often by our past failures. That's not you. You are this person right now. You're the person who has learned from those failures. Build confidence and momentum with each good decision you make from here on out and choose to be inspired.", 9 | "author": "Joe Rogan" 10 | }, 11 | { 12 | "quote": "Someone else's success does not equal a failure for you.", 13 | "author": "Joe Rogan" 14 | }, 15 | { 16 | "quote": "The universe rewards calculated risk and passion.", 17 | "author": "Joe Rogan" 18 | }, 19 | { 20 | "quote": "Work for that feeling that you have accomplished something... Don't waste your time on this earth without making a mark.", 21 | "author": "Joe Rogan" 22 | }, 23 | { 24 | "quote": "When someone comes along and expresses him or herself as freely as they think, people flock to it. They enjoy it.", 25 | "author": "Joe Rogan" 26 | }, 27 | { 28 | "quote": "Once you understand what excellence is all about... you see how excellence manifests itself in any discipline.", 29 | "author": "Joe Rogan" 30 | }, 31 | { 32 | "quote": "That's my only goal. Surround myself with funny people, and make sure everyone has a good time and works hard.", 33 | "author": "Joe Rogan" 34 | }, 35 | { 36 | "quote": "If you are the greatest, why would you go around talking about it?", 37 | "author": "Joe Rogan" 38 | }, 39 | { 40 | "quote": "There's a direct correlation between positive energy and positive results in the physical form.", 41 | "author": "Joe Rogan" 42 | }, 43 | { 44 | "quote": "If you ever start taking things too seriously, just remember that we are talking monkeys on an organic spaceship flying through the universe.", 45 | "author": "Joe Rogan" 46 | }, 47 | { 48 | "quote": "Life is strange. You keep moving and keep moving. Before you know it, you look back and think, 'What was that?'.", 49 | "author": "Joe Rogan" 50 | }, 51 | { 52 | "quote": "I realized a long time ago that instead of being jealous you can be inspired and appreciative. It carries more energy to you. That can be an awesome and motivating force that can improve your life if you choose to be inspired and not jealous. One has no benefit whatsoever, the other is an incredible resource for creating momentum and improvement.", 53 | "author": "Joe Rogan" 54 | }, 55 | { 56 | "quote": "Be cool to people. Be nice to as many people as you can. Smile to as many people as you can, and have them smile back at you.", 57 | "author": "Joe Rogan" 58 | }, 59 | { 60 | "quote": "To really appreciate life you got to know you're going to die.", 61 | "author": "Joe Rogan" 62 | }, 63 | { 64 | "quote": "Live your life like you're the hero in your own movie.", 65 | "author": "Joe Rogan" 66 | }, 67 | { 68 | "quote": "One of the most fascinating lessons I've absorbed about life is that the struggle is good.", 69 | "author": "Joe Rogan" 70 | }, 71 | { 72 | "quote": "The time you spend hating on someone robs you of your own time. You are literally hating on yourself and you don't even realize it.", 73 | "author": "Joe Rogan" 74 | }, 75 | { 76 | "quote": "There's a never-ending ocean of techniques out there.", 77 | "author": "Joe Rogan" 78 | }, 79 | { 80 | "quote": "Haters are all failures. It's 100% across the board. No one who is truly brilliant at anything is a hater.", 81 | "author": "Joe Rogan" 82 | } 83 | ] 84 | } 85 | -------------------------------------------------------------------------------- /motivate/data/139.json: -------------------------------------------------------------------------------- 1 | { 2 | "data": [ 3 | { 4 | "quote": "Nothing is impossible, the word itself says Im possible!", 5 | "author": "Audrey Hepburn" 6 | }, 7 | { 8 | "quote": "I’ve learned that people will forget what you said, people will forget what you did, but people will never forget how you made them feel. ", 9 | "author": "Maya Angelou" 10 | }, 11 | { 12 | "quote": "Whether you think you can or you think you can’t, you’re right.", 13 | "author": "Henry Ford" 14 | }, 15 | { 16 | "quote": "Perfection is not attainable, but if we chase perfection we can catch excellence.", 17 | "author": "Vince Lombardi" 18 | }, 19 | { 20 | "quote": "Life is 10% what happens to me and 90% of how I react to it.", 21 | "author": "Charles Swindoll" 22 | }, 23 | { 24 | "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.", 25 | "author": "Oprah Winfrey" 26 | }, 27 | { 28 | "quote": "Remember no one can make you feel inferior without your consent.", 29 | "author": "Eleanor Roosevelt" 30 | }, 31 | { 32 | "quote": "I can’t change the direction of the wind, but I can adjust my sails to always reach my destination.", 33 | "author": "Jimmy Dean" 34 | }, 35 | { 36 | "quote": "Believe you can and you’re halfway there.", 37 | "author": "Theodore Roosevelt" 38 | }, 39 | { 40 | "quote": "BE STRONG\nYou never know who you are inspiring", 41 | "author": "Unknown" 42 | }, 43 | { 44 | "quote": "To handle yourself, use your head; to handle others, use your heart.", 45 | "author": "Eleanor Roosevelt" 46 | }, 47 | { 48 | "quote": "Too many of us are not living our dreams because we are living our fears.", 49 | "author": "Les Brown" 50 | }, 51 | { 52 | "quote": "Do or do not. There is no try. ", 53 | "author": "Yoda" 54 | }, 55 | { 56 | "quote": "Whatever the mind of man can conceive and believe, it can achieve.", 57 | "author": "Napoleon Hill" 58 | }, 59 | { 60 | "quote": "Twenty years from now you will be more disappointed by the things that you didn’t do than by the ones you did do, so throw off the bowlines, sail away from safe harbor, catch the trade winds in your sails. Explore, Dream, Discover.", 61 | "author": "Mark Twain" 62 | }, 63 | { 64 | "quote": "’ve missed more than 9000 shots in my career. I’ve lost almost 300 games. 26 times I’ve been trusted to take the game winning shot and missed. I’ve failed over and over and over again in my life. And that is why I succeed.", 65 | "author": "Michael Jordan" 66 | }, 67 | { 68 | "quote": "Strive not to be a success, but rather to be of value.", 69 | "author": "Albert Einstein" 70 | }, 71 | { 72 | "quote": "I am not a product of my circumstances. I am a product of my decisions.", 73 | "author": "Stephen Covey" 74 | }, 75 | { 76 | "quote": "When everything seems to be going against you, remember that the airplane takes off against the wind, not with it.", 77 | "author": "Henry Ford" 78 | }, 79 | { 80 | "quote": "The most common way people give up their power is by thinking they don’t have any.", 81 | "author": "Alice Walker" 82 | }, 83 | { 84 | "quote": "The most difficult thing is the decision to act, the rest is merely tenacity.", 85 | "author": "Amelia Earhart" 86 | }, 87 | { 88 | "quote": "It is during our darkest moments that we must focus to see the light.", 89 | "author": "Aristotle Onassis" 90 | }, 91 | { 92 | "quote": "Don’t judge each day by the harvest you reap but by the seeds that you plant.", 93 | "author": "Robert Louis Stevenson" 94 | } 95 | ] 96 | } 97 | --------------------------------------------------------------------------------