From 1fc7e30fd5a8d77de09b3516076d729d227c4a25 Mon Sep 17 00:00:00 2001 From: Alonso Melgar Lopez Date: Mon, 1 Aug 2022 02:08:01 -0500 Subject: [PATCH 01/14] =?UTF-8?q?=E2=9C=A8=20Add=20command=20to=20choose?= =?UTF-8?q?=20the=20language=20of=20quotes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pls_cli/please.py | 38 +++++++++++++++++++++++++++++++++++++- 1 file changed, 37 insertions(+), 1 deletion(-) diff --git a/pls_cli/please.py b/pls_cli/please.py index 5a83464..208bf92 100644 --- a/pls_cli/please.py +++ b/pls_cli/please.py @@ -130,6 +130,20 @@ def quotes(show: bool = True) -> None: style=insert_or_delete_text_style, ) +@app.command('language', rich_help_panel='Utils and Configs') +def language(lang: str) -> None: + """Choose language 🛩️""" + settings = Settings().get_settings() + settings['language'] = lang + Settings().write_settings(settings) + center_print( + Rule( + 'Thanks for letting me know that!', + style=insert_or_delete_line_style, + ), + style=insert_or_delete_text_style, + ) + @app.command('tasks', short_help='Show all Tasks :open_book:') @app.command(short_help='[s]Show all Tasks :open_book:[/]', deprecated=True) @@ -448,6 +462,10 @@ def setup() -> None: typer.style('Do you want show quotes? (Y/n)', fg=typer.colors.CYAN) ) + show_language = typer.prompt( + typer.style('Choose the language of quotes (en, es)', fg=typer.colors.CYAN) + ).lower() + code_markdown = Markdown( """ pls callme @@ -481,6 +499,18 @@ def setup() -> None: ) console.print(code_markdown) + code_markdown = Markdown( + """ + pls language + """ + ) + + center_print( + 'If you want to change the language of quotes, please use:', + style='red', + ) + console.print(code_markdown) + center_print( 'To apply the changes restart the terminal or use this command:', style='red', @@ -503,6 +533,11 @@ def setup() -> None: else: settings['show_quotes'] = True + if show_language in ('en', 'es'): + settings['language'] = show_language + else: + settings['language'] = 'en' + settings['tasks'] = [] Settings().write_settings(settings) @@ -522,11 +557,12 @@ def show(ctx: typer.Context) -> None: if Settings().exists_settings(): date_now = datetime.datetime.now() user_name = Settings().get_name() + language = Settings().get_language() header_greetings = f'[{header_greetings_style}] Hello {user_name}! It\'s {date_now.strftime("%d %b | %I:%M %p")}[/]' center_print( Rule(header_greetings, style=header_greetings_style) ) - quote = get_rand_quote() + quote = get_rand_quote(lang=language) if Settings().show_quotes(): center_print( f'[{quote_style}]"{quote["content"]}"[/]', wrap=True From d96ad39509a55dd89c37ae2774b60f2198890830 Mon Sep 17 00:00:00 2001 From: Alonso Melgar Lopez Date: Mon, 1 Aug 2022 02:21:07 -0500 Subject: [PATCH 02/14] =?UTF-8?q?=E2=9C=A8=20Add=20function=20to=20get=20a?= =?UTF-8?q?ctual=20lenguage?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pls_cli/utils/settings.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pls_cli/utils/settings.py b/pls_cli/utils/settings.py index 8118505..d4b210b 100644 --- a/pls_cli/utils/settings.py +++ b/pls_cli/utils/settings.py @@ -56,6 +56,9 @@ def show_tasks_progress(self) -> bool: def show_quotes(self) -> bool: return self.get_settings().get('show_quotes', True) + def get_language(self) -> str: + return self.get_settings().get('language', '') + def all_tasks_done(self) -> bool: return all(task.get('done', '') for task in self.get_tasks()) From 160440b5002ac37d12d64365e897d4f81c97ad01 Mon Sep 17 00:00:00 2001 From: Alonso Melgar Lopez Date: Mon, 1 Aug 2022 02:23:53 -0500 Subject: [PATCH 03/14] =?UTF-8?q?=E2=9C=85=20Update=20test=20whit=20new=20?= =?UTF-8?q?command?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_pls_cli.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/test_pls_cli.py b/tests/test_pls_cli.py index 8f44b70..1744d66 100644 --- a/tests/test_pls_cli.py +++ b/tests/test_pls_cli.py @@ -52,6 +52,10 @@ def test_first_usage(mock_write_settings, mock_exists_settings): 'If you need to disable or enable quotes later, please use:' in result.stdout ) + assert ( + 'If you want to change the language, please use:' + in result.stdout + ) @freeze_time('2022-01-14 03:21:34') From aba6e1b35e7801664d8960eb6f39c15b242643be Mon Sep 17 00:00:00 2001 From: Alonso Melgar Lopez Date: Mon, 1 Aug 2022 02:30:08 -0500 Subject: [PATCH 04/14] =?UTF-8?q?=E2=9C=85=20Update=20parameter=20in=20fun?= =?UTF-8?q?ction?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pls_cli/utils/quotes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pls_cli/utils/quotes.py b/pls_cli/utils/quotes.py index bf9b873..0ff0ef3 100644 --- a/pls_cli/utils/quotes.py +++ b/pls_cli/utils/quotes.py @@ -3,12 +3,12 @@ import random -def get_rand_quote(): +def get_rand_quote(lang: str): __location__ = os.path.realpath( os.path.join(os.getcwd(), os.path.dirname(__file__)) ) with open( - os.path.join(__location__, 'quotes.json'), 'r', encoding='utf-8' + os.path.join(__location__, f'{lang}/quotes.json'), 'r', encoding='utf-8' ) as quotes_file: list_of_quotes = json.load(quotes_file) return random.choice(list_of_quotes) From f176cc743181bd686f9d001c49e64da31d16a8cf Mon Sep 17 00:00:00 2001 From: Alonso Melgar Lopez Date: Mon, 1 Aug 2022 02:32:15 -0500 Subject: [PATCH 05/14] =?UTF-8?q?=E2=9C=85=20Update=20dir=20quotes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pls_cli/utils/{ => en}/quotes.json | 2049 +++++++--- pls_cli/utils/es/quotes.json | 5549 ++++++++++++++++++++++++++++ 2 files changed, 7097 insertions(+), 501 deletions(-) rename pls_cli/utils/{ => en}/quotes.json (85%) create mode 100644 pls_cli/utils/es/quotes.json diff --git a/pls_cli/utils/quotes.json b/pls_cli/utils/en/quotes.json similarity index 85% rename from pls_cli/utils/quotes.json rename to pls_cli/utils/en/quotes.json index 5b2e556..5a6cfeb 100644 --- a/pls_cli/utils/quotes.json +++ b/pls_cli/utils/en/quotes.json @@ -3,7 +3,9 @@ "_id": "juG0aJTnYxmf", "content": "The Superior Man is aware of Righteousness, the inferior man is aware of advantage.", "author": "Confucius", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ropvZKOXYhLr", "authorSlug": "confucius", "length": 83 @@ -12,7 +14,9 @@ "_id": "FMZiiLHfCOc", "content": "America's freedom of religion, and freedom from religion, offers every wisdom tradition an opportunity to address our soul-deep needs: Christianity, Judaism, Islam, Buddhism, Hinduism, secular humanism, agnosticism and atheism among others.", "author": "Parker Palmer", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "XPDojD6THK", "authorSlug": "parker-palmer", "length": 240 @@ -21,7 +25,9 @@ "_id": "CXJ3rBlnfFa2", "content": "Myths which are believed in tend to become true.", "author": "George Orwell", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "YyZuhLs2-ki6", "authorSlug": "george-orwell", "length": 48 @@ -30,7 +36,9 @@ "_id": "ihnLNFx2ZolZ", "content": "In all chaos there is a cosmos, in all disorder a secret order.", "author": "Carl Jung", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "-LYBJJujV7RL", "authorSlug": "carl-jung", "length": 63 @@ -39,7 +47,9 @@ "_id": "HFT6qcdMVVt", "content": "Be courteous to all, but intimate with few, and let those few be well tried before you give them your confidence.", "author": "George Washington", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "e2dM0CnWTjCD", "authorSlug": "george-washington", "length": 113 @@ -48,7 +58,9 @@ "_id": "r6gpkIboJCzH", "content": "If you break your neck, if you have nothing to eat, if your house is on fire, then you got a problem. Everything else is inconvenience.", "author": "Robert Fulghum", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "OMH4P98yJ7YG", "authorSlug": "robert-fulghum", "length": 135 @@ -57,7 +69,9 @@ "_id": "1BXjOAdiKUXW", "content": "The past has no power to stop you from being present now. Only your grievance about the past can do that.", "author": "Eckhart Tolle", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "I6wUbDqsmByX", "authorSlug": "eckhart-tolle", "length": 105 @@ -66,7 +80,9 @@ "_id": "Z5HhvrGNn3_Y", "content": "There is nothing happens to any person but what was in his power to go through with.", "author": "Marcus Aurelius", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "zW_A5fM6XU-v", "authorSlug": "marcus-aurelius", "length": 84 @@ -75,7 +91,9 @@ "_id": "WDGgxBqNWco9", "content": "The smallest act of kindness is worth more than the grandest intention.", "author": "Oscar Wilde", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "yw5O7wULaKfx", "authorSlug": "oscar-wilde", "length": 71 @@ -84,7 +102,9 @@ "_id": "2hNPcjVsMTb", "content": "Every problem has a gift for you in its hands.", "author": "Richard Bach", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "t9lNqDH0TmYo", "authorSlug": "richard-bach", "length": 46 @@ -93,7 +113,9 @@ "_id": "o8Xc7pO8Y1aD", "content": "The greatest minds are capable of the greatest vices as well as of the greatest virtues.", "author": "René Descartes", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "7oQmRTe0VZhD", "authorSlug": "rene-descartes", "length": 88 @@ -102,7 +124,9 @@ "_id": "T3WzgRWp0RNY", "content": "The world makes way for the man who knows where he is going.", "author": "Ralph Waldo Emerson", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "xEVEeQ7m4KQT", "authorSlug": "ralph-waldo-emerson", "length": 60 @@ -111,7 +135,9 @@ "_id": "J2QOuZPIiG", "content": "You are a product of your environment. So choose the environment that will best develop you toward your objective. Analyze your life in terms of its environment. Are the things around you helping you toward success - or are they holding you back?", "author": "W. Clement Stone", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "esj6cyXo7w3_", "authorSlug": "w-clement-stone", "length": 246 @@ -120,7 +146,9 @@ "_id": "ALcsEfDR7FL", "content": "The cautious seldom err.", "author": "Confucius", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ropvZKOXYhLr", "authorSlug": "confucius", "length": 24 @@ -129,7 +157,9 @@ "_id": "q3SfzGZd2iGb", "content": "The most complicated achievements of thought are possible without the assistance of consciousness.", "author": "Sigmund Freud", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "S2-JbY3NzItd", "authorSlug": "sigmund-freud", "length": 98 @@ -138,7 +168,9 @@ "_id": "yr4loYMOP15w", "content": "As we express our gratitude, we must never forget that the highest appreciation is not to utter words, but to live by them.", "author": "John F. Kennedy", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "hVmL2YCoGCRZ", "authorSlug": "john-f-kennedy", "length": 123 @@ -147,7 +179,9 @@ "_id": "SjSXV2RqMnq3", "content": "The greatest way to live with honor in this world is to be what we pretend to be.", "author": "Socrates", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "C9DlPOiO6CUk", "authorSlug": "socrates", "length": 81 @@ -156,7 +190,9 @@ "_id": "O_jlFdjUtHPT", "content": "Every person, all the events of your life are there because you have drawn them there. What you choose to do with them is up to you.", "author": "Richard Bach", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "t9lNqDH0TmYo", "authorSlug": "richard-bach", "length": 132 @@ -165,7 +201,9 @@ "_id": "tE2DJstE_-", "content": "Wisdom begins at the end.", "author": "Daniel Webster", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "6MQyJsAQJ0", "authorSlug": "daniel-webster", "length": 25 @@ -174,7 +212,9 @@ "_id": "6Frokv7EPoui", "content": "Ignorant men don't know what good they hold in their hands until they've flung it away.", "author": "Sophocles", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "bBwlN7LI2Jtu", "authorSlug": "sophocles", "length": 87 @@ -183,7 +223,9 @@ "_id": "LlHX1-JaSX4v", "content": "However many holy words you read, however many you speak, what good will they do you if you do not act on upon them?", "author": "Buddha", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "sUNjshHENA05", "authorSlug": "buddha", "length": 116 @@ -192,7 +234,9 @@ "_id": "dZewn83VJ8", "content": "Science gives us knowledge, but only philosophy can give us wisdom.", "author": "Will Durant", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "ePSTACfg6LJF", "authorSlug": "will-durant", "length": 67 @@ -201,7 +245,10 @@ "_id": "HQNnn2x2Vc", "content": "A passion for politics stems usually from an insatiable need, either for power, or for friendship and adulation, or a combination of both.", "author": "Fawn M. Brodie", - "tags": ["friendship", "politics"], + "tags": [ + "friendship", + "politics" + ], "authorId": "Miy-SXplY_", "authorSlug": "fawn-m-brodie", "length": 138 @@ -210,7 +257,9 @@ "_id": "yE-5JJkxPMwS", "content": "Be not angry that you cannot make others as you wish them to be, since you cannot make yourself as you wish to be.", "author": "Thomas à Kempis", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "dlhcmYIGySaN", "authorSlug": "thomas-a-kempis", "length": 114 @@ -219,7 +268,9 @@ "_id": "K_JAFGFr7CQ", "content": "No one can make you feel inferior without your consent.", "author": "Eleanor Roosevelt", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "1X7NWb1oyd21", "authorSlug": "eleanor-roosevelt", "length": 55 @@ -228,7 +279,9 @@ "_id": "CFy490n4lo8g", "content": "Appreciation can make a day, even change a life. Your willingness to put it into words is all that is necessary.", "author": "Margaret Cousins", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "kGus0J4NngTj", "authorSlug": "margaret-cousins", "length": 112 @@ -237,7 +290,9 @@ "_id": "puOWR0I5qnC", "content": "Much wisdom often goes with fewest words.", "author": "Sophocles", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "bBwlN7LI2Jtu", "authorSlug": "sophocles", "length": 41 @@ -246,7 +301,9 @@ "_id": "qdu_n6bzzKdo", "content": "Joy is the best makeup.", "author": "Anne Lamott", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "U9sym_5RKQun", "authorSlug": "anne-lamott", "length": 23 @@ -255,7 +312,9 @@ "_id": "Me8_vxzeboS", "content": "There never was a good knife made of bad steel.", "author": "Benjamin Franklin", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "xkvcrqREjoOB", "authorSlug": "benjamin-franklin", "length": 47 @@ -264,7 +323,9 @@ "_id": "x16CqiTuVRw2", "content": "I love my past. I love my present. Im not ashamed of what Ive had, and Im not sad because I have it no longer.", "author": "Colette", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "Yu8OzWEaUynL", "authorSlug": "colette", "length": 110 @@ -273,7 +334,9 @@ "_id": "z-6ZEcSbP", "content": "There is a difference between happiness and wisdom: he that thinks himself the happiest man is really so; but he that thinks himself the wisest is generally the greatest fool.", "author": "Francis Bacon", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "zWIvsqe0NWrg", "authorSlug": "francis-bacon", "length": 175 @@ -282,7 +345,9 @@ "_id": "cItDIql9UDZQ", "content": "To free us from the expectations of others, to give us back to ourselves... there lies the great, singular power of self-respect.", "author": "Joan Didion", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "igzALEEh5F3J", "authorSlug": "joan-didion", "length": 129 @@ -291,7 +356,9 @@ "_id": "Ig8FLVp7MUGN", "content": "The power of intuitive understanding will protect you from harm until the end of your days.", "author": "Laozi", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "qsaptKSHuLDU", "authorSlug": "laozi", "length": 91 @@ -300,7 +367,9 @@ "_id": "nm0-EMpYdg", "content": "Never explain - your friends do not need it and your enemies will not believe you anyway.", "author": "Elbert Hubbard", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "CBoxna3kOgDk", "authorSlug": "elbert-hubbard", "length": 89 @@ -309,7 +378,9 @@ "_id": "cfZn_tJRV_", "content": "Discipline is the bridge between goals and accomplishment.", "author": "Jim Rohn", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "y1EtofIFCLDG", "authorSlug": "jim-rohn", "length": 58 @@ -318,7 +389,9 @@ "_id": "BGwOo6FZq3tH", "content": "It is not only for what we do that we are held responsible, but also for what we do not do.", "author": "Molière", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "cnfO1057rjLp", "authorSlug": "moliere", "length": 91 @@ -327,7 +400,9 @@ "_id": "tSMhyFCDwuQ5", "content": "All difficult things have their origin in that which is easy, and great things in that which is small.", "author": "Laozi", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "qsaptKSHuLDU", "authorSlug": "laozi", "length": 102 @@ -336,7 +411,9 @@ "_id": "tfo24zWoAJ", "content": "It requires wisdom to understand wisdom: the music is nothing if the audience is deaf.", "author": "Walter Lippmann", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "62LoYlpnLBnT", "authorSlug": "walter-lippmann", "length": 86 @@ -345,7 +422,9 @@ "_id": "cJH-_m1_f0Um", "content": "So is cheerfulness, or a good temper, the more it is spent, the more remains.", "author": "Ralph Waldo Emerson", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "xEVEeQ7m4KQT", "authorSlug": "ralph-waldo-emerson", "length": 77 @@ -354,7 +433,9 @@ "_id": "1YXmyT1yhWU", "content": "Trust yourself. You know more than you think you do.", "author": "Benjamin Spock", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "jolipv2qzign", "authorSlug": "benjamin-spock", "length": 52 @@ -363,7 +444,9 @@ "_id": "Tb-u26v47VO2", "content": "Never promise more than you can perform.", "author": "Publilius Syrus", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "uvj7ffI-Yu4z", "authorSlug": "publilius-syrus", "length": 40 @@ -372,7 +455,9 @@ "_id": "9rSuCtK9CCZk", "content": "Formula for success: under promise and over deliver.", "author": "Tom Peters", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "t77znI1gAwCN", "authorSlug": "tom-peters", "length": 52 @@ -381,7 +466,9 @@ "_id": "8ZIDZ3CxrJUg", "content": "The only limit to our realization of tomorrow will be our doubts of today.", "author": "Franklin D. Roosevelt", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ejqEsEP8JKVz", "authorSlug": "franklin-d-roosevelt", "length": 74 @@ -390,7 +477,9 @@ "_id": "zbvj3SIQud", "content": "I think people who are creative are the luckiest people on earth. I know that there are no shortcuts, but you must keep your faith in something Greater than You, and keep doing what you love. Do what you love, and you will find the way to get it out to the world.", "author": "Judy Collins", - "tags": ["inspirational"], + "tags": [ + "inspirational" + ], "authorId": "PZLuQR2YR", "authorSlug": "judy-collins", "length": 263 @@ -399,7 +488,9 @@ "_id": "KBk2VabfrRne", "content": "The possibilities are numerous once we decide to act and not react.", "author": "George Bernard Shaw", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "zKfoVjq84t9O", "authorSlug": "george-bernard-shaw", "length": 67 @@ -408,7 +499,9 @@ "_id": "EGX58vRmwZac", "content": "It is better to have enough ideas for some of them to be wrong, than to be always right by having no ideas at all.", "author": "Edward de Bono", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "Q8iYMcQRfSaG", "authorSlug": "edward-de-bono", "length": 114 @@ -417,7 +510,9 @@ "_id": "Chvu_626SS", "content": "The most I can do for my friend is simply be his friend.", "author": "Henry David Thoreau", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "NrthgQlym1Ji", "authorSlug": "henry-david-thoreau", "length": 56 @@ -426,7 +521,9 @@ "_id": "gWSsNulTG-B", "content": "Every one in the world ought to do the things for which he is specially adapted. It is the part of wisdom to recognize what each one of us is best fitted for, and it is the part of education to perfect and utilize such predispositions. Because education can direct and aid nature but can never transform her.", "author": "Maria Montessori", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "LLK3WHQr-n", "authorSlug": "maria-montessori", "length": 308 @@ -435,7 +532,9 @@ "_id": "4eekGH2qL80L", "content": "He who lives in harmony with himself lives in harmony with the world.", "author": "Marcus Aurelius", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "zW_A5fM6XU-v", "authorSlug": "marcus-aurelius", "length": 69 @@ -444,7 +543,9 @@ "_id": "q8nzpiYM7R5W", "content": "The first requisite for success is the ability to apply your physical and mental energies to one problem incessantly without growing weary.", "author": "Thomas Edison", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "PC4gkJPlknC3", "authorSlug": "thomas-edison", "length": 139 @@ -453,7 +554,9 @@ "_id": "mnFoWZfga9OZ", "content": "Go for it now. The future is promised to no one.", "author": "Wayne Dyer", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "CLxflG5QMMjg", "authorSlug": "wayne-dyer", "length": 48 @@ -462,7 +565,9 @@ "_id": "oWZdsMNhOx", "content": "To wear your heart on your sleeve isn't a very good plan; you should wear it inside, where it functions best.", "author": "Margaret Thatcher", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "WVe0z8ZowG", "authorSlug": "margaret-thatcher", "length": 109 @@ -471,7 +576,9 @@ "_id": "eobAW2Ou0", "content": "You win the victory when you yield to friends.", "author": "Sophocles", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "bBwlN7LI2Jtu", "authorSlug": "sophocles", "length": 46 @@ -480,7 +587,9 @@ "_id": "3x87VqS_qvus", "content": "He that never changes his opinions, never corrects his mistakes, and will never be wiser on the morrow than he is today.", "author": "Tryon Edwards", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "1MrKaB-moWNI", "authorSlug": "tryon-edwards", "length": 120 @@ -489,7 +598,9 @@ "_id": "xzOfgffA_i4K", "content": "Not what we have but what we enjoy constitutes our abundance.", "author": "Jean Antoine Petit-Senn", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "yN1jsKxqikaP", "authorSlug": "jean-antoine-petit-senn", "length": 61 @@ -498,7 +609,9 @@ "_id": "47RkLdME26", "content": "Never tell people how to do things. Tell them what to do and they will surprise you with their ingenuity.", "author": "George S. Patton", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "fdSvvuZORmh4", "authorSlug": "george-s-patton", "length": 105 @@ -507,7 +620,10 @@ "_id": "rypL5kmdIg8", "content": "A really great talent finds its happiness in execution.", "author": "Johann Wolfgang von Goethe", - "tags": ["famous-quotes", "happiness"], + "tags": [ + "famous-quotes", + "happiness" + ], "authorId": "aW1ZR-8LuS28", "authorSlug": "johann-wolfgang-von-goethe", "length": 55 @@ -516,7 +632,9 @@ "_id": "gfTHZTAshWP", "content": "Wisdom comes alone through suffering.", "author": "Aeschylus", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "ossJxB6-1", "authorSlug": "aeschylus", "length": 37 @@ -525,7 +643,9 @@ "_id": "HxaMW05ghs7P", "content": "Every time you smile at someone, it is an action of love, a gift to that person, a beautiful thing.", "author": "Mother Teresa", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "y7OXxqCaXKVa", "authorSlug": "mother-teresa", "length": 99 @@ -534,7 +654,9 @@ "_id": "NrhUkykn4F", "content": "Marriage: A friendship recognized by the police.", "author": "Robert Louis Stevenson", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "qKwGWW8zDYtf", "authorSlug": "robert-louis-stevenson", "length": 48 @@ -543,7 +665,9 @@ "_id": "OHNMF1vCnPFE", "content": "If I am not for myself, who will be for me? If I am not for others, what am I? And if not now, when?", "author": "Rabbi Hillel", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "cII2_MfYV9sI", "authorSlug": "rabbi-hillel", "length": 100 @@ -552,7 +676,10 @@ "_id": "ncgMsMKJiBiN", "content": "If you aren't going all the way, why go at all?", "author": "Joe Namath", - "tags": ["famous-quotes", "inspirational"], + "tags": [ + "famous-quotes", + "inspirational" + ], "authorId": "qHtBDmfzcWY1", "authorSlug": "joe-namath", "length": 47 @@ -561,7 +688,9 @@ "_id": "em8Skf5_TYmL", "content": "To go against the dominant thinking of your friends, of most of the people you see every day, is perhaps the most difficult act of heroism you can perform.", "author": "Theodore H. White", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "K_3C2-eM0XG3", "authorSlug": "theodore-h-white", "length": 155 @@ -570,7 +699,11 @@ "_id": "_XB2MKPzW7dA", "content": "Success is not the key to happiness. Happiness is the key to success. If you love what you are doing, you will be successful.", "author": "Albert Schweitzer", - "tags": ["famous-quotes", "success", "happiness"], + "tags": [ + "famous-quotes", + "success", + "happiness" + ], "authorId": "ANT0MUtjmG6O", "authorSlug": "albert-schweitzer", "length": 125 @@ -579,7 +712,9 @@ "_id": "cOGCuuIf9q_V", "content": "Always remember that you are absolutely unique. Just like everyone else.", "author": "Margaret Mead", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "N_2wC_loMyb6", "authorSlug": "margaret-mead", "length": 72 @@ -588,7 +723,9 @@ "_id": "F3KNJ0FPy", "content": "If you have the guts to keep making mistakes, your wisdom and intelligence leap forward with huge momentum.", "author": "Holly Near", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "aRQvvTVi6J", "authorSlug": "holly-near", "length": 107 @@ -597,7 +734,9 @@ "_id": "4zLW-um1544g", "content": "Success in business requires training and discipline and hard work. But if you're not frightened by these things, the opportunities are just as great today as they ever were.", "author": "David Rockefeller", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "b8CEwzZeccbO", "authorSlug": "david-rockefeller", "length": 174 @@ -606,7 +745,10 @@ "_id": "RQP0o_Ze99D", "content": "No man was ever wise by chance.", "author": "Seneca the Younger", - "tags": ["famous-quotes", "wisdom"], + "tags": [ + "famous-quotes", + "wisdom" + ], "authorId": "TyeFCuRgEQjD", "authorSlug": "seneca-the-younger", "length": 31 @@ -615,7 +757,9 @@ "_id": "oKk8MCHpwgsK", "content": "Nothing ever goes away until it has taught us what we need to know.", "author": "Pema Chödrön", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "tN_VI2ruKHe1", "authorSlug": "pema-chodron", "length": 67 @@ -624,7 +768,9 @@ "_id": "44zDEFUKvm", "content": "The more man meditates upon good thoughts, the better will be his world and the world at large.", "author": "Confucius", - "tags": ["inspirational"], + "tags": [ + "inspirational" + ], "authorId": "ropvZKOXYhLr", "authorSlug": "confucius", "length": 95 @@ -633,7 +779,9 @@ "_id": "xH7XN__m5y", "content": "We can only learn to love by loving.", "author": "Iris Murdoch", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "v2Jk1rHcsGne", "authorSlug": "iris-murdoch", "length": 36 @@ -642,7 +790,9 @@ "_id": "22bmCfi_RKD9", "content": "The only thing to do with good advice is to pass it on. It is never of any use to oneself.", "author": "Oscar Wilde", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "yw5O7wULaKfx", "authorSlug": "oscar-wilde", "length": 90 @@ -651,7 +801,9 @@ "_id": "Hgj3O0h_R0", "content": "Our shared values define us more than our differences. And acknowledging those shared values can see us through our challenges today if we have the wisdom to trust in them again.", "author": "John McCain", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "zZ325SZnbU", "authorSlug": "john-mc-cain", "length": 178 @@ -660,7 +812,9 @@ "_id": "kbd0ItzHwGdq", "content": "If you change the way you look at things, the things you look at change.", "author": "Wayne Dyer", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "CLxflG5QMMjg", "authorSlug": "wayne-dyer", "length": 72 @@ -669,7 +823,9 @@ "_id": "77ZqNwl8aoR4", "content": "There are two kinds of failures: those who thought and never did, and those who did and never thought.", "author": "Laurence J. Peter", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "YQGk6ZEcJXwb", "authorSlug": "laurence-j-peter", "length": 102 @@ -678,7 +834,9 @@ "_id": "lZ8sFKiGiC", "content": "If you don't know where you are going, any road will get you there.", "author": "Lewis Carroll", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "CAjYjAa7_k", "authorSlug": "lewis-carroll", "length": 67 @@ -687,7 +845,9 @@ "_id": "dEyIaoXFto_A", "content": "Happiness is a perfume you cannot pour on others without getting a few drops on yourself.", "author": "Ralph Waldo Emerson", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "xEVEeQ7m4KQT", "authorSlug": "ralph-waldo-emerson", "length": 89 @@ -696,7 +856,9 @@ "_id": "7I1NygyqFe", "content": "Wisdom is found only in truth.", "author": "Johann Wolfgang von Goethe", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "aW1ZR-8LuS28", "authorSlug": "johann-wolfgang-von-goethe", "length": 30 @@ -705,7 +867,10 @@ "_id": "PYnVkG4UQGH7", "content": "There is nothing on this earth more to be prized than true friendship.", "author": "Thomas Aquinas", - "tags": ["famous-quotes", "friendship"], + "tags": [ + "famous-quotes", + "friendship" + ], "authorId": "aqllap-WMqA7", "authorSlug": "thomas-aquinas", "length": 70 @@ -714,7 +879,9 @@ "_id": "RvqpnaFvABIY", "content": "To get the full value of joy you must have someone to divide it with.", "author": "Mark Twain", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "zbADvkP0r05L", "authorSlug": "mark-twain", "length": 69 @@ -723,7 +890,9 @@ "_id": "aNE_rvppMD", "content": "The art of storytelling is reaching its end because the epic side of truth, wisdom, is dying out.", "author": "Walter Benjamin", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "zI76TcGmOQfn", "authorSlug": "walter-benjamin", "length": 97 @@ -732,7 +901,9 @@ "_id": "ITSWNEMYeJ2", "content": "Our distrust is very expensive.", "author": "Ralph Waldo Emerson", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "xEVEeQ7m4KQT", "authorSlug": "ralph-waldo-emerson", "length": 31 @@ -741,7 +912,9 @@ "_id": "2wYjTZiTUSgQ", "content": "The things that one most wants to do are the things that are probably most worth doing.", "author": "Winifred Holtby", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "yw0APRMe6ccU", "authorSlug": "winifred-holtby", "length": 87 @@ -750,7 +923,9 @@ "_id": "EgCOqrOa1", "content": "Learning is the beginning of wealth. Learning is the beginning of health. Learning is the beginning of spirituality. Searching and learning is where the miracle process all begins.", "author": "Jim Rohn", - "tags": ["inspirational"], + "tags": [ + "inspirational" + ], "authorId": "y1EtofIFCLDG", "authorSlug": "jim-rohn", "length": 180 @@ -759,7 +934,9 @@ "_id": "e_gTr6YjsaRE", "content": "First say to yourself what you would be; and then do what you have to do.", "author": "Epictetus", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "HZHaUuiyIJPp", "authorSlug": "epictetus", "length": 73 @@ -768,7 +945,9 @@ "_id": "xiz-AuLNow5", "content": "When you doubt your power, you give power to your doubt.", "author": "Honoré de Balzac", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "jcH4GH-fD_Lo", "authorSlug": "honore-de-balzac", "length": 56 @@ -777,7 +956,9 @@ "_id": "0Fu_lJzNXJj1", "content": "It is not so important to know everything as to appreciate what we learn.", "author": "Hannah More", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "xCBqa2UdrCeh", "authorSlug": "hannah-more", "length": 73 @@ -786,7 +967,9 @@ "_id": "BPH3iUjq75e", "content": "Keep yourself to the sunshine and you cannot see the shadow.", "author": "Helen Keller", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "pYjZMId1ilhK", "authorSlug": "helen-keller", "length": 60 @@ -795,7 +978,9 @@ "_id": "UGTlczrORBij", "content": "Nobody made a greater mistake than he who did nothing because he could do only a little.", "author": "Edmund Burke", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "obe8upiDrPyc", "authorSlug": "edmund-burke", "length": 88 @@ -804,7 +989,9 @@ "_id": "__MSA1A1By9u", "content": "The foolish man seeks happiness in the distance, the wise grows it under his feet.", "author": "James Oppenheim", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "pY4cjNm7ogoc", "authorSlug": "james-oppenheim", "length": 82 @@ -813,7 +1000,9 @@ "_id": "1fFK-Xgvy5", "content": "There is no friendship, no love, like that of the parent for the child.", "author": "Henry Ward Beecher", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "7ARdGK2SnqLv", "authorSlug": "henry-ward-beecher", "length": 71 @@ -822,7 +1011,9 @@ "_id": "999oXJVcS_I_", "content": "Begin, be bold, and venture to be wise.", "author": "Horace", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "CzaPXGzUZyyQ", "authorSlug": "horace", "length": 39 @@ -831,7 +1022,9 @@ "_id": "h1Eu15cySGn7", "content": "A true friend is the most precious of all possessions and the one we take the least thought about acquiring.", "author": "François de La Rochefoucauld", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "WsdfQEdjyPNN", "authorSlug": "francois-de-la-rochefoucauld", "length": 108 @@ -840,7 +1033,9 @@ "_id": "Fyet-MEuSrkD", "content": "Our greatness lies not so much in being able to remake the world as being able to remake ourselves.", "author": "Mahatma Gandhi", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "4J6_dx73YbT5", "authorSlug": "mahatma-gandhi", "length": 99 @@ -849,7 +1044,9 @@ "_id": "fdSsJN4RCf", "content": "It is impossible to love and to be wise.", "author": "Francis Bacon", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "zWIvsqe0NWrg", "authorSlug": "francis-bacon", "length": 40 @@ -858,7 +1055,9 @@ "_id": "q_cFcKHlt5", "content": "The sincere friends of this world are as ship lights in the stormiest of nights.", "author": "Giotto", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "HzajC1C73d", "authorSlug": "giotto", "length": 80 @@ -867,7 +1066,9 @@ "_id": "jUzHSANe7yNC", "content": "He that respects himself is safe from others; he wears a coat of mail that none can pierce.", "author": "Henry Wadsworth Longfellow", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "YhbRPxv708pj", "authorSlug": "henry-wadsworth-longfellow", "length": 91 @@ -876,7 +1077,9 @@ "_id": "38EIHUXkkhc", "content": "To bring anything into your life, imagine that it's already there.", "author": "Richard Bach", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "t9lNqDH0TmYo", "authorSlug": "richard-bach", "length": 66 @@ -885,7 +1088,9 @@ "_id": "kS2H14WhWSor", "content": "The thought manifests as the word. The word manifests as the deed. The deed develops into habit. And the habit hardens into character.", "author": "Buddha", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "sUNjshHENA05", "authorSlug": "buddha", "length": 134 @@ -894,7 +1099,9 @@ "_id": "NoaRFCJNzT", "content": "So much technology, so little talent.", "author": "Vernor Vinge", - "tags": ["technology"], + "tags": [ + "technology" + ], "authorId": "1BW5mPKRg", "authorSlug": "vernor-vinge", "length": 37 @@ -903,7 +1110,9 @@ "_id": "3BOQbdqBbzOd", "content": "Do not follow where the path may lead. Go, instead, where there is no path and leave a trail.", "author": "Ralph Waldo Emerson", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "xEVEeQ7m4KQT", "authorSlug": "ralph-waldo-emerson", "length": 93 @@ -912,7 +1121,9 @@ "_id": "KziYFsZxdD", "content": "True friendship multiplies the good in life and divides its evils. Strive to have friends, for life without friends is like life on a desert island... to find one real friend in a lifetime is good fortune; to keep him is a blessing.", "author": "Baltasar Gracián", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "NOw0qSU2RzF5", "authorSlug": "baltasar-gracian", "length": 232 @@ -921,7 +1132,9 @@ "_id": "_PqXIxnDlx", "content": "Mistakes are the usual bridge between inexperience and wisdom.", "author": "Phyllis Grissim-Theroux", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "LAi5Ya70h-", "authorSlug": "phyllis-grissim-theroux", "length": 62 @@ -930,7 +1143,9 @@ "_id": "QZoT0w8MRyc_", "content": "Those who dare to fail miserably can achieve greatly.", "author": "John F. Kennedy", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "hVmL2YCoGCRZ", "authorSlug": "john-f-kennedy", "length": 53 @@ -939,7 +1154,9 @@ "_id": "OrbTAJYtKCXr", "content": "Until you value yourself, you won't value your time. Until you value your time, you won't do anything with it.", "author": "M. Scott Peck", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ki-YWDZ-hlDZ", "authorSlug": "m-scott-peck", "length": 110 @@ -948,7 +1165,9 @@ "_id": "mi54WW7d_b", "content": "The road of excess leads to the palace of wisdom.", "author": "William Blake", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "7VD7ORpP-19B", "authorSlug": "william-blake", "length": 49 @@ -957,7 +1176,9 @@ "_id": "_1lzYCBjMDlC", "content": "When we feel love and kindness toward others, it not only makes others feel loved and cared for, but it helps us also to develop inner happiness and peace.", "author": "Dalai Lama", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "OPVjtVVBVW5h", "authorSlug": "dalai-lama", "length": 155 @@ -966,7 +1187,9 @@ "_id": "ZKfOV0UwuugV", "content": "And as we let our own light shine, we unconsciously give other people permission to do the same.", "author": "Nelson Mandela", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ubn8tDLlaqk6", "authorSlug": "nelson-mandela", "length": 96 @@ -975,7 +1198,9 @@ "_id": "VCPz7eYRbDs9", "content": "No act of kindness, no matter how small, is ever wasted.", "author": "Aesop", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "XYxYtSeixS-o", "authorSlug": "aesop", "length": 56 @@ -984,7 +1209,9 @@ "_id": "0SOLhFe3M9-l", "content": "We aim above the mark to hit the mark.", "author": "Ralph Waldo Emerson", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "xEVEeQ7m4KQT", "authorSlug": "ralph-waldo-emerson", "length": 38 @@ -993,7 +1220,10 @@ "_id": "Xgdo3uU5rey", "content": "Do something wonderful, people may imitate it.", "author": "Albert Schweitzer", - "tags": ["famous-quotes", "inspirational"], + "tags": [ + "famous-quotes", + "inspirational" + ], "authorId": "ANT0MUtjmG6O", "authorSlug": "albert-schweitzer", "length": 46 @@ -1002,7 +1232,9 @@ "_id": "xEYjoxqQhRfC", "content": "A man is great by deeds, not by birth.", "author": "Chanakya", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "szWyArKJErGq", "authorSlug": "chanakya", "length": 38 @@ -1011,7 +1243,9 @@ "_id": "r2EnGdx5HG", "content": "It has become appallingly obvious that our technology has exceeded our humanity.", "author": "Albert Einstein", - "tags": ["technology"], + "tags": [ + "technology" + ], "authorId": "L76FRuEeGIUJ", "authorSlug": "albert-einstein", "length": 80 @@ -1020,7 +1254,9 @@ "_id": "JkGCNZF9ISSN", "content": "Most of the shadows of life are caused by standing in our own sunshine.", "author": "Ralph Waldo Emerson", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "xEVEeQ7m4KQT", "authorSlug": "ralph-waldo-emerson", "length": 71 @@ -1029,7 +1265,9 @@ "_id": "pYR1eRWM7yT4", "content": "Know that although in the eternal scheme of things you are small, you are also unique and irreplaceable, as are all your fellow humans everywhere in the world.", "author": "Margaret Laurence", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ZDgdNzHUFajm", "authorSlug": "margaret-laurence", "length": 159 @@ -1038,7 +1276,9 @@ "_id": "QGY0TiFjpdj2", "content": "When I dare to be powerful, to use my strength in the service of my vision, then it becomes less and less important whether I am afraid.", "author": "Audre Lorde", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ykLNBe560sqb", "authorSlug": "audre-lorde", "length": 136 @@ -1047,7 +1287,9 @@ "_id": "6dj60GUobqhK", "content": "Think for yourselves and let others enjoy the privilege to do so too.", "author": "Voltaire", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ZyuVXKFVTZu8", "authorSlug": "voltaire", "length": 69 @@ -1056,7 +1298,9 @@ "_id": "ueyq9zjTg9Rb", "content": "Every gift from a friend is a wish for your happiness.", "author": "Richard Bach", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "t9lNqDH0TmYo", "authorSlug": "richard-bach", "length": 54 @@ -1065,7 +1309,9 @@ "_id": "5UL7N8Q2QEH1", "content": "There are two primary choices in life: to accept conditions as they exist, or accept responsibility for changing them.", "author": "Denis Waitley", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "Ge0tkRMVUicu", "authorSlug": "denis-waitley", "length": 118 @@ -1074,7 +1320,9 @@ "_id": "vbTwRyX9uu", "content": "Genius unrefined resembles a flash of lightning, but wisdom is like the sun.", "author": "Franz Grillparzer", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "CxfrvMHSHQ", "authorSlug": "franz-grillparzer", "length": 76 @@ -1083,7 +1331,9 @@ "_id": "HQmAwGraUV", "content": "Tragedy is a tool for the living to gain wisdom, not a guide by which to live.", "author": "Robert F. Kennedy", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "1qqH4MEkASdy", "authorSlug": "robert-f-kennedy", "length": 78 @@ -1092,7 +1342,9 @@ "_id": "6vrEW1dd1Q", "content": "He who is taught to live upon little owes more to his father's wisdom than he who has a great deal left him does to his father's care.", "author": "William C. Menninger", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "PyQOMX6cxaNs", "authorSlug": "william-c-menninger", "length": 134 @@ -1101,7 +1353,9 @@ "_id": "aJ-kdYIolJ8-", "content": "Accept challenges, so that you may feel the exhilaration of victory.", "author": "George S. Patton", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "fdSvvuZORmh4", "authorSlug": "george-s-patton", "length": 68 @@ -1110,7 +1364,9 @@ "_id": "-0DZUCVFcb", "content": "Friendship is Love without his wings!", "author": "Lord Byron", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "EUjr2jc6nT", "authorSlug": "lord-byron", "length": 37 @@ -1119,7 +1375,10 @@ "_id": "AUGTBH2V__b", "content": "True friends stab you in the front.", "author": "Oscar Wilde", - "tags": ["friendship", "famous-quotes"], + "tags": [ + "friendship", + "famous-quotes" + ], "authorId": "yw5O7wULaKfx", "authorSlug": "oscar-wilde", "length": 35 @@ -1128,7 +1387,9 @@ "_id": "R7wXqieTTo", "content": "Value your friendship. Value your relationships.", "author": "Barbara Bush", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "Qw_ksGjkS8", "authorSlug": "barbara-bush", "length": 48 @@ -1137,7 +1398,9 @@ "_id": "ST-c8lhICwVj", "content": "There is never enough time to do everything, but there is always enough time to do the most important thing.", "author": "Brian Tracy", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "VC1mZHGb7rAH", "authorSlug": "brian-tracy", "length": 108 @@ -1146,7 +1409,9 @@ "_id": "VsarQ0iEgE1", "content": "Life isn't about finding yourself. Life is about creating yourself.", "author": "Bernard Shaw", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "gk8iLycW0DFC", "authorSlug": "bernard-shaw", "length": 67 @@ -1155,7 +1420,9 @@ "_id": "S5Id5SJmu6Jp", "content": "No one has a finer command of language than the person who keeps his mouth shut.", "author": "Sam Rayburn", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "unPacEQP5CiA", "authorSlug": "sam-rayburn", "length": 80 @@ -1164,7 +1431,9 @@ "_id": "n1CKSLhX-iSp", "content": "All that is necessary is to accept the impossible, do without the indispensable, and bear the intolerable.", "author": "Kathleen Norris", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "B50xTKgH0R4-", "authorSlug": "kathleen-norris", "length": 106 @@ -1173,7 +1442,9 @@ "_id": "oAtERLD0yyQR", "content": "He who knows, does not speak. He who speaks, does not know.", "author": "Laozi", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "qsaptKSHuLDU", "authorSlug": "laozi", "length": 59 @@ -1182,7 +1453,10 @@ "_id": "WQbJJwEFP1l9", "content": "In the depth of winter, I finally learned that there was within me an invincible summer.", "author": "Albert Camus", - "tags": ["famous-quotes", "inspirational"], + "tags": [ + "famous-quotes", + "inspirational" + ], "authorId": "RmuonXrXY44Z", "authorSlug": "albert-camus", "length": 88 @@ -1191,7 +1465,9 @@ "_id": "smwaq6O8Hk", "content": "You can always tell a real friend: when you've made a fool of yourself he doesn't feel you've done a permanent job.", "author": "Laurence J. Peter", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "YQGk6ZEcJXwb", "authorSlug": "laurence-j-peter", "length": 115 @@ -1200,7 +1476,9 @@ "_id": "obE41Svazc", "content": "True knowledge exists in knowing that you know nothing.", "author": "Isocrates", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "6emd99Cst9Cf", "authorSlug": "isocrates", "length": 55 @@ -1209,7 +1487,9 @@ "_id": "2a7xKeQ1JWGy", "content": "To keep the body in good health is a duty... otherwise we shall not be able to keep our mind strong and clear.", "author": "Buddha", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "sUNjshHENA05", "authorSlug": "buddha", "length": 110 @@ -1218,7 +1498,9 @@ "_id": "xwABJFIJQVwW", "content": "We need to find the courage to say NO to the things and people that are not serving us if we want to rediscover ourselves and live our lives with authenticity.", "author": "Barbara De Angelis", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "o77X2PrW6mcZ", "authorSlug": "barbara-de-angelis", "length": 159 @@ -1227,7 +1509,9 @@ "_id": "XdeBIvTg0D", "content": "Be the chief but never the lord.", "author": "Laozi", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "qsaptKSHuLDU", "authorSlug": "laozi", "length": 32 @@ -1236,7 +1520,9 @@ "_id": "JfTBllGjt7L", "content": "Love all, trust a few, do wrong to none.", "author": "William Shakespeare", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "5F2Uwpllj", "authorSlug": "william-shakespeare", "length": 40 @@ -1245,7 +1531,9 @@ "_id": "OSaopvW0IUd", "content": "The more you know yourself, the more you forgive yourself.", "author": "Confucius", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ropvZKOXYhLr", "authorSlug": "confucius", "length": 58 @@ -1254,7 +1542,9 @@ "_id": "nx2M9kL0EgcI", "content": "Do good by stealth, and blush to find it fame.", "author": "Alexander Pope", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "_gz-cfmqA1mr", "authorSlug": "alexander-pope", "length": 46 @@ -1263,7 +1553,9 @@ "_id": "3E7C0r4EhlHT", "content": "Build a better mousetrap and the world will beat a path to your door.", "author": "Ralph Waldo Emerson", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "xEVEeQ7m4KQT", "authorSlug": "ralph-waldo-emerson", "length": 69 @@ -1272,7 +1564,9 @@ "_id": "z-hDjBf4spF-", "content": "Make the most of yourself, for that is all there is of you.", "author": "Ralph Waldo Emerson", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "xEVEeQ7m4KQT", "authorSlug": "ralph-waldo-emerson", "length": 59 @@ -1281,7 +1575,9 @@ "_id": "r8LdcYbz3s_", "content": "In wisdom gathered over time I have found that every experience is a form of exploration.", "author": "Ansel Adams", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "4ejQsV_Lu2", "authorSlug": "ansel-adams", "length": 89 @@ -1290,7 +1586,9 @@ "_id": "dO8CMrZCBgBw", "content": "Chance is always powerful. Let your hook be always cast; in the pool where you least expect it, there will be a fish.", "author": "Ovid", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "f9utPohz0fgH", "authorSlug": "ovid", "length": 117 @@ -1299,7 +1597,9 @@ "_id": "Vs-4YEGn", "content": "I can, therefore I am.", "author": "Simone Weil", - "tags": ["inspirational"], + "tags": [ + "inspirational" + ], "authorId": "bUP0cHEuKQBn", "authorSlug": "simone-weil", "length": 22 @@ -1308,7 +1608,9 @@ "_id": "A1JTIXKBd-S", "content": "The only real valuable thing is intuition.", "author": "Albert Einstein", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "L76FRuEeGIUJ", "authorSlug": "albert-einstein", "length": 42 @@ -1317,7 +1619,9 @@ "_id": "N9BhgsYxSz", "content": "Some people go to priests; others to poetry; I to my friends.", "author": "Virginia Woolf", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "_ITh8zk9Aj", "authorSlug": "virginia-woolf", "length": 61 @@ -1326,7 +1630,9 @@ "_id": "OSF3eMB6sZaP", "content": "Liberty, taking the word in its concrete sense, consists in the ability to choose.", "author": "Simone Weil", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "bUP0cHEuKQBn", "authorSlug": "simone-weil", "length": 82 @@ -1335,7 +1641,9 @@ "_id": "uXHzy3qRhoCy", "content": "If we are not fully ourselves, truly in the present moment, we miss everything.", "author": "Thích Nhất Hạnh", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "N0pHADD097gY", "authorSlug": "thich-nhất-hạnh", "length": 79 @@ -1344,7 +1652,9 @@ "_id": "N3YI0c4c6TR", "content": "I allow my intuition to lead my path.", "author": "Manuel Puig", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "UJel-JAtoHj1", "authorSlug": "manuel-puig", "length": 37 @@ -1353,7 +1663,9 @@ "_id": "6c2h-AtqMj6d", "content": "You can stand tall without standing on someone. You can be a victor without having victims.", "author": "Harriet Woods", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "3lL0AlxRBSU_", "authorSlug": "harriet-woods", "length": 91 @@ -1362,7 +1674,9 @@ "_id": "puEMvYGsD", "content": "Loyalty and friendship, which is to me the same, created all the wealth that I've ever thought I'd have.", "author": "Ernie Banks", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "Chx-QR-kwO", "authorSlug": "ernie-banks", "length": 104 @@ -1371,7 +1685,9 @@ "_id": "z56LpsUqHr", "content": "Wisdom is oftentimes nearer when we stoop than when we soar.", "author": "William Wordsworth", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "pcN62RXd7Z", "authorSlug": "william-wordsworth", "length": 60 @@ -1380,7 +1696,9 @@ "_id": "_ZVJWv9HJsBe", "content": "Whoever is happy will make others happy, too.", "author": "Mark Twain", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "zbADvkP0r05L", "authorSlug": "mark-twain", "length": 45 @@ -1389,7 +1707,9 @@ "_id": "ARKzsqVpFY", "content": "Two persons cannot long be friends if they cannot forgive each other's little failings.", "author": "Jean de La Bruyère", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "X28vkua13m", "authorSlug": "jean-de-la-bruyere", "length": 87 @@ -1398,7 +1718,9 @@ "_id": "je7UytrRlH-0", "content": "The supreme art of war is to subdue the enemy without fighting.", "author": "Sun Tzu", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "G-QcoRJkxKHQ", "authorSlug": "sun-tzu", "length": 63 @@ -1407,7 +1729,9 @@ "_id": "m29XGLtQho", "content": "Programs must be written for people to read, and only incidentally for machines to execute.", "author": "Hal Abelson", - "tags": ["technology"], + "tags": [ + "technology" + ], "authorId": "pPc8J2hf_", "authorSlug": "hal-abelson", "length": 91 @@ -1416,7 +1740,9 @@ "_id": "JjBqM4t-sxsr", "content": "Wise men talk because they have something to say; fools, because they have to say something.", "author": "Plato", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "VtJS8G9y5FL1", "authorSlug": "plato", "length": 92 @@ -1425,7 +1751,9 @@ "_id": "K1iJC1T4pDf", "content": "I believe that we are fundamentally the same and have the same basic potential.", "author": "Dalai Lama", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "OPVjtVVBVW5h", "authorSlug": "dalai-lama", "length": 79 @@ -1434,7 +1762,9 @@ "_id": "Rp9oE96Hqv9j", "content": "Cherish your visions and your dreams as they are the children of your soul; the blueprints of your ultimate achievements.", "author": "Napoleon Hill", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "N4h708MyElyG", "authorSlug": "napoleon-hill", "length": 121 @@ -1443,7 +1773,9 @@ "_id": "Mv26be7c-4_i", "content": "Everything that irritates us about others can lead us to a better understanding of ourselves.", "author": "Carl Jung", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "-LYBJJujV7RL", "authorSlug": "carl-jung", "length": 93 @@ -1452,7 +1784,10 @@ "_id": "w_JEQv9o4sF", "content": "The truest wisdom is a resolute determination.", "author": "Napoleon", - "tags": ["famous-quotes", "wisdom"], + "tags": [ + "famous-quotes", + "wisdom" + ], "authorId": "xlnMchFC2VJG", "authorSlug": "napoleon", "length": 46 @@ -1461,7 +1796,9 @@ "_id": "xD83G0bc53Gp", "content": "All men have a sweetness in their life. That is what helps them go on. It is towards that they turn when they feel too worn out.", "author": "Albert Camus", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "RmuonXrXY44Z", "authorSlug": "albert-camus", "length": 128 @@ -1470,7 +1807,9 @@ "_id": "xqpuo_rjf_1g", "content": "To dare is to lose ones footing momentarily. To not dare is to lose oneself.", "author": "Søren Kierkegaard", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ZEGr5G7ktW1L", "authorSlug": "soren-kierkegaard", "length": 76 @@ -1479,7 +1818,9 @@ "_id": "gXJa2hBwIpVh", "content": "Arriving at one point is the starting point to another.", "author": "John Dewey", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "_C0q1b52VOtH", "authorSlug": "john-dewey", "length": 55 @@ -1488,7 +1829,9 @@ "_id": "9knYf-nVYu10", "content": "The least of things with a meaning is worth more in life than the greatest of things without it.", "author": "Carl Jung", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "-LYBJJujV7RL", "authorSlug": "carl-jung", "length": 96 @@ -1497,7 +1840,9 @@ "_id": "i5NVHAIzPDWa", "content": "The awareness of our own strength makes us modest.", "author": "Paul Cézanne", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "SU_Z9xGuikYn", "authorSlug": "paul-cezanne", "length": 50 @@ -1506,7 +1851,9 @@ "_id": "-LwlAMmYmOG", "content": "Kind words do not cost much. Yet they accomplish much.", "author": "Blaise Pascal", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "RzEwhF8861WC", "authorSlug": "blaise-pascal", "length": 54 @@ -1515,7 +1862,9 @@ "_id": "WsswXPIbtq1p", "content": "To hell with circumstances; I create opportunities.", "author": "Bruce Lee", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "raaFe2cXACnG", "authorSlug": "bruce-lee", "length": 51 @@ -1524,7 +1873,9 @@ "_id": "nFRdjQdGL4v5", "content": "Love is never lost. If not reciprocated, it will flow back and soften and purify the heart.", "author": "Washington Irving", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "NTzdD9ZDCzOR", "authorSlug": "washington-irving", "length": 91 @@ -1533,7 +1884,9 @@ "_id": "UNkrqEJixcvb", "content": "You must welcome change as the rule but not as your ruler.", "author": "Denis Waitley", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "Ge0tkRMVUicu", "authorSlug": "denis-waitley", "length": 58 @@ -1542,7 +1895,9 @@ "_id": "tSVLiDTGay4S", "content": "Love cures people - both the ones who give it and the ones who receive it.", "author": "Karl Menninger", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "Cq01vUii_wxS", "authorSlug": "karl-menninger", "length": 74 @@ -1551,7 +1906,9 @@ "_id": "qaVA31y0GA1Q", "content": "Opportunity often comes disguised in the form of misfortune, or temporary defeat.", "author": "Napoleon Hill", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "N4h708MyElyG", "authorSlug": "napoleon-hill", "length": 81 @@ -1560,7 +1917,9 @@ "_id": "5xt93w4ql_UM", "content": "Never idealize others. They will never live up to your expectations.", "author": "Leo Buscaglia", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "XVzZKXv06YQG", "authorSlug": "leo-buscaglia", "length": 68 @@ -1569,7 +1928,9 @@ "_id": "WuHLOLFI2uKy", "content": "To be aware of a single shortcoming in oneself is more useful than to be aware of a thousand in someone else.", "author": "Dalai Lama", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "OPVjtVVBVW5h", "authorSlug": "dalai-lama", "length": 109 @@ -1578,7 +1939,9 @@ "_id": "UQ2TjZ5IIDSR", "content": "Anyone who doesn't take truth seriously in small matters cannot be trusted in large ones either.", "author": "Albert Einstein", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "L76FRuEeGIUJ", "authorSlug": "albert-einstein", "length": 96 @@ -1587,7 +1950,9 @@ "_id": "bhseVu9PSh1I", "content": "Accept the things to which fate binds you, and love the people with whom fate brings you together, but do so with all your heart.", "author": "Marcus Aurelius", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "zW_A5fM6XU-v", "authorSlug": "marcus-aurelius", "length": 129 @@ -1596,7 +1961,9 @@ "_id": "JqusXYQEGNPC", "content": "Do you want to know who you are? Don't ask. Act! Action will delineate and define you.", "author": "Thomas Jefferson", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "Zy4xV5ItRxmv", "authorSlug": "thomas-jefferson", "length": 86 @@ -1605,7 +1972,9 @@ "_id": "bkL1a4IExc", "content": "Motivation is the art of getting people to do what you want them to do because they want to do it.", "author": "Dwight D. Eisenhower", - "tags": ["inspirational"], + "tags": [ + "inspirational" + ], "authorId": "JSoEc_6dY", "authorSlug": "dwight-d-eisenhower", "length": 98 @@ -1614,7 +1983,10 @@ "_id": "x6LCvKtrXx", "content": "All love that has not friendship for its base, is like a mansion built upon the sand.", "author": "Ella Wheeler Wilcox", - "tags": ["friendship", "love"], + "tags": [ + "friendship", + "love" + ], "authorId": "uKzj7T5Huj", "authorSlug": "ella-wheeler-wilcox", "length": 85 @@ -1623,7 +1995,9 @@ "_id": "mjKwHGRjIE", "content": "The more you like yourself, the less you are like anyone else, which makes you unique.", "author": "Walt Disney", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "HzyhMbP15DoD", "authorSlug": "walt-disney", "length": 86 @@ -1632,7 +2006,9 @@ "_id": "S47CRwtgyIsp", "content": "Constant kindness can accomplish much. As the sun makes ice melt, kindness causes misunderstanding, mistrust, and hostility to evaporate.", "author": "Albert Schweitzer", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ANT0MUtjmG6O", "authorSlug": "albert-schweitzer", "length": 137 @@ -1641,7 +2017,10 @@ "_id": "oM0UB2sH4t", "author": "William Shakespeare", "content": "Action is eloquence!", - "tags": ["literature", "famous-quotes"], + "tags": [ + "literature", + "famous-quotes" + ], "authorId": "5F2Uwpllj", "authorSlug": "william-shakespeare", "length": 20 @@ -1650,7 +2029,9 @@ "_id": "305CvwuKqye", "content": "The heart has its reasons which reason knows not of.", "author": "Blaise Pascal", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "RzEwhF8861WC", "authorSlug": "blaise-pascal", "length": 52 @@ -1659,7 +2040,9 @@ "_id": "yZ1f2VZoK93Z", "content": "Good people are good because they've come to wisdom through failure. We get very little wisdom from success, you know.", "author": "William Saroyan", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "5-_LwDOxI_Fb", "authorSlug": "william-saroyan", "length": 118 @@ -1668,7 +2051,9 @@ "_id": "SDhP8UAmtD09", "content": "If you're walking down the right path and you're willing to keep walking, eventually you'll make progress.", "author": "Barack Obama", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "Xt2CsBHup4NB", "authorSlug": "barack-obama", "length": 106 @@ -1677,7 +2062,9 @@ "_id": "xDhw8-7y3p", "content": "Do not wait; the time will never be 'just right.' Start where you stand, and work with whatever tools you may have at your command, and better tools will be found as you go along.", "author": "George Herbert", - "tags": ["inspirational"], + "tags": [ + "inspirational" + ], "authorId": "6VObium64", "authorSlug": "george-herbert", "length": 179 @@ -1686,7 +2073,9 @@ "_id": "KJhB_lkgrbPa", "content": "It is better to understand a little than to misunderstand a lot.", "author": "Anatole France", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "anpE1ceNi3xv", "authorSlug": "anatole-france", "length": 64 @@ -1695,7 +2084,10 @@ "_id": "yCY2q20UK4Uf", "content": "Let us sacrifice our today so that our children can have a better tomorrow.", "author": "A. P. J. Abdul Kalam", - "tags": ["famous-quotes", "inspirational"], + "tags": [ + "famous-quotes", + "inspirational" + ], "authorId": "Bblz8Knp6-ZB", "authorSlug": "a-p-j-abdul-kalam", "length": 75 @@ -1704,7 +2096,9 @@ "_id": "yBn9DgK3vf", "content": "A youth, when at home, should be filial and, abroad, respectful to his elders. He should be earnest and truthful. He should overflow in love to all and cultivate the friendship of the good. When he has time and opportunity, after the performance of these things, he should employ them in polite studies.", "author": "Confucius", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "ropvZKOXYhLr", "authorSlug": "confucius", "length": 303 @@ -1713,7 +2107,9 @@ "_id": "gZavCRsLqcse", "content": "I love you the more in that I believe you had liked me for my own sake and for nothing else.", "author": "John Keats", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "mXQPMe-Kg_wJ", "authorSlug": "john-keats", "length": 92 @@ -1722,7 +2118,9 @@ "_id": "auaOSkmWy91", "content": "Read as you taste fruit or savor wine, or enjoy friendship, love or life.", "author": "George Herbert", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "6VObium64", "authorSlug": "george-herbert", "length": 73 @@ -1731,7 +2129,9 @@ "_id": "D6Yr5I9ikXXc", "content": "If you do what you've always done, you'll get what youve always gotten.", "author": "Tony Robbins", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "IkUGwHTcaXs9", "authorSlug": "tony-robbins", "length": 71 @@ -1740,7 +2140,9 @@ "_id": "OCgCMtjcY3HJ", "content": "Respect should be earned by actions, and not acquired by years.", "author": "Frank Lloyd Wright", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "U3a52-LjQPgz", "authorSlug": "frank-lloyd-wright", "length": 63 @@ -1749,7 +2151,9 @@ "_id": "JP0Z6kpYem0y", "content": "Bodily exercise, when compulsory, does no harm to the body; but knowledge which is acquired under compulsion obtains no hold on the mind.", "author": "Plato", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "VtJS8G9y5FL1", "authorSlug": "plato", "length": 137 @@ -1758,7 +2162,9 @@ "_id": "_6z2BhrSP8hw", "content": "Do not be too timid and squeamish about your reactions. All life is an experiment. The more experiments you make the better.", "author": "Ralph Waldo Emerson", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "xEVEeQ7m4KQT", "authorSlug": "ralph-waldo-emerson", "length": 124 @@ -1767,7 +2173,9 @@ "_id": "DiIyvrMPCZUK", "content": "The universe is full of magical things, patiently waiting for our wits to grow sharper.", "author": "Eden Phillpotts", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "qaLujpsc9zLA", "authorSlug": "eden-phillpotts", "length": 87 @@ -1776,7 +2184,9 @@ "_id": "4zV5Pz4HES", "content": "Where is the Life we have lost in living? Where is the wisdom we have lost in knowledge? Where is the knowledge we have lost in information?", "author": "George Eliot", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "MRCvek-GcKNk", "authorSlug": "george-eliot", "length": 140 @@ -1785,7 +2195,9 @@ "_id": "qGMGUH1ric", "content": "Friendship is always a sweet responsibility, never an opportunity.", "author": "Kahlil Gibran", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "h05GYnKzckM3", "authorSlug": "kahlil-gibran", "length": 66 @@ -1794,7 +2206,9 @@ "_id": "QLHIDLCkdjB", "content": "The winds and waves are always on the side of the ablest navigators.", "author": "Edward Gibbon", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "YT9gVcO1Iwl9", "authorSlug": "edward-gibbon", "length": 68 @@ -1803,7 +2217,9 @@ "_id": "kvTitxhuKqUw", "content": "There is only one success - to be able to spend your life in your own way.", "author": "Christopher Morley", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "SWPwu5PcQUso", "authorSlug": "christopher-morley", "length": 74 @@ -1812,7 +2228,9 @@ "_id": "5eTiZJCTAy9B", "content": "Whoso loves, believes the impossible.", "author": "Elizabeth Browning", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "9gFTpOXrxt8c", "authorSlug": "elizabeth-browning", "length": 37 @@ -1821,7 +2239,11 @@ "_id": "hLCOLhZE_92V", "content": "Reality is merely an illusion, albeit a very persistent one.", "author": "Albert Einstein", - "tags": ["famous-quotes", "science", "wisdom"], + "tags": [ + "famous-quotes", + "science", + "wisdom" + ], "authorId": "L76FRuEeGIUJ", "authorSlug": "albert-einstein", "length": 60 @@ -1830,7 +2252,9 @@ "_id": "MONDu5bf8JmU", "content": "If you love life, don't waste time, for time is what life is made up of.", "author": "Bruce Lee", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "raaFe2cXACnG", "authorSlug": "bruce-lee", "length": 72 @@ -1839,7 +2263,9 @@ "_id": "IyF7fIZIc3XX", "content": "The most difficult thing is the decision to act, the rest is merely tenacity. The fears are paper tigers. You can do anything you decide to do. You can act to change and control your life; and the procedure, the process is its own reward.", "author": "Amelia Earhart", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "by3TkPSn9iVA", "authorSlug": "amelia-earhart", "length": 238 @@ -1848,7 +2274,9 @@ "_id": "iLP7-hx1ktyO", "content": "Do what you can. Want what you have. Be who you are.", "author": "Forrest Church", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "NvKBMv_KbtVs", "authorSlug": "forrest-church", "length": 52 @@ -1857,7 +2285,9 @@ "_id": "wPJ_Mb4EjPlE", "content": "Mind is everything: muscle, pieces of rubber. All that I am, I am because of my mind.", "author": "Paavo Nurmi", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "SckF0U8Iy85M", "authorSlug": "paavo-nurmi", "length": 85 @@ -1866,7 +2296,9 @@ "_id": "QtuKHLeFEBK5", "content": "We come to love not by finding a perfect person, but by learning to see an imperfect person perfectly.", "author": "Sam Keen", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "hWxSyExpHl40", "authorSlug": "sam-keen", "length": 102 @@ -1875,7 +2307,10 @@ "_id": "-Hqy06gxrO", "content": "A tree is known by its fruit; a man by his deeds. A good deed is never lost; he who sows courtesy reaps friendship, and he who plants kindness gathers love.", "author": "Basil of Caesarea", - "tags": ["wisdom", "friendship"], + "tags": [ + "wisdom", + "friendship" + ], "authorId": "6bnXdruCW", "authorSlug": "basil-of-caesarea", "length": 156 @@ -1884,7 +2319,9 @@ "_id": "r5SEZsvbKwTw", "content": "What is new in the world? Nothing. What is old in the world? Nothing. Everything has always been and will always be.", "author": "Sai Baba", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ZuwCV8XgXVtt", "authorSlug": "sai-baba", "length": 116 @@ -1893,7 +2330,10 @@ "_id": "6aKJM5st-C", "content": "It is more shameful to distrust our friends than to be deceived by them.", "author": "Confucius", - "tags": ["friendship", "famous-quotes"], + "tags": [ + "friendship", + "famous-quotes" + ], "authorId": "ropvZKOXYhLr", "authorSlug": "confucius", "length": 72 @@ -1902,7 +2342,9 @@ "_id": "P2UE04MWtcme", "content": "Everything has beauty, but not everyone sees it.", "author": "Confucius", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ropvZKOXYhLr", "authorSlug": "confucius", "length": 48 @@ -1911,7 +2353,10 @@ "_id": "bcAbPetiKzd", "content": "Learn from yesterday, live for today, hope for tomorrow.", "author": "Albert Einstein", - "tags": ["famous-quotes", "inspirational"], + "tags": [ + "famous-quotes", + "inspirational" + ], "authorId": "L76FRuEeGIUJ", "authorSlug": "albert-einstein", "length": 56 @@ -1920,7 +2365,9 @@ "_id": "2tzuQm94r9D", "content": "He who talks more is sooner exhausted.", "author": "Laozi", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "qsaptKSHuLDU", "authorSlug": "laozi", "length": 38 @@ -1929,7 +2376,10 @@ "_id": "hhDqMdHw5w", "content": "If there is such a thing as a good marriage, it is because it resembles friendship rather than love.", "author": "Michel de Montaigne", - "tags": ["friendship", "love"], + "tags": [ + "friendship", + "love" + ], "authorId": "B2lKC8XK8Dh7", "authorSlug": "michel-de-montaigne", "length": 100 @@ -1938,7 +2388,9 @@ "_id": "lnt4f9WI2nt", "content": "If a man does his best, what else is there?", "author": "George S. Patton", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "fdSvvuZORmh4", "authorSlug": "george-s-patton", "length": 43 @@ -1947,7 +2399,9 @@ "_id": "WjEYIJ2XWpE5", "content": "Fine words and an insinuating appearance are seldom associated with true virtue", "author": "Confucius", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ropvZKOXYhLr", "authorSlug": "confucius", "length": 79 @@ -1956,7 +2410,9 @@ "_id": "EEdhZ7MQ8", "content": "Your talent is God's gift to you. What you do with it is your gift back to God.", "author": "Leo Buscaglia", - "tags": ["inspirational"], + "tags": [ + "inspirational" + ], "authorId": "XVzZKXv06YQG", "authorSlug": "leo-buscaglia", "length": 79 @@ -1965,7 +2421,9 @@ "_id": "jTzIvr-aog", "content": "Quick decisions are unsafe decisions.", "author": "Sophocles", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "bBwlN7LI2Jtu", "authorSlug": "sophocles", "length": 37 @@ -1974,7 +2432,9 @@ "_id": "_0Xe3v-BJjUx", "content": "To fly as fast as thought, you must begin by knowing that you have already arrived.", "author": "Richard Bach", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "t9lNqDH0TmYo", "authorSlug": "richard-bach", "length": 83 @@ -1983,7 +2443,9 @@ "_id": "rWlO2ihzqhk", "content": "Better be ignorant of a matter than half know it.", "author": "Publilius Syrus", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "uvj7ffI-Yu4z", "authorSlug": "publilius-syrus", "length": 49 @@ -1992,7 +2454,12 @@ "_id": "Ckh_FdZYHyf", "content": "I destroy my enemies when I make them my friends.", "author": "Abraham Lincoln", - "tags": ["famous-quotes", "history", "politics", "friendship"], + "tags": [ + "famous-quotes", + "history", + "politics", + "friendship" + ], "authorId": "8k75S1ntV9GW", "authorSlug": "abraham-lincoln", "length": 49 @@ -2001,7 +2468,10 @@ "_id": "7Gy2Y5Zxuzh", "content": "Autumn is a second spring when every leaf is a flower.", "author": "Albert Camus", - "tags": ["famous-quotes", "nature"], + "tags": [ + "famous-quotes", + "nature" + ], "authorId": "RmuonXrXY44Z", "authorSlug": "albert-camus", "length": 54 @@ -2010,7 +2480,9 @@ "_id": "oG014O92mM", "content": "Life is a learning experience, only if you learn.", "author": "Yogi Berra", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "-HVEQO7Ru6d_", "authorSlug": "yogi-berra", "length": 49 @@ -2019,7 +2491,9 @@ "_id": "3v53-XiBvtQK", "content": "Happiness is when what you think, what you say, and what you do are in harmony.", "author": "Mahatma Gandhi", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "4J6_dx73YbT5", "authorSlug": "mahatma-gandhi", "length": 79 @@ -2028,7 +2502,9 @@ "_id": "OaGsXXzLiBqf", "content": "Without passion man is a mere latent force and possibility, like the flint which awaits the shock of the iron before it can give forth its spark.", "author": "Henri-Frédéric Amiel", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "AwZcCJD8ICBi", "authorSlug": "henri-frederic-amiel", "length": 145 @@ -2037,7 +2513,9 @@ "_id": "a9C880IWYfsD", "content": "Your mind will answer most questions if you learn to relax and wait for the answer.", "author": "William Burroughs", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "UFjVKUUywWBZ", "authorSlug": "william-burroughs", "length": 83 @@ -2046,7 +2524,9 @@ "_id": "X6UDrdk4ZIk", "content": "Pure, holy simplicity confounds all the wisdom of this world and the wisdom of the flesh.", "author": "Francis of Assisi", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "axdVU-ILRg-V", "authorSlug": "francis-of-assisi", "length": 89 @@ -2055,7 +2535,9 @@ "_id": "rc2Yx_x_X0qD", "content": "The less effort, the faster and more powerful you will be.", "author": "Bruce Lee", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "raaFe2cXACnG", "authorSlug": "bruce-lee", "length": 58 @@ -2064,7 +2546,9 @@ "_id": "e1n5aMOunl1g", "content": "If I know what love is, it is because of you.", "author": "Hermann Hesse", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "plI0y2ZLokNn", "authorSlug": "hermann-hesse", "length": 45 @@ -2073,7 +2557,9 @@ "_id": "hXmMutk9Y8Nd", "content": "Life is not a problem to be solved, but a reality to be experienced.", "author": "Søren Kierkegaard", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ZEGr5G7ktW1L", "authorSlug": "soren-kierkegaard", "length": 68 @@ -2082,7 +2568,9 @@ "_id": "RFbQKIDffV", "content": "I decided that it was not wisdom that enabled poets to write their poetry, but a kind of instinct or inspiration, such as you find in seers and prophets who deliver all their sublime messages without knowing in the least what they mean.", "author": "Isocrates", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "6emd99Cst9Cf", "authorSlug": "isocrates", "length": 236 @@ -2091,7 +2579,9 @@ "_id": "DNjQty5jeU", "content": "Communications tools don’t get socially interesting until they get technologically boring.", "author": "Clay Shirky", - "tags": ["technology"], + "tags": [ + "technology" + ], "authorId": "Y3mgXKqW-", "authorSlug": "clay-shirky", "length": 90 @@ -2100,7 +2590,9 @@ "_id": "2i4ILvPHXsgJ", "content": "If you accept the expectations of others, especially negative ones, then you never will change the outcome.", "author": "Michael Jordan", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "XU7cPmNoohKd", "authorSlug": "michael-jordan", "length": 107 @@ -2109,7 +2601,9 @@ "_id": "uqRZV8skVN", "content": "The way you see people is the way you treat them, and the way you treat them is what they become.", "author": "Johann Wolfgang von Goethe", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "aW1ZR-8LuS28", "authorSlug": "johann-wolfgang-von-goethe", "length": 97 @@ -2118,7 +2612,9 @@ "_id": "ZR3wECF-tFj", "content": "He is able who thinks he is able.", "author": "Buddha", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "sUNjshHENA05", "authorSlug": "buddha", "length": 33 @@ -2127,7 +2623,9 @@ "_id": "ZP4Osu902G-r", "content": "The only real mistake is the one from which we learn nothing.", "author": "John Powell", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "N5zjr1qxROEY", "authorSlug": "john-powell", "length": 61 @@ -2136,7 +2634,10 @@ "_id": "gZSiJPLyt_zX", "content": "There is only one corner of the universe you can be certain of improving, and that's your own self.", "author": "Aldous Huxley", - "tags": ["famous-quotes", "inspirational"], + "tags": [ + "famous-quotes", + "inspirational" + ], "authorId": "9B-Gz0CukKAX", "authorSlug": "aldous-huxley", "length": 99 @@ -2145,7 +2646,9 @@ "_id": "pt90_r-76Lj5", "content": "All children are artists. The problem is how to remain an artist once he grows up.", "author": "Pablo Picasso", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "atthH9QDwIJB", "authorSlug": "pablo-picasso", "length": 82 @@ -2154,7 +2657,9 @@ "_id": "7hfEG8Iv86", "content": "Friendship is the marriage of the soul, and this marriage is liable to divorce.", "author": "Voltaire", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "ZyuVXKFVTZu8", "authorSlug": "voltaire", "length": 79 @@ -2163,7 +2668,9 @@ "_id": "L5sDM2UaWlBt", "content": "The pain passes, but the beauty remains.", "author": "Pierre-Auguste Renoir", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "wuP9CCCc0AtJ", "authorSlug": "pierre-auguste-renoir", "length": 40 @@ -2172,7 +2679,9 @@ "_id": "U8B6iFEz1V7", "content": "An ant on the move does more than a dozing ox", "author": "Laozi", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "qsaptKSHuLDU", "authorSlug": "laozi", "length": 45 @@ -2181,7 +2690,9 @@ "_id": "k8oFtw9mQpi", "content": "Loss is nothing else but change,and change is Natures delight.", "author": "Marcus Aurelius", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "zW_A5fM6XU-v", "authorSlug": "marcus-aurelius", "length": 62 @@ -2190,7 +2701,9 @@ "_id": "O91gdjzOjLa6", "content": "Listen to what you know instead of what you fear.", "author": "Richard Bach", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "t9lNqDH0TmYo", "authorSlug": "richard-bach", "length": 49 @@ -2199,7 +2712,10 @@ "_id": "KaIFTRaBv59T", "content": "Always seek out the seed of triumph in every adversity.", "author": "Og Mandino", - "tags": ["famous-quotes", "wisdom"], + "tags": [ + "famous-quotes", + "wisdom" + ], "authorId": "xcLBIo1fbkkh", "authorSlug": "og-mandino", "length": 55 @@ -2208,7 +2724,9 @@ "_id": "Wxf1mhZ7ipPU", "content": "Men in general judge more from appearances than from reality. All men have eyes, but few have the gift of penetration.", "author": "Niccolò Machiavelli", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "VKXFr-ptJb7Q", "authorSlug": "niccolo-machiavelli", "length": 118 @@ -2217,7 +2735,9 @@ "_id": "_WiuNkQC_E_B", "content": "Thought is the blossom; language the bud; action the fruit behind it.", "author": "Ralph Waldo Emerson", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "xEVEeQ7m4KQT", "authorSlug": "ralph-waldo-emerson", "length": 69 @@ -2226,7 +2746,9 @@ "_id": "D-KuPZEq59LD", "content": "The place to improve the world is first in one's own heart and head and hands.", "author": "Robert M. Pirsig", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "kahQz7ulPX1A", "authorSlug": "robert-m-pirsig", "length": 78 @@ -2235,7 +2757,9 @@ "_id": "CPhGOJeapNYZ", "content": "To be tested is good. The challenged life may be the best therapist.", "author": "Gail Sheehy", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "XUX3C8oS06Ul", "authorSlug": "gail-sheehy", "length": 68 @@ -2244,7 +2768,10 @@ "_id": "bmKMocxtR7bJ", "content": "Your sacred space is where you can find yourself again and again.", "author": "Joseph Campbell", - "tags": ["famous-quotes", "wisdom"], + "tags": [ + "famous-quotes", + "wisdom" + ], "authorId": "XGIdt8L_MfeP", "authorSlug": "joseph-campbell", "length": 65 @@ -2253,7 +2780,9 @@ "_id": "P77hDIkrjYP", "content": "Study the past, if you would divine the future.", "author": "Confucius", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ropvZKOXYhLr", "authorSlug": "confucius", "length": 47 @@ -2262,7 +2791,9 @@ "_id": "uxtOnAdYE7Wn", "content": "Four steps to achievement: Plan purposefully. Prepare prayerfully. Proceed positively. Pursue persistently.", "author": "William Arthur Ward", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "BbtbIJLprBVl", "authorSlug": "william-arthur-ward", "length": 107 @@ -2271,7 +2802,9 @@ "_id": "5ewQ54oqW1HS", "content": "It is not the possession of truth, but the success which attends the seeking after it, that enriches the seeker and brings happiness to him.", "author": "Max Planck", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ZK_-AtwrrSOs", "authorSlug": "max-planck", "length": 140 @@ -2280,7 +2813,10 @@ "_id": "_dfC0aL_AGD4", "content": "Great ideas often receive violent opposition from mediocre minds.", "author": "Albert Einstein", - "tags": ["famous-quotes", "technology"], + "tags": [ + "famous-quotes", + "technology" + ], "authorId": "L76FRuEeGIUJ", "authorSlug": "albert-einstein", "length": 65 @@ -2289,7 +2825,9 @@ "_id": "GJxkg5rxv0tw", "content": "Man is not sum of what he has already, but rather the sum of what he does not yet have, of what he could have.", "author": "Jean-Paul Sartre", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "JDgQh4oi5vVt", "authorSlug": "jean-paul-sartre", "length": 110 @@ -2298,7 +2836,9 @@ "_id": "lEjcF-a2-Z5w", "content": "Sincerity is the way of Heaven. The attainment of sincerity is the way of men.", "author": "Confucius", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ropvZKOXYhLr", "authorSlug": "confucius", "length": 78 @@ -2307,7 +2847,9 @@ "_id": "5V7Gw25dIjvc", "content": "Happiness is not something ready made. It comes from your own actions.", "author": "Dalai Lama", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "OPVjtVVBVW5h", "authorSlug": "dalai-lama", "length": 70 @@ -2316,7 +2858,9 @@ "_id": "HTn2Q6e3AYr", "content": "If you wish to be a writer, write.", "author": "Epictetus", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "HZHaUuiyIJPp", "authorSlug": "epictetus", "length": 34 @@ -2325,7 +2869,9 @@ "_id": "UnmE__TaKI", "content": "In action a great heart is the chief qualification. In work, a great head.", "author": "Arthur Schopenhauer", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "SZV21yHaj-Po", "authorSlug": "arthur-schopenhauer", "length": 74 @@ -2334,7 +2880,9 @@ "_id": "5mqeP6Q3hWIz", "content": "I find hope in the darkest of days, and focus in the brightest. I do not judge the universe.", "author": "Dalai Lama", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "OPVjtVVBVW5h", "authorSlug": "dalai-lama", "length": 92 @@ -2343,7 +2891,9 @@ "_id": "dnatcNZd_hIB", "content": "The greatest danger for most of us is not that our aim is too high and we miss it, but that it is too low and we reach it.", "author": "Michelangelo", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "pik1wvig1y8U", "authorSlug": "michelangelo", "length": 122 @@ -2352,7 +2902,9 @@ "_id": "Ls62KqLuousc", "content": "We are all inclined to judge ourselves by our ideals; others, by their acts.", "author": "Harold Nicolson", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "cfKFCzivTtqS", "authorSlug": "harold-nicolson", "length": 76 @@ -2361,7 +2913,9 @@ "_id": "_hJS3LX4Qz", "content": "Technology has to be invented or adopted.", "author": "Jared Diamond", - "tags": ["technology"], + "tags": [ + "technology" + ], "authorId": "jrYQ70dujQ", "authorSlug": "jared-diamond", "length": 41 @@ -2370,7 +2924,9 @@ "_id": "UyuJSYkjSwwX", "content": "Kind words can be short and easy to speak, but their echoes are truly endless.", "author": "Mother Teresa", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "y7OXxqCaXKVa", "authorSlug": "mother-teresa", "length": 78 @@ -2379,7 +2935,9 @@ "_id": "Zhr3mv7HgY4u", "content": "Your vision will become clear only when you look into your heart. Who looks outside, dreams. Who looks inside, awakens.", "author": "Carl Jung", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "-LYBJJujV7RL", "authorSlug": "carl-jung", "length": 119 @@ -2388,7 +2946,10 @@ "_id": "0dCkJZJYZa75", "content": "When the solution is simple, God is answering.", "author": "Albert Einstein", - "tags": ["famous-quotes", "religion"], + "tags": [ + "famous-quotes", + "religion" + ], "authorId": "L76FRuEeGIUJ", "authorSlug": "albert-einstein", "length": 46 @@ -2397,7 +2958,9 @@ "_id": "0zPVpv3bI", "content": "You can't cross the sea merely by standing and staring at the water.", "author": "Rabindranath Tagore", - "tags": ["inspirational"], + "tags": [ + "inspirational" + ], "authorId": "FYm0s5rHORUu", "authorSlug": "rabindranath-tagore", "length": 68 @@ -2406,7 +2969,9 @@ "_id": "aAHoOxRG8pTE", "content": "An idea that is developed and put into action is more important than an idea that exists only as an idea.", "author": "Buddha", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "sUNjshHENA05", "authorSlug": "buddha", "length": 105 @@ -2415,7 +2980,9 @@ "_id": "WSpdlKZYCP", "content": "Technology… the knack of so arranging the world that we don’t have to experience it.", "author": "Max Frisch", - "tags": ["technology"], + "tags": [ + "technology" + ], "authorId": "Q1jb5vE0Z", "authorSlug": "max-frisch", "length": 84 @@ -2424,7 +2991,9 @@ "_id": "C5_AURs6v6", "content": "Friendship is the source of the greatest pleasures, and without friends even the most agreeable pursuits become tedious.", "author": "Thomas Aquinas", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "aqllap-WMqA7", "authorSlug": "thomas-aquinas", "length": 120 @@ -2433,7 +3002,9 @@ "_id": "UYpi0ue4EwbH", "content": "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.", "author": "Marie Curie", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "Ayk4hyEX7Qbu", "authorSlug": "marie-curie", "length": 123 @@ -2442,7 +3013,9 @@ "_id": "JqHe3XeUkv", "content": "One's philosophy is not best expressed in words; it is expressed in the choices one makes... and the choices we make are ultimately our responsibility.", "author": "Eleanor Roosevelt", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "1X7NWb1oyd21", "authorSlug": "eleanor-roosevelt", "length": 151 @@ -2451,7 +3024,9 @@ "_id": "clw722gWp4m", "content": "The invariable mark of wisdom is to see the miraculous in the common.", "author": "Ralph Waldo Emerson", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "xEVEeQ7m4KQT", "authorSlug": "ralph-waldo-emerson", "length": 69 @@ -2460,7 +3035,9 @@ "_id": "ptXvSKlkU4E7", "content": "Many of life's failures are people who did not realize how close they were to success when they gave up.", "author": "Thomas Edison", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "PC4gkJPlknC3", "authorSlug": "thomas-edison", "length": 104 @@ -2469,7 +3046,9 @@ "_id": "uUMvpp64j2oS", "content": "To give ones self earnestly to the duties due to men, and, while respecting spiritual beings, to keep aloof from them, may be called wisdom.", "author": "Confucius", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ropvZKOXYhLr", "authorSlug": "confucius", "length": 140 @@ -2478,7 +3057,9 @@ "_id": "Dq9hDqahfYjZ", "content": "The smallest flower is a thought, a life answering to some feature of the Great Whole, of whom they have a persistent intuition.", "author": "Honoré de Balzac", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "jcH4GH-fD_Lo", "authorSlug": "honore-de-balzac", "length": 128 @@ -2487,7 +3068,9 @@ "_id": "kTmtHqeUMESD", "content": "In all things of nature there is something of the marvelous.", "author": "Aristotle", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "Z8j-PYl90GLF", "authorSlug": "aristotle", "length": 60 @@ -2496,7 +3079,9 @@ "_id": "sTma0kWPt2", "content": "Friendship, like credit, is highest when it is not used.", "author": "Elbert Hubbard", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "CBoxna3kOgDk", "authorSlug": "elbert-hubbard", "length": 56 @@ -2505,7 +3090,9 @@ "_id": "CF7uqSGvDt", "content": "Know what's important and what isn't. Have the wisdom to know the right thing to do, the integrity to do it, the character to stand up to those who don't, and the courage to stop those who won't.", "author": "Mark Goulston", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "0WD9wxpVJN", "authorSlug": "mark-goulston", "length": 195 @@ -2514,7 +3101,9 @@ "_id": "9hIehvX23pvr", "content": "There is no charm equal to tenderness of heart.", "author": "Jane Austen", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "43J5NV_BwtPN", "authorSlug": "jane-austen", "length": 47 @@ -2523,7 +3112,9 @@ "_id": "JyWzVBrhCC", "content": "We don't receive wisdom; we must discover it for ourselves after a journey that no one can take for us or spare us.", "author": "Marcel Proust", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "Fz5WQF7BjdJg", "authorSlug": "marcel-proust", "length": 115 @@ -2532,7 +3123,9 @@ "_id": "E9rnk2e0az", "content": "It always seems impossible until it's done.", "author": "Nelson Mandela", - "tags": ["inspirational"], + "tags": [ + "inspirational" + ], "authorId": "ubn8tDLlaqk6", "authorSlug": "nelson-mandela", "length": 43 @@ -2541,7 +3134,9 @@ "_id": "4iwVD9jYPBp", "content": "Well done is better than well said.", "author": "Benjamin Franklin", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "xkvcrqREjoOB", "authorSlug": "benjamin-franklin", "length": 35 @@ -2550,7 +3145,9 @@ "_id": "Wxg76F8ly83k", "content": "Lose an hour in the morning, and you will spend all day looking for it.", "author": "Richard Whately", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "woIOC2CwRwXE", "authorSlug": "richard-whately", "length": 71 @@ -2559,7 +3156,9 @@ "_id": "ZqHAX7IvZk", "content": "If you want to go east, don't go west.", "author": "Ramakrishna", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "ndMmFugJSl", "authorSlug": "ramakrishna", "length": 38 @@ -2568,7 +3167,10 @@ "_id": "vpHGlmeIu3Oz", "content": "We never understand how little we need in this world until we know the loss of it.", "author": "J. M. Barrie", - "tags": ["famous-quotes", "wisdom"], + "tags": [ + "famous-quotes", + "wisdom" + ], "authorId": "5PJN9vn8epVR", "authorSlug": "j-m-barrie", "length": 82 @@ -2577,7 +3179,9 @@ "_id": "vkR90rDh-ZSA", "content": "Hope arouses, as nothing else can arouse, a passion for the possible.", "author": "William Sloane Coffin", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "-yyCeRZpAZLI", "authorSlug": "william-sloane-coffin", "length": 69 @@ -2586,7 +3190,10 @@ "_id": "x8zoyRtfIPRg", "content": "I will prepare and some day my chance will come.", "author": "Abraham Lincoln", - "tags": ["famous-quotes", "inspirational"], + "tags": [ + "famous-quotes", + "inspirational" + ], "authorId": "8k75S1ntV9GW", "authorSlug": "abraham-lincoln", "length": 48 @@ -2595,7 +3202,9 @@ "_id": "UG8slERojHSm", "content": "We make a living by what we get, but we make a life by what we give.", "author": "Winston Churchill", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "FEM0nF4bj5r7", "authorSlug": "winston-churchill", "length": 68 @@ -2604,7 +3213,9 @@ "_id": "CPwqIPvFW_", "content": "I define friendship as a bond that transcends all barriers. When you are ready to expect anything and everything from friends, good, bad or ugly... that's what I call true friendship.", "author": "Harbhajan Singh", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "BS1P-Cx9G", "authorSlug": "harbhajan-singh", "length": 183 @@ -2613,7 +3224,9 @@ "_id": "MJmapSmIK3", "content": "The more sand that has escaped from the hourglass of our life, the clearer we should see through it.", "author": "Jean-Paul Sartre", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "JDgQh4oi5vVt", "authorSlug": "jean-paul-sartre", "length": 100 @@ -2622,7 +3235,10 @@ "_id": "Z_9VClTWUcSv", "content": "Trust only movement. Life happens at the level of events, not of words. Trust movement.", "author": "Alfred Adler", - "tags": ["famous-quotes", "life"], + "tags": [ + "famous-quotes", + "life" + ], "authorId": "tNaHUH10_lky", "authorSlug": "alfred-adler", "length": 87 @@ -2631,7 +3247,9 @@ "_id": "eoqYvztdD6Xo", "content": "You cannot travel the path until you have become the path itself.", "author": "Buddha", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "sUNjshHENA05", "authorSlug": "buddha", "length": 65 @@ -2640,7 +3258,9 @@ "_id": "u3yMrJpE9TSf", "content": "Of course there is no formula for success except perhaps an unconditional acceptance of life and what it brings.", "author": "Arthur Rubinstein", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "KKoxEah_YUax", "authorSlug": "arthur-rubinstein", "length": 112 @@ -2649,7 +3269,9 @@ "_id": "PCE3W7VuJfnu", "content": "There is nothing so useless as doing efficiently that which should not be done at all.", "author": "Peter Drucker", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "01aQwjpXclCh", "authorSlug": "peter-drucker", "length": 86 @@ -2658,7 +3280,9 @@ "_id": "PTVGpNzPj2ip", "content": "Im not in this world to live up to your expectations and you're not in this world to live up to mine.", "author": "Bruce Lee", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "raaFe2cXACnG", "authorSlug": "bruce-lee", "length": 101 @@ -2667,7 +3291,9 @@ "_id": "hwA4bNHgJPCa", "content": "Impossibilities are merely things which we have not yet learned.", "author": "Charles W. Chesnutt", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ATQjES-_ebWe", "authorSlug": "charles-w-chesnutt", "length": 64 @@ -2676,7 +3302,9 @@ "_id": "GnTIVgh6A0KW", "content": "Work while you have the light. You are responsible for the talent that has been entrusted to you.", "author": "Henri-Frédéric Amiel", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "AwZcCJD8ICBi", "authorSlug": "henri-frederic-amiel", "length": 97 @@ -2685,7 +3313,9 @@ "_id": "I6Dxu4p7VBt", "content": "To fly, we have to have resistance.", "author": "Maya Lin", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "lySRln7fv5Tr", "authorSlug": "maya-lin", "length": 35 @@ -2694,7 +3324,9 @@ "_id": "WJ5c36Guag1", "content": "I will give you a definition of a proud man: he is a man who has neither vanity nor wisdom one filled with hatreds cannot be vain, neither can he be wise.", "author": "John Keats", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "mXQPMe-Kg_wJ", "authorSlug": "john-keats", "length": 154 @@ -2703,7 +3335,9 @@ "_id": "GwbIPJqtzp", "content": "Wisdom has never made a bigot, but learning has.", "author": "Josh Billings", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "OIytiShDXY", "authorSlug": "josh-billings", "length": 48 @@ -2712,7 +3346,9 @@ "_id": "TLfamqFncI8p", "content": "There are no failures. Just experiences and your reactions to them.", "author": "Tom Krause", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "qhAZivyJJPzu", "authorSlug": "tom-krause", "length": 67 @@ -2721,7 +3357,9 @@ "_id": "1YubdPwZ3e", "content": "It is good even for old men to learn wisdom.", "author": "Aeschylus", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "ossJxB6-1", "authorSlug": "aeschylus", "length": 44 @@ -2730,7 +3368,9 @@ "_id": "fjzdxv7x2mJd", "content": "For every failure, there's an alternative course of action. You just have to find it. When you come to a roadblock, take a detour.", "author": "Mary Kay Ash", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "I0bbus5BtlYr", "authorSlug": "mary-kay-ash", "length": 130 @@ -2739,7 +3379,9 @@ "_id": "Z_czr8xado", "content": "Logic is the beginning of wisdom, not the end.", "author": "Leonard Nimoy", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "WTcob-0b_G", "authorSlug": "leonard-nimoy", "length": 46 @@ -2748,7 +3390,9 @@ "_id": "0PnL1GPc2muX", "content": "The greatest good you can do for another is not just share your riches, but reveal to them their own.", "author": "Benjamin Disraeli", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "xAJjt7yV9kyd", "authorSlug": "benjamin-disraeli", "length": 101 @@ -2757,7 +3401,9 @@ "_id": "u5VbhYCVo5Jz", "content": "I cannot give you the formula for success, but I can give you the formula for failure: which is: Try to please everybody.", "author": "Herbert Bayard Swope", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "n4zQiBQc-Ifw", "authorSlug": "herbert-bayard-swope", "length": 121 @@ -2766,7 +3412,9 @@ "_id": "BsZbjg9hrAVI", "content": "If you seek truth you will not seek victory by dishonourable means, and if you find truth you will become invincible.", "author": "Epictetus", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "HZHaUuiyIJPp", "authorSlug": "epictetus", "length": 117 @@ -2775,7 +3423,9 @@ "_id": "c6xalG3uXL4n", "content": "Imagination is the living power and prime agent of all human perception.", "author": "Samuel Taylor Coleridge", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "LAOTQVvhPNFp", "authorSlug": "samuel-taylor-coleridge", "length": 72 @@ -2784,7 +3434,9 @@ "_id": "Q0q53LrtbHm0", "content": "Those that know, do. Those that understand, teach.", "author": "Aristotle", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "Z8j-PYl90GLF", "authorSlug": "aristotle", "length": 50 @@ -2793,7 +3445,9 @@ "_id": "ComoDwgAEY2", "content": "Good timber does not grow with ease; the stronger the wind, the stronger the trees.", "author": "J. Willard Marriott", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "v7osO_Koh9Ik", "authorSlug": "j-willard-marriott", "length": 83 @@ -2802,7 +3456,9 @@ "_id": "Dqqwo96Tximg", "content": "A man may fulfil the object of his existence by asking a question he cannot answer, and attempting a task he cannot achieve.", "author": "Oliver Wendell Holmes Jr.", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "qa_R4Oc97JXq", "authorSlug": "oliver-wendell-holmes-jr", "length": 124 @@ -2811,7 +3467,9 @@ "_id": "V7HF0nCuOodn", "content": "Gratitude makes sense of our past, brings peace for today, and creates a vision for tomorrow.", "author": "Melody Beattie", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "_rCUwICbu1j2", "authorSlug": "melody-beattie", "length": 93 @@ -2820,7 +3478,9 @@ "_id": "ISX_zfx8abzc", "content": "There is no duty we so underrate as the duty of being happy. By being happy we sow anonymous benefits upon the world.", "author": "Robert Louis Stevenson", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "qKwGWW8zDYtf", "authorSlug": "robert-louis-stevenson", "length": 117 @@ -2829,7 +3489,9 @@ "_id": "6Kl3UT6ULk", "content": "Wisdom, compassion, and courage are the three universally recognized moral qualities of men.", "author": "Confucius", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "ropvZKOXYhLr", "authorSlug": "confucius", "length": 92 @@ -2838,7 +3500,9 @@ "_id": "0FJtHaraIRKe", "content": "We shall never know all the good that a simple smile can do.", "author": "Mother Teresa", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "y7OXxqCaXKVa", "authorSlug": "mother-teresa", "length": 60 @@ -2847,7 +3511,9 @@ "_id": "h3vqfIeuhcho", "content": "The best thing in every noble dream is the dreamer...", "author": "Moncure D. Conway", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ZpPm6ZTW9GLu", "authorSlug": "moncure-d-conway", "length": 53 @@ -2856,7 +3522,9 @@ "_id": "hUUF65Y82g7", "content": "Life shrinks or expands in proportion to one's courage.", "author": "Anaïs Nin", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "MMvH-cw49Y9t", "authorSlug": "anais-nin", "length": 55 @@ -2865,7 +3533,9 @@ "_id": "y1RIkUSWFpl", "content": "The greatest remedy for anger is delay.", "author": "Seneca the Younger", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "TyeFCuRgEQjD", "authorSlug": "seneca-the-younger", "length": 39 @@ -2874,7 +3544,9 @@ "_id": "ehBmRJ9WwXKK", "content": "A garden is always a series of losses set against a few triumphs, like life itself.", "author": "May Sarton", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "aLFrwqpJQ9zs", "authorSlug": "may-sarton", "length": 83 @@ -2883,7 +3555,9 @@ "_id": "t7STDz8m6QIp", "content": "The wisest men follow their own direction.", "author": "Euripides", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "yVMYpy-GWWFq", "authorSlug": "euripides", "length": 42 @@ -2892,7 +3566,9 @@ "_id": "lvcJukDLhxz3", "content": "The difference between what we do and what we are capable of doing would suffice to solve most of the worlds problems.", "author": "Mahatma Gandhi", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "4J6_dx73YbT5", "authorSlug": "mahatma-gandhi", "length": 118 @@ -2901,7 +3577,9 @@ "_id": "COOYD278-JAr", "content": "The superior man is modest in his speech, but exceeds in his actions.", "author": "Confucius", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ropvZKOXYhLr", "authorSlug": "confucius", "length": 69 @@ -2910,7 +3588,9 @@ "_id": "XQKtTxtLnshu", "content": "Change will not come if we wait for some other person or some other time. We are the ones we've been waiting for. We are the change that we seek.", "author": "Barack Obama", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "Xt2CsBHup4NB", "authorSlug": "barack-obama", "length": 145 @@ -2919,7 +3599,9 @@ "_id": "IxrwsheO2w6", "content": "Wherever you go, go with all your heart.", "author": "Confucius", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ropvZKOXYhLr", "authorSlug": "confucius", "length": 40 @@ -2928,7 +3610,9 @@ "_id": "g4URs5hS3Taq", "content": "A life spent making mistakes is not only more honourable, but more useful than a life spent doing nothing.", "author": "George Bernard Shaw", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "zKfoVjq84t9O", "authorSlug": "george-bernard-shaw", "length": 106 @@ -2937,7 +3621,9 @@ "_id": "IROEi_B-5kj", "content": "If you set out to be liked, you would be prepared to compromise on anything at any time, and you would achieve nothing.", "author": "Margaret Thatcher", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "WVe0z8ZowG", "authorSlug": "margaret-thatcher", "length": 119 @@ -2946,7 +3632,9 @@ "_id": "t3KpUGU3apks", "content": "Be like the flower, turn your face to the sun.", "author": "Kahlil Gibran", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "h05GYnKzckM3", "authorSlug": "kahlil-gibran", "length": 46 @@ -2955,7 +3643,9 @@ "_id": "N6l6bDDcBP", "content": "Friendship multiplies the good of life and divides the evil.", "author": "Baltasar Gracián", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "NOw0qSU2RzF5", "authorSlug": "baltasar-gracian", "length": 60 @@ -2964,7 +3654,9 @@ "_id": "SQxIxT9EoucK", "content": "Kindness is the golden chain by which society is bound together.", "author": "Johann Wolfgang von Goethe", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "aW1ZR-8LuS28", "authorSlug": "johann-wolfgang-von-goethe", "length": 64 @@ -2973,7 +3665,9 @@ "_id": "ay74-DkPYiOq", "content": "Sometimes your joy is the source of your smile, but sometimes your smile can be the source of your joy.", "author": "Thích Nhất Hạnh", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "N0pHADD097gY", "authorSlug": "thich-nhất-hạnh", "length": 103 @@ -2982,7 +3676,9 @@ "_id": "amF1FDsLD6", "content": "A friend is someone who gives you total freedom to be yourself.", "author": "Jim Morrison", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "Rt3UK3h72", "authorSlug": "jim-morrison", "length": 63 @@ -2991,7 +3687,9 @@ "_id": "eWtR9nXnZ", "content": "Do the difficult things while they are easy and do the great things while they are small. A journey of a thousand miles must begin with a single step.", "author": "Laozi", - "tags": ["inspirational"], + "tags": [ + "inspirational" + ], "authorId": "qsaptKSHuLDU", "authorSlug": "laozi", "length": 150 @@ -3000,7 +3698,9 @@ "_id": "VHFFYD5KcXN6", "content": "I have done my best: that is about all the philosophy of living one needs.", "author": "Lin Yutang", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "99cr5SHT23eb", "authorSlug": "lin-yutang", "length": 74 @@ -3009,7 +3709,9 @@ "_id": "oQnbzQ_W0gJS", "content": "Never mistake motion for action.", "author": "Ernest Hemingway", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "QEUcQP7NFqk7", "authorSlug": "ernest-hemingway", "length": 32 @@ -3018,7 +3720,9 @@ "_id": "8IyWC1hl--Je", "content": "You, yourself, as much as anybody in the entire universe, deserve your love and affection.", "author": "Buddha", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "sUNjshHENA05", "authorSlug": "buddha", "length": 90 @@ -3027,7 +3731,9 @@ "_id": "8TXdurkixxgm", "content": "Ask yourself the secret of your success. Listen to your answer, and practice it.", "author": "Richard Bach", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "t9lNqDH0TmYo", "authorSlug": "richard-bach", "length": 80 @@ -3036,7 +3742,9 @@ "_id": "-ZfnGHueyp", "content": "Give me a lever long enough and a fulcrum on which to place it, and I shall move the world.", "author": "Archimedes", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "vKwA_aAsd", "authorSlug": "archimedes", "length": 91 @@ -3045,7 +3753,9 @@ "_id": "NN3kZRTt4V", "content": "Holy wisdom confounds Satan and all his wickednesses.", "author": "Francis of Assisi", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "axdVU-ILRg-V", "authorSlug": "francis-of-assisi", "length": 53 @@ -3054,7 +3764,9 @@ "_id": "0I3MzxBI2Cyo", "content": "Life is a succession of lessons, which must be lived to be understood.", "author": "Ralph Waldo Emerson", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "xEVEeQ7m4KQT", "authorSlug": "ralph-waldo-emerson", "length": 70 @@ -3063,7 +3775,9 @@ "_id": "x4gbVTU0f3TW", "content": "The only limit to your impact is your imagination and commitment.", "author": "Tony Robbins", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "IkUGwHTcaXs9", "authorSlug": "tony-robbins", "length": 65 @@ -3072,7 +3786,9 @@ "_id": "R80GBolDfAev", "content": "Life is like a sewer. What you get out of it depends on what you put into it.", "author": "Tom Lehrer", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "Gfzo6r8aTiV0", "authorSlug": "tom-lehrer", "length": 77 @@ -3081,7 +3797,9 @@ "_id": "D_S3tmLBb8", "content": "A man must be big enough to admit his mistakes, smart enough to profit from them, and strong enough to correct them.", "author": "John C. Maxwell", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "kq5XYblNhYOH", "authorSlug": "john-c-maxwell", "length": 116 @@ -3090,7 +3808,9 @@ "_id": "p8BRVIq75p-D", "content": "If you have made mistakes, there is always another chance for you. You may have a fresh start any moment you choose.", "author": "Mary Pickford", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "9bUEqH8C5ewT", "authorSlug": "mary-pickford", "length": 116 @@ -3099,7 +3819,9 @@ "_id": "ahrACwvb84Z4", "content": "I want you to be everything that's you, deep at the center of your being.", "author": "Confucius", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ropvZKOXYhLr", "authorSlug": "confucius", "length": 73 @@ -3108,7 +3830,9 @@ "_id": "-DUavsjRcctX", "content": "Can you imagine what I would do if I could do all I can?", "author": "Sun Tzu", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "G-QcoRJkxKHQ", "authorSlug": "sun-tzu", "length": 56 @@ -3117,7 +3841,9 @@ "_id": "MFFCMyuycWf", "content": "May our hearts garden of awakening bloom with hundreds of flowers.", "author": "Thích Nhất Hạnh", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "N0pHADD097gY", "authorSlug": "thich-nhất-hạnh", "length": 66 @@ -3126,7 +3852,9 @@ "_id": "u80cGRXHeCeH", "content": "When you see a good person, think of becoming like him. When you see someone not so good, reflect on your own weak points.", "author": "Confucius", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ropvZKOXYhLr", "authorSlug": "confucius", "length": 122 @@ -3135,7 +3863,9 @@ "_id": "qgRPI2mMJRZv", "content": "A man who doesn't trust himself can never really trust anyone else.", "author": "Jean François Paul de Gondi", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "Ch_fdSLdPZCo", "authorSlug": "jean-francois-paul-de-gondi", "length": 67 @@ -3144,7 +3874,9 @@ "_id": "H_FnIEJXHrGU", "content": "When you dance, your purpose is not to get to a certain place on the floor. It's to enjoy each step along the way.", "author": "Wayne Dyer", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "CLxflG5QMMjg", "authorSlug": "wayne-dyer", "length": 114 @@ -3153,7 +3885,9 @@ "_id": "AKE0_H6LR05G", "content": "Our lives are a sum total of the choices we have made.", "author": "Wayne Dyer", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "CLxflG5QMMjg", "authorSlug": "wayne-dyer", "length": 54 @@ -3162,7 +3896,9 @@ "_id": "eJ2Odi1UbNvj", "content": "It is on our failures that we base a new and different and better success.", "author": "Havelock Ellis", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "sZYcfd1P_aHz", "authorSlug": "havelock-ellis", "length": 74 @@ -3171,7 +3907,9 @@ "_id": "gO2rEcTrwLo7", "content": "When fate hands us a lemon, lets try to make lemonade.", "author": "Dale Carnegie", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "D1RNG5b9TsXN", "authorSlug": "dale-carnegie", "length": 54 @@ -3180,7 +3918,9 @@ "_id": "FO4v4ZdByU", "content": "A man cannot be said to succeed in this life who does not satisfy one friend.", "author": "Henry David Thoreau", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "NrthgQlym1Ji", "authorSlug": "henry-david-thoreau", "length": 77 @@ -3189,7 +3929,9 @@ "_id": "3Jk60HlbZFu9", "content": "Every great dream begins with a dreamer. Always remember, you have within you the strength, the patience, and the passion to reach for the stars to change the world.", "author": "Harriet Tubman", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "_z5JX-jIyYsz", "authorSlug": "harriet-tubman", "length": 165 @@ -3198,7 +3940,10 @@ "_id": "0lnHVeiNr0un", "content": "They must often change, who would be constant in happiness or wisdom.", "author": "Confucius", - "tags": ["famous-quotes", "wisdom"], + "tags": [ + "famous-quotes", + "wisdom" + ], "authorId": "ropvZKOXYhLr", "authorSlug": "confucius", "length": 69 @@ -3207,7 +3952,9 @@ "_id": "Ov1F2nueFuMN", "content": "Silence is a source of great strength.", "author": "Laozi", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "qsaptKSHuLDU", "authorSlug": "laozi", "length": 38 @@ -3216,7 +3963,9 @@ "_id": "Aya0eLpghjxG", "content": "The purpose of learning is growth, and our minds, unlike our bodies, can continue growing as we continue to live.", "author": "Mortimer J. Adler", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "tjrclR27CkGm", "authorSlug": "mortimer-j-adler", "length": 113 @@ -3225,7 +3974,9 @@ "_id": "Qkl55U0twCr", "content": "Don't cry because it's over. Smile because it happened.", "author": "Dr. Seuss", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "oHmf28pJEUHo", "authorSlug": "dr-seuss", "length": 55 @@ -3234,7 +3985,9 @@ "_id": "p3WMuYECz33S", "content": "The meaning I picked, the one that changed my life: Overcome fear, behold wonder.", "author": "Richard Bach", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "t9lNqDH0TmYo", "authorSlug": "richard-bach", "length": 81 @@ -3243,7 +3996,9 @@ "_id": "yzPY72AXGkD", "content": "The cause is hidden. The effect is visible to all.", "author": "Ovid", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "f9utPohz0fgH", "authorSlug": "ovid", "length": 50 @@ -3252,7 +4007,9 @@ "_id": "fAyIjkZePx", "content": "He who learns must suffer. And even in our sleep pain that cannot forget falls drop by drop upon the heart, and in our own despair, against our will, comes wisdom to us by the awful grace of God.", "author": "Aeschylus", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "ossJxB6-1", "authorSlug": "aeschylus", "length": 195 @@ -3261,7 +4018,9 @@ "_id": "PnQ8g2gz_sY2", "content": "I never worry about action, but only inaction.", "author": "Winston Churchill", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "FEM0nF4bj5r7", "authorSlug": "winston-churchill", "length": 46 @@ -3270,7 +4029,9 @@ "_id": "SBqsC7DOKoC0", "content": "At the center of your being you have the answer; you know who you are and you know what you want.", "author": "Laozi", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "qsaptKSHuLDU", "authorSlug": "laozi", "length": 97 @@ -3279,7 +4040,10 @@ "_id": "ykXP-CFk_G", "content": "If you're trying to achieve, there will be roadblocks. I've had them; everybody has had them. But obstacles don't have to stop you. If you run into a wall, don't turn around and give up. Figure out how to climb it, go through it, or work around it.", "author": "Michael Jordan", - "tags": ["wisdom", "inspirational"], + "tags": [ + "wisdom", + "inspirational" + ], "authorId": "XU7cPmNoohKd", "authorSlug": "michael-jordan", "length": 248 @@ -3288,7 +4052,9 @@ "_id": "5lsIG8ZCgvy4", "content": "You will not be punished for your anger, you will be punished by your anger.", "author": "Buddha", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "sUNjshHENA05", "authorSlug": "buddha", "length": 76 @@ -3297,7 +4063,9 @@ "_id": "NcBJY-YJ58W", "content": "Problems are only opportunities with thorns on them.", "author": "Hugh Miller", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ZYuzRDdhCJIh", "authorSlug": "hugh-miller", "length": 52 @@ -3306,7 +4074,9 @@ "_id": "oyagVQRGL7", "content": "Forgiveness is that subtle thread that binds both love and friendship. Without forgiveness, you may not even have a child one day.", "author": "George Foreman", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "3RxG2j5eRN", "authorSlug": "george-foreman", "length": 130 @@ -3315,7 +4085,9 @@ "_id": "NQwosr41uhx0", "content": "We cannot do everything at once, but we can do something at once.", "author": "Calvin Coolidge", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "bUWx0bMUCf8X", "authorSlug": "calvin-coolidge", "length": 65 @@ -3324,7 +4096,9 @@ "_id": "BLQOsYJz2jn1", "content": "Consider that not only do negative thoughts and emotions destroy our experience of peace, they also undermine our health.", "author": "Dalai Lama", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "OPVjtVVBVW5h", "authorSlug": "dalai-lama", "length": 121 @@ -3333,7 +4107,9 @@ "_id": "OawbCWOFWi", "content": "The doorstep to the temple of wisdom is a knowledge of our own ignorance.", "author": "Benjamin Franklin", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "xkvcrqREjoOB", "authorSlug": "benjamin-franklin", "length": 73 @@ -3342,7 +4118,9 @@ "_id": "eulsh4ijgp", "content": "He is no fool who gives what he cannot keep to gain what he cannot lose.", "author": "Jim Elliot", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "wlnB5ark0s", "authorSlug": "jim-elliot", "length": 72 @@ -3351,7 +4129,9 @@ "_id": "I8UvAqPYmS", "content": "Between saying and doing, many a pair of shoes is worn out.", "author": "Iris Murdoch", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "v2Jk1rHcsGne", "authorSlug": "iris-murdoch", "length": 59 @@ -3360,7 +4140,9 @@ "_id": "AJB3CSbvVFm", "content": "If the shoe doesn't fit, must we change the foot?", "author": "Gloria Steinem", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "6T6dO1lyfHYK", "authorSlug": "gloria-steinem", "length": 49 @@ -3369,7 +4151,9 @@ "_id": "yOGaxdDvToGD", "content": "When you come to the end of your rope, tie a knot and hang on.", "author": "Franklin D. Roosevelt", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ejqEsEP8JKVz", "authorSlug": "franklin-d-roosevelt", "length": 62 @@ -3378,7 +4162,9 @@ "_id": "1RmEkIqT9Cyn", "content": "Nothing is at last sacred but the integrity of your own mind.", "author": "Ralph Waldo Emerson", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "xEVEeQ7m4KQT", "authorSlug": "ralph-waldo-emerson", "length": 61 @@ -3387,7 +4173,9 @@ "_id": "_mOXeW2AnSF", "content": "One today is worth two tomorrows.", "author": "Benjamin Franklin", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "xkvcrqREjoOB", "authorSlug": "benjamin-franklin", "length": 33 @@ -3396,7 +4184,9 @@ "_id": "GhOSPuEiMn", "content": "All of our technology is completely unnecessary to a happy life.", "author": "Tom Hodgkinson", - "tags": ["technology"], + "tags": [ + "technology" + ], "authorId": "mkjqOol8P-", "authorSlug": "tom-hodgkinson", "length": 64 @@ -3405,7 +4195,9 @@ "_id": "-wz9LjinT4y9", "content": "It is fatal to enter any war without the will to win it.", "author": "Douglas MacArthur", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "xquqK-EhBty5", "authorSlug": "douglas-mac-arthur", "length": 56 @@ -3414,7 +4206,9 @@ "_id": "y7YpPYyHzK6", "content": "Absence makes the heart grow fonder.", "author": "Thomas Haynes Bayly", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "z0LsGNVaG28E", "authorSlug": "thomas-haynes-bayly", "length": 36 @@ -3423,7 +4217,9 @@ "_id": "XlBqWMF7hx5z", "content": "When you judge another, you do not define them, you define yourself.", "author": "Wayne Dyer", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "CLxflG5QMMjg", "authorSlug": "wayne-dyer", "length": 68 @@ -3432,7 +4228,9 @@ "_id": "3qJt6fZmCanr", "content": "Setting an example is not the main means of influencing another, it is the only means.", "author": "Albert Einstein", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "L76FRuEeGIUJ", "authorSlug": "albert-einstein", "length": 86 @@ -3441,7 +4239,9 @@ "_id": "gwQJOur7lHXd", "content": "Always be mindful of the kindness and not the faults of others.", "author": "Buddha", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "sUNjshHENA05", "authorSlug": "buddha", "length": 63 @@ -3450,7 +4250,9 @@ "_id": "HuuK4BGIf2", "content": "Never reach out your hand unless you're willing to extend an arm.", "author": "Pope Paul VI", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "lZLSkbMoC0", "authorSlug": "pope-paul-vi", "length": 65 @@ -3459,7 +4261,9 @@ "_id": "UXR4urX1Deim", "content": "It's important to know that words don't move mountains. Work, exacting work moves mountains.", "author": "Danilo Dolci", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "H9V0Xl8JL5Ui", "authorSlug": "danilo-dolci", "length": 92 @@ -3468,7 +4272,9 @@ "_id": "lO_ELfmBRTMq", "content": "You must do the things you think you cannot do.", "author": "Eleanor Roosevelt", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "1X7NWb1oyd21", "authorSlug": "eleanor-roosevelt", "length": 47 @@ -3477,7 +4283,9 @@ "_id": "Yk5zlxPAS_M7", "content": "I hear and I forget. I see and I remember. I do and I understand.", "author": "Confucius", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ropvZKOXYhLr", "authorSlug": "confucius", "length": 65 @@ -3486,7 +4294,9 @@ "_id": "VPGzjvTJI7Uj", "content": "All fixed set patterns are incapable of adaptability or pliability. The truth is outside of all fixed patterns.", "author": "Bruce Lee", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "raaFe2cXACnG", "authorSlug": "bruce-lee", "length": 111 @@ -3495,7 +4305,9 @@ "_id": "WD1Icqr-7J", "content": "True happiness arises, in the first place, from the enjoyment of one's self, and in the next, from the friendship and conversation of a few select companions.", "author": "Joseph Addison", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "Ra04vOONY8", "authorSlug": "joseph-addison", "length": 158 @@ -3504,7 +4316,9 @@ "_id": "4AZF5nEIPN9", "content": "To succeed, we must first believe that we can.", "author": "Michael Korda", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "YXZuWxcWpZDE", "authorSlug": "michael-korda", "length": 46 @@ -3513,7 +4327,9 @@ "_id": "t7L2YkK_2QWr", "content": "As you think, so shall you become.", "author": "Bruce Lee", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "raaFe2cXACnG", "authorSlug": "bruce-lee", "length": 34 @@ -3522,7 +4338,9 @@ "_id": "fXCc-Adzx2i5", "content": "The only real failure in life is not to be true to the best one knows.", "author": "Buddha", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "sUNjshHENA05", "authorSlug": "buddha", "length": 70 @@ -3531,7 +4349,9 @@ "_id": "2LmdIfvSmBlD", "content": "Before you put on a frown, make absolutely sure there are no smiles available.", "author": "James M. Beggs", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "gyl8VUOxfm2W", "authorSlug": "james-m-beggs", "length": 78 @@ -3540,7 +4360,9 @@ "_id": "JBJV1OZ3ARcw", "content": "I have no special talent. I am only passionately curious.", "author": "Albert Einstein", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "L76FRuEeGIUJ", "authorSlug": "albert-einstein", "length": 57 @@ -3549,7 +4371,11 @@ "_id": "f1aZRYvKb7Ga", "content": "You have to do your own growing no matter how tall your grandfather was.", "author": "Abraham Lincoln", - "tags": ["famous-quotes", "life", "wisdom"], + "tags": [ + "famous-quotes", + "life", + "wisdom" + ], "authorId": "8k75S1ntV9GW", "authorSlug": "abraham-lincoln", "length": 72 @@ -3558,7 +4384,9 @@ "_id": "Y_UmXWJD0al", "content": "Life is movement-we breathe, we eat, we walk, we move!", "author": "John Pierrakos", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "Sk1xgdhktB-8", "authorSlug": "john-pierrakos", "length": 54 @@ -3567,7 +4395,9 @@ "_id": "y1yjB7RbU_Aq", "content": "Small opportunities are often the beginning of great enterprises.", "author": "Demosthenes", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "j63fSK3zuMaj", "authorSlug": "demosthenes", "length": 65 @@ -3576,7 +4406,9 @@ "_id": "CrSk004mchGX", "content": "What you do not want done to yourself, do not do to others.", "author": "Confucius", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ropvZKOXYhLr", "authorSlug": "confucius", "length": 59 @@ -3585,7 +4417,9 @@ "_id": "IPv8r6n1dC", "content": "The smallest deed is better than the greatest intention.", "author": "John Burroughs", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "7mJtbQOga9", "authorSlug": "john-burroughs", "length": 56 @@ -3594,7 +4428,9 @@ "_id": "TdIyDe0XX542", "content": "Learning without reflection is a waste, reflection without learning is dangerous.", "author": "Confucius", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ropvZKOXYhLr", "authorSlug": "confucius", "length": 81 @@ -3603,7 +4439,9 @@ "_id": "kYh28vSUa2CE", "content": "Successful people ask better questions, and as a result, they get better answers.", "author": "Tony Robbins", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "IkUGwHTcaXs9", "authorSlug": "tony-robbins", "length": 81 @@ -3612,7 +4450,9 @@ "_id": "1crYPFXZKUuv", "content": "Blessed is the man who expects nothing, for he shall never be disappointed.", "author": "Alexander Pope", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "_gz-cfmqA1mr", "authorSlug": "alexander-pope", "length": 75 @@ -3621,7 +4461,9 @@ "_id": "4XsKZeLAUwZ6", "content": "Be not afraid of greatness: some are born great, some achieve greatness, and some have greatness thrust upon them.", "author": "William Shakespeare", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "5F2Uwpllj", "authorSlug": "william-shakespeare", "length": 114 @@ -3630,7 +4472,9 @@ "_id": "XxIfXFcublTz", "content": "Be faithful in small things because it is in them that your strength lies.", "author": "Mother Teresa", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "y7OXxqCaXKVa", "authorSlug": "mother-teresa", "length": 74 @@ -3639,7 +4483,11 @@ "_id": "c2crwHSzalPu", "content": "Difficulties are meant to rouse, not discourage. The human spirit is to grow strong by conflict.", "author": "William Ellery Channing", - "tags": ["famous-quotes", "inspirational", "power-quotes"], + "tags": [ + "famous-quotes", + "inspirational", + "power-quotes" + ], "authorId": "gli4tf73TPql", "authorSlug": "william-ellery-channing", "length": 96 @@ -3648,7 +4496,9 @@ "_id": "82Ucdsd1amiC", "content": "Anybody can make history. Only a great man can write it.", "author": "Oscar Wilde", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "yw5O7wULaKfx", "authorSlug": "oscar-wilde", "length": 56 @@ -3657,7 +4507,9 @@ "_id": "iCcV8TjAAZ71", "content": "Doing what you love is the cornerstone of having abundance in your life.", "author": "Wayne Dyer", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "CLxflG5QMMjg", "authorSlug": "wayne-dyer", "length": 72 @@ -3666,7 +4518,9 @@ "_id": "hSxHK-iwap5", "content": "No alibi will save you from accepting the responsibility.", "author": "Napoleon Hill", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "N4h708MyElyG", "authorSlug": "napoleon-hill", "length": 57 @@ -3675,7 +4529,9 @@ "_id": "a7lEejDkHdFL", "content": "Everything you are against weakens you. Everything you are for empowers you.", "author": "Wayne Dyer", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "CLxflG5QMMjg", "authorSlug": "wayne-dyer", "length": 76 @@ -3684,7 +4540,9 @@ "_id": "zDV7RR6Y-wvZ", "content": "In a controversy the instant we feel anger we have already ceased striving for the truth, and have begun striving for ourselves.", "author": "Buddha", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "sUNjshHENA05", "authorSlug": "buddha", "length": 128 @@ -3693,7 +4551,9 @@ "_id": "mhBblBxFy-nH", "content": "The world is round and the place which may seem like the end may also be the beginning.", "author": "Ivy Baker Priest", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "CJxFJUe5dF3J", "authorSlug": "ivy-baker-priest", "length": 87 @@ -3702,7 +4562,9 @@ "_id": "SPqg3-WqniZ", "content": "I'd rather regret the things I've done than regret the things I haven't done.", "author": "Lucille Ball", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "Ub_gH1IJ-HBm", "authorSlug": "lucille-ball", "length": 77 @@ -3711,7 +4573,9 @@ "_id": "b1idr5ua4wW", "content": "There is more wisdom in your body than in your deepest philosophy.", "author": "Friedrich Nietzsche", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "g-zHV1myc_8Y", "authorSlug": "friedrich-nietzsche", "length": 66 @@ -3720,7 +4584,9 @@ "_id": "MLmhf5Scxikl", "content": "Time stays long enough for anyone who will use it.", "author": "Leonardo da Vinci", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "v-beNXVk_I9v", "authorSlug": "leonardo-da-vinci", "length": 50 @@ -3729,7 +4595,9 @@ "_id": "Aj1hWd83aS", "content": "It is only the great hearted who can be true friends. The mean and cowardly, Can never know what true friendship means.", "author": "Charles Kingsley", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "eDH_-mE56", "authorSlug": "charles-kingsley", "length": 119 @@ -3738,7 +4606,9 @@ "_id": "APsci40ULi", "content": "Technology frightens me to death. It’s designed by engineers to impress other engineers. And they always come with instruction booklets that are written by engineers for other engineers — which is why almost no technology ever works.", "author": "John Cleese", - "tags": ["technology"], + "tags": [ + "technology" + ], "authorId": "rp-2AvtbZ", "authorSlug": "john-cleese", "length": 233 @@ -3747,7 +4617,9 @@ "_id": "sKRDFZR86R5", "content": "I never see what has been done; I only see what remains to be done.", "author": "Marie Curie", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "Ayk4hyEX7Qbu", "authorSlug": "marie-curie", "length": 67 @@ -3756,7 +4628,9 @@ "_id": "4gJgNXPzK5", "content": "Even if you're on the right track, you'll get run over if you just sit there.", "author": "Will Rogers", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "7HShv87qgca6", "authorSlug": "will-rogers", "length": 77 @@ -3765,7 +4639,9 @@ "_id": "RnCP5T-HzwbJ", "content": "If we had no winter, the spring would not be so pleasant; if we did not sometimes taste of adversity, prosperity would not be so welcome.", "author": "Anne Bradstreet", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "hFlcETvnSTsM", "authorSlug": "anne-bradstreet", "length": 137 @@ -3774,7 +4650,9 @@ "_id": "IQyVmjKCY1", "content": "All human wisdom is summed up in two words; wait and hope.", "author": "Alexandre Dumas", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "9r41Szdxzw", "authorSlug": "alexandre-dumas", "length": 58 @@ -3783,7 +4661,9 @@ "_id": "19XnsDE_kpQq", "content": "You cannot step twice into the same river, for other waters are continually flowing in.", "author": "Heraclitus", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "4JthmAKT69gP", "authorSlug": "heraclitus", "length": 87 @@ -3792,7 +4672,10 @@ "_id": "kq_R7P1iSIm3", "content": "The secret of getting ahead is getting started.", "author": "Mark Twain", - "tags": ["famous-quotes", "inspirational"], + "tags": [ + "famous-quotes", + "inspirational" + ], "authorId": "zbADvkP0r05L", "authorSlug": "mark-twain", "length": 47 @@ -3801,7 +4684,9 @@ "_id": "4vBDcA9H-kG", "content": "No distance of place or lapse of time can lessen the friendship of those who are thoroughly persuaded of each other's worth.", "author": "Robert Southey", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "PPovMPyVTCuc", "authorSlug": "robert-southey", "length": 124 @@ -3810,7 +4695,9 @@ "_id": "AEocdFfGOhyx", "content": "What we see depends mainly on what we look for.", "author": "John Lubbock", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "UzFWyAKPulk8", "authorSlug": "john-lubbock", "length": 47 @@ -3819,7 +4706,9 @@ "_id": "bTpqZkd3K7", "content": "Knowledge is going to make you stronger. Knowledge is going to let you control your life. Knowledge is going to give you the wisdom to teach their children. Knowledge is the thing that makes you smile in the face of disaster.", "author": "Avery Brooks", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "oTy9bo88X7", "authorSlug": "avery-brooks", "length": 225 @@ -3828,7 +4717,9 @@ "_id": "8OBH14kq2G", "content": "Neatness begets order; but from order to taste there is the same difference as from taste to genius, or from love to friendship.", "author": "Johann Kaspar Lavater", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "zpMINfv_ur", "authorSlug": "johann-kaspar-lavater", "length": 128 @@ -3837,7 +4728,9 @@ "_id": "0mvbtxiIrRtQ", "content": "When I let go of what I am, I become what I might be.", "author": "Laozi", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "qsaptKSHuLDU", "authorSlug": "laozi", "length": 53 @@ -3846,7 +4739,9 @@ "_id": "o6XQ_Gzhxg", "content": "One's friends are that part of the human race with which one can be human.", "author": "George Santayana", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "EeYA_JAo0Iix", "authorSlug": "george-santayana", "length": 74 @@ -3855,7 +4750,9 @@ "_id": "B9UxMLiqU9H8", "content": "Beware of missing chances; otherwise it may be altogether too late some day.", "author": "Franz Liszt", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "3Ye538voL0N2", "authorSlug": "franz-liszt", "length": 76 @@ -3864,7 +4761,9 @@ "_id": "B4VtMmx3gG", "content": "Wisdom is the power to put our time and our knowledge to the proper use.", "author": "Thomas J. Watson", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "rDbLO_FIvo", "authorSlug": "thomas-j-watson", "length": 72 @@ -3873,7 +4772,9 @@ "_id": "iXtSYIGVbm", "content": "The strong bond of friendship is not always a balanced equation; friendship is not always about giving and taking in equal shares. Instead, friendship is grounded in a feeling that you know exactly who will be there for you when you need something, no matter what or when.", "author": "Simon Sinek", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "cvjhiGNS4", "authorSlug": "simon-sinek", "length": 272 @@ -3882,7 +4783,9 @@ "_id": "nv5eWGaFe892", "content": "I think somehow we learn who we really are and then live with that decision.", "author": "Eleanor Roosevelt", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "1X7NWb1oyd21", "authorSlug": "eleanor-roosevelt", "length": 76 @@ -3891,7 +4794,9 @@ "_id": "Fg4uCgQpOYMw", "content": "This is the final test of a gentleman: his respect for those who can be of no possible value to him.", "author": "William Lyon Phelps", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "uEcdD9tO9Xy1", "authorSlug": "william-lyon-phelps", "length": 100 @@ -3900,7 +4805,9 @@ "_id": "nkftU-0YuUP6", "content": "Courage is not the absence of fear, but simply moving on with dignity despite that fear.", "author": "Pat Riley", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "JENVe-QuUSP8", "authorSlug": "pat-riley", "length": 88 @@ -3909,7 +4816,9 @@ "_id": "Zbd2FOmfMJVJ", "content": "There is nothing like returning to a place that remains unchanged to find the ways in which you yourself have altered.", "author": "Nelson Mandela", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ubn8tDLlaqk6", "authorSlug": "nelson-mandela", "length": 118 @@ -3918,7 +4827,9 @@ "_id": "l3-XvfRVtd", "content": "Let my skin and sinews and bones dry up, together with all the flesh and blood of my body! I welcome it! But I will not move from this spot until I have attained the supreme and final wisdom.", "author": "Buddha", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "sUNjshHENA05", "authorSlug": "buddha", "length": 191 @@ -3927,7 +4838,9 @@ "_id": "wkkqY5x5kia3", "content": "There are basically two types of people. People who accomplish things, and people who claim to have accomplished things. The first group is less crowded.", "author": "Mark Twain", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "zbADvkP0r05L", "authorSlug": "mark-twain", "length": 153 @@ -3936,7 +4849,9 @@ "_id": "3tXfdExB8jB", "content": "From error to error one discovers the entire truth.", "author": "Sigmund Freud", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "S2-JbY3NzItd", "authorSlug": "sigmund-freud", "length": 51 @@ -3945,7 +4860,9 @@ "_id": "QEJsaQ4DbY-v", "content": "I am like a falling star who has finally found her place next to another in a lovely constellation, where we will sparkle in the heavens forever.", "author": "Amy Tan", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "PP1Z6EiXO-8z", "authorSlug": "amy-tan", "length": 145 @@ -3954,7 +4871,10 @@ "_id": "vuGBuD1oaev3", "content": "Do not go where the path may lead, go instead where there is no path and leave a trail.", "author": "Ralph Waldo Emerson", - "tags": ["famous-quotes", "wisdom"], + "tags": [ + "famous-quotes", + "wisdom" + ], "authorId": "xEVEeQ7m4KQT", "authorSlug": "ralph-waldo-emerson", "length": 87 @@ -3963,7 +4883,9 @@ "_id": "CwRoiaY5uW8", "content": "No snowflake in an avalanche ever feels responsible.", "author": "Voltaire", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ZyuVXKFVTZu8", "authorSlug": "voltaire", "length": 52 @@ -3972,7 +4894,9 @@ "_id": "GzemxoxHgF2P", "content": "What matters is the value we've created in our lives, the people we've made happy and how much we've grown as people.", "author": "Daisaku Ikeda", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "f4Q5BtDWomhv", "authorSlug": "daisaku-ikeda", "length": 117 @@ -3981,7 +4905,9 @@ "_id": "5ujpXxYvGfQp", "content": "Wrinkles should merely indicate where smiles have been.", "author": "Mark Twain", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "zbADvkP0r05L", "authorSlug": "mark-twain", "length": 55 @@ -3990,7 +4916,9 @@ "_id": "Xof9SNxItD8Y", "content": "Before you can inspire with emotion, you must be swamped with it yourself. Before you can move their tears, your own must flow. To convince them, you must yourself believe.", "author": "Winston Churchill", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "FEM0nF4bj5r7", "authorSlug": "winston-churchill", "length": 172 @@ -3999,7 +4927,11 @@ "_id": "RP2z5Ir_xwF2", "content": "When we seek to discover the best in others, we somehow bring out the best in ourselves.", "author": "William Arthur Ward", - "tags": ["famous-quotes", "friendship", "self-help"], + "tags": [ + "famous-quotes", + "friendship", + "self-help" + ], "authorId": "BbtbIJLprBVl", "authorSlug": "william-arthur-ward", "length": 88 @@ -4008,7 +4940,9 @@ "_id": "RrK_kU3Fjf0", "content": "Yesterdays home runs don't win today's games.", "author": "Babe Ruth", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "mYsdhXSSb8Ib", "authorSlug": "babe-ruth", "length": 45 @@ -4017,7 +4951,9 @@ "_id": "YB-FRt_brC", "content": "Wisdom and penetration are the fruit of experience, not the lessons of retirement and leisure. Great necessities call out great virtues.", "author": "Abigail Adams", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "82zk1b45Zn", "authorSlug": "abigail-adams", "length": 136 @@ -4026,7 +4962,9 @@ "_id": "RXBrRJcq1Cih", "content": "One must be fond of people and trust them if one is not to make a mess of life.", "author": "E. M. Forster", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "CTr4ZRc1dWiP", "authorSlug": "e-m-forster", "length": 79 @@ -4035,7 +4973,9 @@ "_id": "dyPLKxIFG-Sq", "content": "The only journey is the one within.", "author": "Rainer Maria Rilke", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "IyvPT1P373DE", "authorSlug": "rainer-maria-rilke", "length": 35 @@ -4044,7 +4984,9 @@ "_id": "rAIJZHn5TH", "content": "The differences between friends cannot but reinforce their friendship.", "author": "Mao Zedong", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "yIXUbkUQAc", "authorSlug": "mao-zedong", "length": 70 @@ -4053,7 +4995,10 @@ "_id": "tVqHnTXq3bDN", "content": "It is one of the blessings of old friends that you can afford to be stupid with them.", "author": "Ralph Waldo Emerson", - "tags": ["famous-quotes", "friendship"], + "tags": [ + "famous-quotes", + "friendship" + ], "authorId": "xEVEeQ7m4KQT", "authorSlug": "ralph-waldo-emerson", "length": 85 @@ -4062,7 +5007,9 @@ "_id": "d1a0cFxEb8Ng", "content": "The moment one gives close attention to anything, it becomes a mysterious, awesome, indescribably magnificent world in itself.", "author": "Henry Miller", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "baiPlUQWl8I-", "authorSlug": "henry-miller", "length": 126 @@ -4071,7 +5018,9 @@ "_id": "A5l8yCGO4BL5", "content": "Forgiveness is choosing to love. It is the first skill of self-giving love.", "author": "Mahatma Gandhi", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "4J6_dx73YbT5", "authorSlug": "mahatma-gandhi", "length": 75 @@ -4080,7 +5029,9 @@ "_id": "0Cel0Uy3XC", "content": "If a man does not make new acquaintances as he advances through life, he will soon find himself left alone. A man, sir, should keep his friendship in a constant repair.", "author": "Samuel Johnson", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "Nimgtrtvfbyx", "authorSlug": "samuel-johnson", "length": 168 @@ -4089,7 +5040,9 @@ "_id": "U50kYf5u3f4B", "content": "Life's most persistent and urgent question is, 'What are you doing for others?'", "author": "Martin Luther King Jr.", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "Af6UJFdH4IwV", "authorSlug": "martin-luther-king-jr", "length": 79 @@ -4098,7 +5051,9 @@ "_id": "TxvV88zUrVi3", "content": "Keep silence for the most part, and speak only when you must, and then briefly.", "author": "Epictetus", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "HZHaUuiyIJPp", "authorSlug": "epictetus", "length": 79 @@ -4107,7 +5062,9 @@ "_id": "2OVqy9KVYy3m", "content": "No one saves us but ourselves. No one can and no one may. We ourselves must walk the path.", "author": "Buddha", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "sUNjshHENA05", "authorSlug": "buddha", "length": 90 @@ -4116,7 +5073,9 @@ "_id": "KfOJkr869PQo", "content": "A hero is no braver than an ordinary man, but he is braver five minutes longer.", "author": "Ralph Waldo Emerson", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "xEVEeQ7m4KQT", "authorSlug": "ralph-waldo-emerson", "length": 79 @@ -4125,7 +5084,9 @@ "_id": "ZxKQ6LZn9nZl", "content": "The world has the habit of making room for the man whose actions show that he knows where he is going.", "author": "Napoleon Hill", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "N4h708MyElyG", "authorSlug": "napoleon-hill", "length": 102 @@ -4134,7 +5095,9 @@ "_id": "T6AMWsNRE5", "content": "Any sufficiently advanced technology is equivalent to magic.", "author": "Arthur C. Clarke", - "tags": ["technology"], + "tags": [ + "technology" + ], "authorId": "1QYR63wh3", "authorSlug": "arthur-c-clarke", "length": 60 @@ -4143,7 +5106,9 @@ "_id": "LVmRBE6cytXv", "content": "Reason and free inquiry are the only effectual agents against error.", "author": "Thomas Jefferson", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "Zy4xV5ItRxmv", "authorSlug": "thomas-jefferson", "length": 68 @@ -4152,7 +5117,9 @@ "_id": "Z5aMw6Z1KFjp", "content": "It is very easy to forgive others their mistakes; it takes more grit to forgive them for having witnessed your own.", "author": "Jessamyn West", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "aMST-Uqfik3g", "authorSlug": "jessamyn-west", "length": 115 @@ -4161,7 +5128,9 @@ "_id": "-p4UJJtG2e0g", "content": "Knowledge rests not upon truth alone, but upon error also.", "author": "Carl Jung", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "-LYBJJujV7RL", "authorSlug": "carl-jung", "length": 58 @@ -4170,7 +5139,9 @@ "_id": "rPhZvCjp1t8J", "content": "Remember that sometimes not getting what you want is a wonderful stroke of luck.", "author": "Dalai Lama", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "OPVjtVVBVW5h", "authorSlug": "dalai-lama", "length": 80 @@ -4179,7 +5150,9 @@ "_id": "VNbPhxpsCQrO", "content": "Remember always that you not only have the right to be an individual, you have an obligation to be one.", "author": "Eleanor Roosevelt", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "1X7NWb1oyd21", "authorSlug": "eleanor-roosevelt", "length": 103 @@ -4188,7 +5161,9 @@ "_id": "aeAPqvNG3", "content": "It is a common experience that a problem difficult at night is resolved in the morning after the committee of sleep has worked on it.", "author": "John Steinbeck", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "6axtEJVYp2We", "authorSlug": "john-steinbeck", "length": 133 @@ -4197,7 +5172,10 @@ "_id": "dMJ9b4iwZ0Lj", "content": "To make no mistakes is not in the power of man; but from their errors and mistakes the wise and good learn wisdom for the future.", "author": "Plutarch", - "tags": ["famous-quotes", "wisdom"], + "tags": [ + "famous-quotes", + "wisdom" + ], "authorId": "fmzBXMuI4lbX", "authorSlug": "plutarch", "length": 129 @@ -4206,7 +5184,9 @@ "_id": "9sm_GJbP-2s_", "content": "This world, after all our science and sciences, is still a miracle; wonderful, inscrutable, magical and more, to whosoever will think of it.", "author": "Thomas Carlyle", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "sTK7Nn46drMi", "authorSlug": "thomas-carlyle", "length": 140 @@ -4215,7 +5195,9 @@ "_id": "wIfNy-oDtr", "content": "Friendship needs no words - it is solitude delivered from the anguish of loneliness.", "author": "Dag Hammarskjöld", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "ubzLDheOmG", "authorSlug": "dag-hammarskjold", "length": 84 @@ -4224,7 +5206,9 @@ "_id": "m8q1pMkFz_jV", "content": "Wherever a man may happen to turn, whatever a man may undertake, he will always end up by returning to the path which nature has marked out for him.", "author": "Johann Wolfgang von Goethe", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "aW1ZR-8LuS28", "authorSlug": "johann-wolfgang-von-goethe", "length": 148 @@ -4233,7 +5217,11 @@ "_id": "nBSAX0LazBDt", "content": "If A is success in life, then A equals x plus y plus z. Work is x; y is play; and z is keeping your mouth shut.", "author": "Albert Einstein", - "tags": ["famous-quotes", "life", "success"], + "tags": [ + "famous-quotes", + "life", + "success" + ], "authorId": "L76FRuEeGIUJ", "authorSlug": "albert-einstein", "length": 111 @@ -4242,7 +5230,9 @@ "_id": "DZA5UWkbv-KJ", "content": "If we could see the miracle of a single flower clearly, our whole life would change.", "author": "Buddha", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "sUNjshHENA05", "authorSlug": "buddha", "length": 84 @@ -4251,7 +5241,9 @@ "_id": "b-zLcfguzkk7", "content": "When you are content to be simply yourself and don't compare or compete, everybody will respect you.", "author": "Laozi", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "qsaptKSHuLDU", "authorSlug": "laozi", "length": 100 @@ -4260,7 +5252,9 @@ "_id": "eDuDLZphbw9c", "content": "The best preparation for tomorrow is doing your best today.", "author": "H. Jackson Brown Jr.", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ZShJOYn-QZ5M", "authorSlug": "h-jackson-brown-jr", "length": 59 @@ -4269,7 +5263,9 @@ "_id": "5MYjs_eBt5", "content": "Love demands infinitely less than friendship.", "author": "George Jean Nathan", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "SMk7Fb4KTw", "authorSlug": "george-jean-nathan", "length": 45 @@ -4278,7 +5274,9 @@ "_id": "kc_i68XUTzm9", "content": "If you spend too much time thinking about a thing, you'll never get it done.", "author": "Bruce Lee", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "raaFe2cXACnG", "authorSlug": "bruce-lee", "length": 76 @@ -4287,7 +5285,9 @@ "_id": "gBdWfRIFkxx4", "content": "The aim of life is self-development. To realize ones nature perfectly - that is what each of us is here for.", "author": "Oscar Wilde", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "yw5O7wULaKfx", "authorSlug": "oscar-wilde", "length": 108 @@ -4296,7 +5296,9 @@ "_id": "rROktmIDga", "content": "And when the world is created, it is created in such a way that those eternal objects of God's loving wisdom become actualities - interacting with one another, relating to God in the finite realm.", "author": "Rowan Williams", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "k53H3997pN", "authorSlug": "rowan-williams", "length": 196 @@ -4305,7 +5307,9 @@ "_id": "395POpXmel", "content": "Life has no blessing like a prudent friend.", "author": "Euripides", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "yVMYpy-GWWFq", "authorSlug": "euripides", "length": 43 @@ -4314,7 +5318,9 @@ "_id": "gP3atICYApeI", "content": "No pessimist ever discovered the secrets of the stars, or sailed to an uncharted land, or opened a new heaven to the human spirit.", "author": "Helen Keller", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "pYjZMId1ilhK", "authorSlug": "helen-keller", "length": 130 @@ -4323,7 +5329,9 @@ "_id": "7C2TU6MIz9o_", "content": "I'm not interested in age. People who tell me their age are silly. You're as old as you feel.", "author": "Elizabeth Arden", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "6Z2MjNVjOz8H", "authorSlug": "elizabeth-arden", "length": 93 @@ -4332,7 +5340,9 @@ "_id": "EpDrsWX_c6li", "content": "When people are like each other they tend to like each other.", "author": "Tony Robbins", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "IkUGwHTcaXs9", "authorSlug": "tony-robbins", "length": 61 @@ -4341,7 +5351,10 @@ "_id": "8Lkh3gqcSh", "content": "Difficulties increase the nearer we get to the goal.", "author": "Johann Wolfgang von Goethe", - "tags": ["famous-quotes", "inspirational"], + "tags": [ + "famous-quotes", + "inspirational" + ], "authorId": "aW1ZR-8LuS28", "authorSlug": "johann-wolfgang-von-goethe", "length": 52 @@ -4350,7 +5363,9 @@ "_id": "3-PoIjz4IDQ", "content": "In life, all good things come hard, but wisdom is the hardest to come by.", "author": "Lucille Ball", - "tags": ["wisdom"], + "tags": [ + "wisdom" + ], "authorId": "Ub_gH1IJ-HBm", "authorSlug": "lucille-ball", "length": 73 @@ -4359,7 +5374,9 @@ "_id": "_k3kxvogAs-6", "content": "If you have knowledge, let others light their candles in it.", "author": "Margaret Fuller", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "yxcmeo89-BoQ", "authorSlug": "margaret-fuller", "length": 60 @@ -4368,7 +5385,9 @@ "_id": "5_6lVDMuo9IM", "content": "Happiness can exist only in acceptance.", "author": "George Orwell", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "YyZuhLs2-ki6", "authorSlug": "george-orwell", "length": 39 @@ -4377,7 +5396,9 @@ "_id": "NTseDGDXOuo8", "content": "Life is really simple, but we insist on making it complicated.", "author": "Confucius", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "ropvZKOXYhLr", "authorSlug": "confucius", "length": 62 @@ -4386,7 +5407,9 @@ "_id": "mZGMxqlkKn", "content": "Friendship may, and often does, grow into love, but love never subsides into friendship.", "author": "Lord Byron", - "tags": ["friendship"], + "tags": [ + "friendship" + ], "authorId": "EUjr2jc6nT", "authorSlug": "lord-byron", "length": 88 @@ -4395,7 +5418,9 @@ "_id": "0Z8EQaXeVdhX", "content": "Weve got to have a dream if we are going to make a dream come true.", "author": "Walt Disney", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "HzyhMbP15DoD", "authorSlug": "walt-disney", "length": 67 @@ -4404,7 +5429,9 @@ "_id": "heFGlWwPZjvX", "content": "Promises are the uniquely human way of ordering the future, making it predictable and reliable to the extent that this is humanly possible.", "author": "Hannah Arendt", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "2aVt9AdFu1fK", "authorSlug": "hannah-arendt", "length": 139 @@ -4413,7 +5440,9 @@ "_id": "g1GZtzlspywZ", "content": "Most of the important things in the world have been accomplished by people who have kept on trying when there seemed to be no hope at all.", "author": "Dale Carnegie", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "D1RNG5b9TsXN", "authorSlug": "dale-carnegie", "length": 138 @@ -4422,7 +5451,9 @@ "_id": "YTqaIDVD0fX3", "content": "The way we communicate with others and with ourselves ultimately determines the quality of our lives.", "author": "Tony Robbins", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "IkUGwHTcaXs9", "authorSlug": "tony-robbins", "length": 101 @@ -4431,7 +5462,9 @@ "_id": "xjRJ2oXvhode", "content": "Time you enjoyed wasting was not wasted.", "author": "John Lennon", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "vVS5k5Oad9Hy", "authorSlug": "john-lennon", "length": 40 @@ -4440,7 +5473,9 @@ "_id": "M1DjUqEQCO-E", "content": "Never bend your head. Always hold it high. Look the world right in the eye.", "author": "Helen Keller", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "pYjZMId1ilhK", "authorSlug": "helen-keller", "length": 75 @@ -4449,7 +5484,9 @@ "_id": "wdTamcKIF6Oc", "content": "All achievements, all earned riches, have their beginning in an idea.", "author": "Napoleon Hill", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "N4h708MyElyG", "authorSlug": "napoleon-hill", "length": 69 @@ -4458,7 +5495,9 @@ "_id": "vmmay0GtEHcT", "content": "The poor man is not he who is without a cent, but he who is without a dream.", "author": "Harry Kemp", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "jFYtDAg5Ott5", "authorSlug": "harry-kemp", "length": 76 @@ -4467,7 +5506,9 @@ "_id": "0IP2kpOHSiPj", "content": "I have never been hurt by anything I didn't say.", "author": "Calvin Coolidge", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "bUWx0bMUCf8X", "authorSlug": "calvin-coolidge", "length": 48 @@ -4476,7 +5517,9 @@ "_id": "FO7XX9krDFzO", "content": "Every artist dips his brush in his own soul, and paints his own nature into his pictures.", "author": "Henry Ward Beecher", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "7ARdGK2SnqLv", "authorSlug": "henry-ward-beecher", "length": 89 @@ -4485,7 +5528,9 @@ "_id": "5_zuctgLXl8x", "content": "The right way is not always the popular and easy way. Standing for right when it is unpopular is a true test of moral character.", "author": "Margaret Chase Smith", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "TtcYr-YE0YpM", "authorSlug": "margaret-chase-smith", "length": 128 @@ -4494,9 +5539,11 @@ "_id": "mH_m-Xmw1dk", "content": "Don't wait. The time will never be just right.", "author": "Napoleon Hill", - "tags": ["famous-quotes"], + "tags": [ + "famous-quotes" + ], "authorId": "N4h708MyElyG", "authorSlug": "napoleon-hill", "length": 46 } -] +] \ No newline at end of file diff --git a/pls_cli/utils/es/quotes.json b/pls_cli/utils/es/quotes.json new file mode 100644 index 0000000..e701432 --- /dev/null +++ b/pls_cli/utils/es/quotes.json @@ -0,0 +1,5549 @@ +[ + { + "_id": "juG0aJTnYxmf", + "content": "El Hombre Superior es consciente de la Rectitud, el hombre inferior es consciente de la ventaja.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 96 + }, + { + "_id": "FMZiiLHfCOc", + "content": "La libertad de religi\u00f3n de Estados Unidos y la libertad de religi\u00f3n ofrecen a cada tradici\u00f3n de sabidur\u00eda una oportunidad para abordar nuestras necesidades m\u00e1s profundas: cristianismo, juda\u00edsmo, islamismo, budismo, hinduismo, humanismo secular, agnosticismo y ate\u00edsmo, entre otros.", + "author": "Parker Palmer", + "tags": [ + "wisdom" + ], + "authorId": "XPDojD6THK", + "authorSlug": "parker-palmer", + "length": 281 + }, + { + "_id": "CXJ3rBlnfFa2", + "content": "Los mitos en los que se cree tienden a convertirse en realidad.", + "author": "George Orwell", + "tags": [ + "famous-quotes" + ], + "authorId": "YyZuhLs2-ki6", + "authorSlug": "george-orwell", + "length": 63 + }, + { + "_id": "ihnLNFx2ZolZ", + "content": "En todo caos hay un cosmos, en todo desorden un orden secreto.", + "author": "Carl Jung", + "tags": [ + "famous-quotes" + ], + "authorId": "-LYBJJujV7RL", + "authorSlug": "carl-jung", + "length": 62 + }, + { + "_id": "HFT6qcdMVVt", + "content": "S\u00e9 cort\u00e9s con todos, pero \u00edntimo con pocos, y deja que esos pocos sean bien probados antes de darles tu confianza.", + "author": "George Washington", + "tags": [ + "friendship" + ], + "authorId": "e2dM0CnWTjCD", + "authorSlug": "george-washington", + "length": 114 + }, + { + "_id": "r6gpkIboJCzH", + "content": "Si te rompes el cuello, si no tienes nada para comer, si tu casa est\u00e1 en llamas, entonces tienes un problema. Todo lo dem\u00e1s son molestias.", + "author": "Robert Fulghum", + "tags": [ + "famous-quotes" + ], + "authorId": "OMH4P98yJ7YG", + "authorSlug": "robert-fulghum", + "length": 138 + }, + { + "_id": "1BXjOAdiKUXW", + "content": "El pasado no tiene poder para impedir que est\u00e9s presente ahora. Solo tu queja sobre el pasado puede hacer eso.", + "author": "Eckhart Tolle", + "tags": [ + "famous-quotes" + ], + "authorId": "I6wUbDqsmByX", + "authorSlug": "eckhart-tolle", + "length": 110 + }, + { + "_id": "Z5HhvrGNn3_Y", + "content": "No le sucede nada a ninguna persona, excepto lo que estaba en su poder para llevar a cabo.", + "author": "Marcus Aurelius", + "tags": [ + "famous-quotes" + ], + "authorId": "zW_A5fM6XU-v", + "authorSlug": "marcus-aurelius", + "length": 90 + }, + { + "_id": "WDGgxBqNWco9", + "content": "El acto de bondad m\u00e1s peque\u00f1o vale m\u00e1s que la intenci\u00f3n m\u00e1s grandiosa.", + "author": "Oscar Wilde", + "tags": [ + "famous-quotes" + ], + "authorId": "yw5O7wULaKfx", + "authorSlug": "oscar-wilde", + "length": 70 + }, + { + "_id": "2hNPcjVsMTb", + "content": "Cada problema tiene un regalo para ti en sus manos.", + "author": "Richard Bach", + "tags": [ + "famous-quotes" + ], + "authorId": "t9lNqDH0TmYo", + "authorSlug": "richard-bach", + "length": 51 + }, + { + "_id": "o8Xc7pO8Y1aD", + "content": "Las mentes m\u00e1s grandes son capaces de los mayores vicios as\u00ed como de las m\u00e1s grandes virtudes.", + "author": "Ren\u00e9 Descartes", + "tags": [ + "famous-quotes" + ], + "authorId": "7oQmRTe0VZhD", + "authorSlug": "rene-descartes", + "length": 94 + }, + { + "_id": "T3WzgRWp0RNY", + "content": "El mundo abre paso al hombre que sabe ad\u00f3nde va.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 48 + }, + { + "_id": "J2QOuZPIiG", + "content": "Eres un producto de tu entorno. As\u00ed que elige el entorno que mejor te desarrolle hacia tu objetivo. Analiza tu vida en t\u00e9rminos de su entorno. \u00bfLas cosas que te rodean te est\u00e1n ayudando a alcanzar el \u00e9xito o te est\u00e1n frenando?", + "author": "W. Clement Stone", + "tags": [ + "wisdom" + ], + "authorId": "esj6cyXo7w3_", + "authorSlug": "w-clement-stone", + "length": 226 + }, + { + "_id": "ALcsEfDR7FL", + "content": "Los cautelosos rara vez se equivocan.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 37 + }, + { + "_id": "q3SfzGZd2iGb", + "content": "Los logros m\u00e1s complicados del pensamiento son posibles sin la ayuda de la conciencia.", + "author": "Sigmund Freud", + "tags": [ + "famous-quotes" + ], + "authorId": "S2-JbY3NzItd", + "authorSlug": "sigmund-freud", + "length": 86 + }, + { + "_id": "yr4loYMOP15w", + "content": "Al expresar nuestra gratitud, nunca debemos olvidar que el mayor aprecio no es pronunciar palabras, sino vivir de acuerdo con ellas.", + "author": "John F. Kennedy", + "tags": [ + "famous-quotes" + ], + "authorId": "hVmL2YCoGCRZ", + "authorSlug": "john-f-kennedy", + "length": 132 + }, + { + "_id": "SjSXV2RqMnq3", + "content": "La mejor manera de vivir con honor en este mundo es ser lo que pretendemos ser.", + "author": "Socrates", + "tags": [ + "famous-quotes" + ], + "authorId": "C9DlPOiO6CUk", + "authorSlug": "socrates", + "length": 79 + }, + { + "_id": "O_jlFdjUtHPT", + "content": "Cada persona, todos los acontecimientos de tu vida est\u00e1n all\u00ed porque t\u00fa los has atra\u00eddo all\u00ed. Lo que elijas hacer con ellos depende de ti.", + "author": "Richard Bach", + "tags": [ + "famous-quotes" + ], + "authorId": "t9lNqDH0TmYo", + "authorSlug": "richard-bach", + "length": 138 + }, + { + "_id": "tE2DJstE_-", + "content": "La sabidur\u00eda comienza por el final.", + "author": "Daniel Webster", + "tags": [ + "wisdom" + ], + "authorId": "6MQyJsAQJ0", + "authorSlug": "daniel-webster", + "length": 35 + }, + { + "_id": "6Frokv7EPoui", + "content": "Los hombres ignorantes no saben qu\u00e9 bien tienen en sus manos hasta que lo tiran.", + "author": "Sophocles", + "tags": [ + "famous-quotes" + ], + "authorId": "bBwlN7LI2Jtu", + "authorSlug": "sophocles", + "length": 80 + }, + { + "_id": "LlHX1-JaSX4v", + "content": "Por muchas palabras santas que leas, por muchas que hables, \u00bfde qu\u00e9 te servir\u00e1n si no las pones en pr\u00e1ctica?", + "author": "Buddha", + "tags": [ + "famous-quotes" + ], + "authorId": "sUNjshHENA05", + "authorSlug": "buddha", + "length": 108 + }, + { + "_id": "dZewn83VJ8", + "content": "La ciencia nos da conocimiento, pero s\u00f3lo la filosof\u00eda puede darnos sabidur\u00eda.", + "author": "Will Durant", + "tags": [ + "wisdom" + ], + "authorId": "ePSTACfg6LJF", + "authorSlug": "will-durant", + "length": 78 + }, + { + "_id": "HQNnn2x2Vc", + "content": "La pasi\u00f3n por la pol\u00edtica suele surgir de una necesidad insaciable, ya sea de poder, de amistad y de adulaci\u00f3n, o de una combinaci\u00f3n de ambas.", + "author": "Fawn M. Brodie", + "tags": [ + "friendship", + "politics" + ], + "authorId": "Miy-SXplY_", + "authorSlug": "fawn-m-brodie", + "length": 142 + }, + { + "_id": "yE-5JJkxPMwS", + "content": "No te enojes porque no puedes hacer a los dem\u00e1s como deseas que sean, ya que no puedes hacerte a ti mismo como deseas ser.", + "author": "Thomas \u00e0 Kempis", + "tags": [ + "famous-quotes" + ], + "authorId": "dlhcmYIGySaN", + "authorSlug": "thomas-a-kempis", + "length": 122 + }, + { + "_id": "K_JAFGFr7CQ", + "content": "Nadie puede hacerte sentir inferior sin tu consentimiento.", + "author": "Eleanor Roosevelt", + "tags": [ + "famous-quotes" + ], + "authorId": "1X7NWb1oyd21", + "authorSlug": "eleanor-roosevelt", + "length": 58 + }, + { + "_id": "CFy490n4lo8g", + "content": "La apreciaci\u00f3n puede hacer un d\u00eda, incluso cambiar una vida. Su voluntad de ponerlo en palabras es todo lo que se necesita.", + "author": "Margaret Cousins", + "tags": [ + "famous-quotes" + ], + "authorId": "kGus0J4NngTj", + "authorSlug": "margaret-cousins", + "length": 123 + }, + { + "_id": "puOWR0I5qnC", + "content": "Mucha sabidur\u00eda a menudo va con pocas palabras.", + "author": "Sophocles", + "tags": [ + "wisdom" + ], + "authorId": "bBwlN7LI2Jtu", + "authorSlug": "sophocles", + "length": 47 + }, + { + "_id": "qdu_n6bzzKdo", + "content": "La alegr\u00eda es el mejor maquillaje.", + "author": "Anne Lamott", + "tags": [ + "famous-quotes" + ], + "authorId": "U9sym_5RKQun", + "authorSlug": "anne-lamott", + "length": 34 + }, + { + "_id": "Me8_vxzeboS", + "content": "Nunca hubo un buen cuchillo hecho de mal acero.", + "author": "Benjamin Franklin", + "tags": [ + "famous-quotes" + ], + "authorId": "xkvcrqREjoOB", + "authorSlug": "benjamin-franklin", + "length": 47 + }, + { + "_id": "x16CqiTuVRw2", + "content": "Amo mi pasado. Amo mi presente. No me averg\u00fcenzo de lo que he tenido, y no estoy triste porque ya no lo tengo.", + "author": "Colette", + "tags": [ + "famous-quotes" + ], + "authorId": "Yu8OzWEaUynL", + "authorSlug": "colette", + "length": 110 + }, + { + "_id": "z-6ZEcSbP", + "content": "Hay una diferencia entre la felicidad y la sabidur\u00eda: el que se cree el hombre m\u00e1s feliz lo es realmente; pero el que se cree el m\u00e1s sabio es generalmente el m\u00e1s tonto.", + "author": "Francis Bacon", + "tags": [ + "wisdom" + ], + "authorId": "zWIvsqe0NWrg", + "authorSlug": "francis-bacon", + "length": 168 + }, + { + "_id": "cItDIql9UDZQ", + "content": "Liberarnos de las expectativas de los dem\u00e1s, devolvernos a nosotros mismos... ah\u00ed reside el gran y singular poder del respeto por uno mismo.", + "author": "Joan Didion", + "tags": [ + "famous-quotes" + ], + "authorId": "igzALEEh5F3J", + "authorSlug": "joan-didion", + "length": 140 + }, + { + "_id": "Ig8FLVp7MUGN", + "content": "El poder de la comprensi\u00f3n intuitiva te proteger\u00e1 del da\u00f1o hasta el final de tus d\u00edas.", + "author": "Laozi", + "tags": [ + "famous-quotes" + ], + "authorId": "qsaptKSHuLDU", + "authorSlug": "laozi", + "length": 86 + }, + { + "_id": "nm0-EMpYdg", + "content": "Nunca expliques: tus amigos no lo necesitan y tus enemigos no te creer\u00e1n de todos modos.", + "author": "Elbert Hubbard", + "tags": [ + "friendship" + ], + "authorId": "CBoxna3kOgDk", + "authorSlug": "elbert-hubbard", + "length": 88 + }, + { + "_id": "cfZn_tJRV_", + "content": "La disciplina es el puente entre las metas y los logros.", + "author": "Jim Rohn", + "tags": [ + "wisdom" + ], + "authorId": "y1EtofIFCLDG", + "authorSlug": "jim-rohn", + "length": 56 + }, + { + "_id": "BGwOo6FZq3tH", + "content": "No solo somos responsables de lo que hacemos, sino tambi\u00e9n de lo que no hacemos.", + "author": "Moli\u00e8re", + "tags": [ + "famous-quotes" + ], + "authorId": "cnfO1057rjLp", + "authorSlug": "moliere", + "length": 80 + }, + { + "_id": "tSMhyFCDwuQ5", + "content": "Todas las cosas dif\u00edciles tienen su origen en lo f\u00e1cil, y las grandes en lo peque\u00f1o.", + "author": "Laozi", + "tags": [ + "famous-quotes" + ], + "authorId": "qsaptKSHuLDU", + "authorSlug": "laozi", + "length": 84 + }, + { + "_id": "tfo24zWoAJ", + "content": "Se requiere sabidur\u00eda para comprender la sabidur\u00eda: la m\u00fasica no es nada si el p\u00fablico es sordo.", + "author": "Walter Lippmann", + "tags": [ + "wisdom" + ], + "authorId": "62LoYlpnLBnT", + "authorSlug": "walter-lippmann", + "length": 96 + }, + { + "_id": "cJH-_m1_f0Um", + "content": "As\u00ed es la alegr\u00eda, o el buen humor, cuanto m\u00e1s se gasta, m\u00e1s queda.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 67 + }, + { + "_id": "1YXmyT1yhWU", + "content": "Confiar en ti mismo. Sabes m\u00e1s de lo que crees.", + "author": "Benjamin Spock", + "tags": [ + "famous-quotes" + ], + "authorId": "jolipv2qzign", + "authorSlug": "benjamin-spock", + "length": 47 + }, + { + "_id": "Tb-u26v47VO2", + "content": "Nunca prometas m\u00e1s de lo que puedes cumplir.", + "author": "Publilius Syrus", + "tags": [ + "famous-quotes" + ], + "authorId": "uvj7ffI-Yu4z", + "authorSlug": "publilius-syrus", + "length": 44 + }, + { + "_id": "9rSuCtK9CCZk", + "content": "F\u00f3rmula para el \u00e9xito: bajo promesa y sobre entrega.", + "author": "Tom Peters", + "tags": [ + "famous-quotes" + ], + "authorId": "t77znI1gAwCN", + "authorSlug": "tom-peters", + "length": 52 + }, + { + "_id": "8ZIDZ3CxrJUg", + "content": "El \u00fanico l\u00edmite para nuestra realizaci\u00f3n del ma\u00f1ana ser\u00e1n nuestras dudas de hoy.", + "author": "Franklin D. Roosevelt", + "tags": [ + "famous-quotes" + ], + "authorId": "ejqEsEP8JKVz", + "authorSlug": "franklin-d-roosevelt", + "length": 80 + }, + { + "_id": "zbvj3SIQud", + "content": "Creo que las personas que son creativas son las personas m\u00e1s afortunadas del mundo. S\u00e9 que no hay atajos, pero debes mantener tu fe en algo M\u00e1s Grande que T\u00fa y seguir haciendo lo que amas. Haz lo que amas, y encontrar\u00e1s la manera de sacarlo al mundo.", + "author": "Judy Collins", + "tags": [ + "inspirational" + ], + "authorId": "PZLuQR2YR", + "authorSlug": "judy-collins", + "length": 250 + }, + { + "_id": "KBk2VabfrRne", + "content": "Las posibilidades son numerosas una vez que decidimos actuar y no reaccionar.", + "author": "George Bernard Shaw", + "tags": [ + "famous-quotes" + ], + "authorId": "zKfoVjq84t9O", + "authorSlug": "george-bernard-shaw", + "length": 77 + }, + { + "_id": "EGX58vRmwZac", + "content": "Es mejor tener suficientes ideas para que algunas de ellas est\u00e9n equivocadas, que estar siempre en lo correcto por no tener ideas en absoluto.", + "author": "Edward de Bono", + "tags": [ + "famous-quotes" + ], + "authorId": "Q8iYMcQRfSaG", + "authorSlug": "edward-de-bono", + "length": 142 + }, + { + "_id": "Chvu_626SS", + "content": "Lo m\u00e1s que puedo hacer por mi amigo es simplemente ser su amigo.", + "author": "Henry David Thoreau", + "tags": [ + "friendship" + ], + "authorId": "NrthgQlym1Ji", + "authorSlug": "henry-david-thoreau", + "length": 64 + }, + { + "_id": "gWSsNulTG-B", + "content": "Cada uno en el mundo debe hacer las cosas para las que est\u00e1 especialmente adaptado. Es parte de la sabidur\u00eda reconocer para qu\u00e9 est\u00e1 mejor preparado cada uno de nosotros, y es parte de la educaci\u00f3n perfeccionar y utilizar tales predisposiciones. Porque la educaci\u00f3n puede dirigir y ayudar a la naturaleza pero nunca transformarla.", + "author": "Maria Montessori", + "tags": [ + "wisdom" + ], + "authorId": "LLK3WHQr-n", + "authorSlug": "maria-montessori", + "length": 330 + }, + { + "_id": "4eekGH2qL80L", + "content": "El que vive en armon\u00eda consigo mismo, vive en armon\u00eda con el mundo.", + "author": "Marcus Aurelius", + "tags": [ + "famous-quotes" + ], + "authorId": "zW_A5fM6XU-v", + "authorSlug": "marcus-aurelius", + "length": 67 + }, + { + "_id": "q8nzpiYM7R5W", + "content": "El primer requisito para el \u00e9xito es la capacidad de aplicar sus energ\u00edas f\u00edsicas y mentales a un problema incesantemente sin cansarse.", + "author": "Thomas Edison", + "tags": [ + "famous-quotes" + ], + "authorId": "PC4gkJPlknC3", + "authorSlug": "thomas-edison", + "length": 135 + }, + { + "_id": "mnFoWZfga9OZ", + "content": "Ve por ello ahora. El futuro no est\u00e1 prometido a nadie.", + "author": "Wayne Dyer", + "tags": [ + "famous-quotes" + ], + "authorId": "CLxflG5QMMjg", + "authorSlug": "wayne-dyer", + "length": 55 + }, + { + "_id": "oWZdsMNhOx", + "content": "Llevar el coraz\u00f3n en la manga no es un muy buen plan; debe usarlo adentro, donde funciona mejor.", + "author": "Margaret Thatcher", + "tags": [ + "wisdom" + ], + "authorId": "WVe0z8ZowG", + "authorSlug": "margaret-thatcher", + "length": 96 + }, + { + "_id": "eobAW2Ou0", + "content": "Obtienes la victoria cuando cedes a los amigos.", + "author": "Sophocles", + "tags": [ + "friendship" + ], + "authorId": "bBwlN7LI2Jtu", + "authorSlug": "sophocles", + "length": 47 + }, + { + "_id": "3x87VqS_qvus", + "content": "El que nunca cambia de opini\u00f3n, nunca corrige sus errores, y nunca ser\u00e1 m\u00e1s sabio ma\u00f1ana de lo que es hoy.", + "author": "Tryon Edwards", + "tags": [ + "famous-quotes" + ], + "authorId": "1MrKaB-moWNI", + "authorSlug": "tryon-edwards", + "length": 106 + }, + { + "_id": "xzOfgffA_i4K", + "content": "No lo que tenemos sino lo que disfrutamos constituye nuestra abundancia.", + "author": "Jean Antoine Petit-Senn", + "tags": [ + "famous-quotes" + ], + "authorId": "yN1jsKxqikaP", + "authorSlug": "jean-antoine-petit-senn", + "length": 72 + }, + { + "_id": "47RkLdME26", + "content": "Nunca le digas a la gente c\u00f3mo hacer las cosas. Diles qu\u00e9 hacer y te sorprender\u00e1n con su ingenio.", + "author": "George S. Patton", + "tags": [ + "wisdom" + ], + "authorId": "fdSvvuZORmh4", + "authorSlug": "george-s-patton", + "length": 97 + }, + { + "_id": "rypL5kmdIg8", + "content": "Un talento realmente grande encuentra su felicidad en la ejecuci\u00f3n.", + "author": "Johann Wolfgang von Goethe", + "tags": [ + "famous-quotes", + "happiness" + ], + "authorId": "aW1ZR-8LuS28", + "authorSlug": "johann-wolfgang-von-goethe", + "length": 67 + }, + { + "_id": "gfTHZTAshWP", + "content": "La sabidur\u00eda viene sola a trav\u00e9s del sufrimiento.", + "author": "Aeschylus", + "tags": [ + "wisdom" + ], + "authorId": "ossJxB6-1", + "authorSlug": "aeschylus", + "length": 49 + }, + { + "_id": "HxaMW05ghs7P", + "content": "Cada vez que le sonr\u00edes a alguien, es una acci\u00f3n de amor, un regalo para esa persona, algo hermoso.", + "author": "Mother Teresa", + "tags": [ + "famous-quotes" + ], + "authorId": "y7OXxqCaXKVa", + "authorSlug": "mother-teresa", + "length": 99 + }, + { + "_id": "NrhUkykn4F", + "content": "Matrimonio: Una amistad reconocida por la polic\u00eda.", + "author": "Robert Louis Stevenson", + "tags": [ + "friendship" + ], + "authorId": "qKwGWW8zDYtf", + "authorSlug": "robert-louis-stevenson", + "length": 50 + }, + { + "_id": "OHNMF1vCnPFE", + "content": "Si no soy para m\u00ed, \u00bfqui\u00e9n ser\u00e1 para m\u00ed? Si no soy para los dem\u00e1s, \u00bfqu\u00e9 soy? Y si no es ahora, \u00bfcu\u00e1ndo?", + "author": "Rabbi Hillel", + "tags": [ + "famous-quotes" + ], + "authorId": "cII2_MfYV9sI", + "authorSlug": "rabbi-hillel", + "length": 102 + }, + { + "_id": "ncgMsMKJiBiN", + "content": "Si no vas hasta el final, \u00bfpor qu\u00e9 ir?", + "author": "Joe Namath", + "tags": [ + "famous-quotes", + "inspirational" + ], + "authorId": "qHtBDmfzcWY1", + "authorSlug": "joe-namath", + "length": 38 + }, + { + "_id": "em8Skf5_TYmL", + "content": "Ir en contra del pensamiento dominante de tus amigos, de la mayor\u00eda de las personas que ves todos los d\u00edas, es quiz\u00e1s el acto de hero\u00edsmo m\u00e1s dif\u00edcil que puedes realizar.", + "author": "Theodore H. White", + "tags": [ + "famous-quotes" + ], + "authorId": "K_3C2-eM0XG3", + "authorSlug": "theodore-h-white", + "length": 170 + }, + { + "_id": "_XB2MKPzW7dA", + "content": "El \u00e9xito no es la clave de la felicidad. La felicidad es la clave del \u00e9xito. Si amas lo que haces, tendr\u00e1s \u00e9xito.", + "author": "Albert Schweitzer", + "tags": [ + "famous-quotes", + "success", + "happiness" + ], + "authorId": "ANT0MUtjmG6O", + "authorSlug": "albert-schweitzer", + "length": 113 + }, + { + "_id": "cOGCuuIf9q_V", + "content": "Siempre recuerde que usted es absolutamente \u00fanico. C\u00f3mo todo el mundo.", + "author": "Margaret Mead", + "tags": [ + "famous-quotes" + ], + "authorId": "N_2wC_loMyb6", + "authorSlug": "margaret-mead", + "length": 70 + }, + { + "_id": "F3KNJ0FPy", + "content": "Si tienes las agallas para seguir cometiendo errores, tu sabidur\u00eda e inteligencia saltan hacia adelante con un gran impulso.", + "author": "Holly Near", + "tags": [ + "wisdom" + ], + "authorId": "aRQvvTVi6J", + "authorSlug": "holly-near", + "length": 124 + }, + { + "_id": "4zLW-um1544g", + "content": "El \u00e9xito en los negocios requiere entrenamiento, disciplina y trabajo duro. Pero si no te asustan estas cosas, las oportunidades son tan grandes hoy como lo fueron siempre.", + "author": "David Rockefeller", + "tags": [ + "famous-quotes" + ], + "authorId": "b8CEwzZeccbO", + "authorSlug": "david-rockefeller", + "length": 172 + }, + { + "_id": "RQP0o_Ze99D", + "content": "Ning\u00fan hombre fue nunca sabio por casualidad.", + "author": "Seneca the Younger", + "tags": [ + "famous-quotes", + "wisdom" + ], + "authorId": "TyeFCuRgEQjD", + "authorSlug": "seneca-the-younger", + "length": 45 + }, + { + "_id": "oKk8MCHpwgsK", + "content": "Nada desaparece hasta que nos ha ense\u00f1ado lo que necesitamos saber.", + "author": "Pema Ch\u00f6dr\u00f6n", + "tags": [ + "famous-quotes" + ], + "authorId": "tN_VI2ruKHe1", + "authorSlug": "pema-chodron", + "length": 67 + }, + { + "_id": "44zDEFUKvm", + "content": "Cuanto m\u00e1s medite el hombre en buenos pensamientos, mejor ser\u00e1 su mundo y el mundo en general.", + "author": "Confucius", + "tags": [ + "inspirational" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 94 + }, + { + "_id": "xH7XN__m5y", + "content": "Solo podemos aprender a amar amando.", + "author": "Iris Murdoch", + "tags": [ + "famous-quotes" + ], + "authorId": "v2Jk1rHcsGne", + "authorSlug": "iris-murdoch", + "length": 36 + }, + { + "_id": "22bmCfi_RKD9", + "content": "Lo \u00fanico que se puede hacer con un buen consejo es transmitirlo. Nunca es de ninguna utilidad para uno mismo.", + "author": "Oscar Wilde", + "tags": [ + "famous-quotes" + ], + "authorId": "yw5O7wULaKfx", + "authorSlug": "oscar-wilde", + "length": 109 + }, + { + "_id": "Hgj3O0h_R0", + "content": "Nuestros valores compartidos nos definen m\u00e1s que nuestras diferencias. Y reconocer esos valores compartidos puede ayudarnos a superar nuestros desaf\u00edos hoy si tenemos la sabidur\u00eda para confiar en ellos nuevamente.", + "author": "John McCain", + "tags": [ + "wisdom" + ], + "authorId": "zZ325SZnbU", + "authorSlug": "john-mc-cain", + "length": 213 + }, + { + "_id": "kbd0ItzHwGdq", + "content": "Si cambias la forma en que miras las cosas, las cosas que miras cambian.", + "author": "Wayne Dyer", + "tags": [ + "famous-quotes" + ], + "authorId": "CLxflG5QMMjg", + "authorSlug": "wayne-dyer", + "length": 72 + }, + { + "_id": "77ZqNwl8aoR4", + "content": "Hay dos clases de fracasos: los que pensaron y nunca lo hicieron, y los que lo hicieron y nunca pensaron.", + "author": "Laurence J. Peter", + "tags": [ + "famous-quotes" + ], + "authorId": "YQGk6ZEcJXwb", + "authorSlug": "laurence-j-peter", + "length": 105 + }, + { + "_id": "lZ8sFKiGiC", + "content": "Si no sabes a d\u00f3nde vas, cualquier camino te llevar\u00e1 all\u00ed.", + "author": "Lewis Carroll", + "tags": [ + "wisdom" + ], + "authorId": "CAjYjAa7_k", + "authorSlug": "lewis-carroll", + "length": 58 + }, + { + "_id": "dEyIaoXFto_A", + "content": "La felicidad es un perfume que no puedes derramar sobre los dem\u00e1s sin que te caigan unas gotas sobre ti.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 104 + }, + { + "_id": "7I1NygyqFe", + "content": "La sabidur\u00eda se encuentra s\u00f3lo en la verdad.", + "author": "Johann Wolfgang von Goethe", + "tags": [ + "wisdom" + ], + "authorId": "aW1ZR-8LuS28", + "authorSlug": "johann-wolfgang-von-goethe", + "length": 44 + }, + { + "_id": "PYnVkG4UQGH7", + "content": "No hay nada en esta tierra m\u00e1s apreciado que la verdadera amistad.", + "author": "Thomas Aquinas", + "tags": [ + "famous-quotes", + "friendship" + ], + "authorId": "aqllap-WMqA7", + "authorSlug": "thomas-aquinas", + "length": 66 + }, + { + "_id": "RvqpnaFvABIY", + "content": "Para obtener el valor completo de la alegr\u00eda, debes tener a alguien con quien compartirla.", + "author": "Mark Twain", + "tags": [ + "famous-quotes" + ], + "authorId": "zbADvkP0r05L", + "authorSlug": "mark-twain", + "length": 90 + }, + { + "_id": "aNE_rvppMD", + "content": "El arte de contar historias est\u00e1 llegando a su fin porque el lado \u00e9pico de la verdad, la sabidur\u00eda, se est\u00e1 extinguiendo.", + "author": "Walter Benjamin", + "tags": [ + "wisdom" + ], + "authorId": "zI76TcGmOQfn", + "authorSlug": "walter-benjamin", + "length": 121 + }, + { + "_id": "ITSWNEMYeJ2", + "content": "Nuestra desconfianza es muy cara.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 33 + }, + { + "_id": "2wYjTZiTUSgQ", + "content": "Las cosas que uno m\u00e1s quiere hacer son las cosas que probablemente m\u00e1s valen la pena hacer.", + "author": "Winifred Holtby", + "tags": [ + "famous-quotes" + ], + "authorId": "yw0APRMe6ccU", + "authorSlug": "winifred-holtby", + "length": 91 + }, + { + "_id": "EgCOqrOa1", + "content": "El aprendizaje es el comienzo de la riqueza. El aprendizaje es el principio de la salud. El aprendizaje es el comienzo de la espiritualidad. Buscar y aprender es donde comienza todo el proceso del milagro.", + "author": "Jim Rohn", + "tags": [ + "inspirational" + ], + "authorId": "y1EtofIFCLDG", + "authorSlug": "jim-rohn", + "length": 205 + }, + { + "_id": "e_gTr6YjsaRE", + "content": "Primero dite a ti mismo lo que ser\u00edas; y luego haz lo que tengas que hacer.", + "author": "Epictetus", + "tags": [ + "famous-quotes" + ], + "authorId": "HZHaUuiyIJPp", + "authorSlug": "epictetus", + "length": 75 + }, + { + "_id": "xiz-AuLNow5", + "content": "Cuando dudas de tu poder, le das poder a tu duda.", + "author": "Honor\u00e9 de Balzac", + "tags": [ + "famous-quotes" + ], + "authorId": "jcH4GH-fD_Lo", + "authorSlug": "honore-de-balzac", + "length": 49 + }, + { + "_id": "0Fu_lJzNXJj1", + "content": "No es tan importante saberlo todo como apreciar lo que aprendemos.", + "author": "Hannah More", + "tags": [ + "famous-quotes" + ], + "authorId": "xCBqa2UdrCeh", + "authorSlug": "hannah-more", + "length": 66 + }, + { + "_id": "BPH3iUjq75e", + "content": "Mantente en la luz del sol y no podr\u00e1s ver la sombra.", + "author": "Helen Keller", + "tags": [ + "famous-quotes" + ], + "authorId": "pYjZMId1ilhK", + "authorSlug": "helen-keller", + "length": 53 + }, + { + "_id": "UGTlczrORBij", + "content": "Nadie cometi\u00f3 mayor error que el que no hizo nada porque s\u00f3lo pod\u00eda hacer un poco.", + "author": "Edmund Burke", + "tags": [ + "famous-quotes" + ], + "authorId": "obe8upiDrPyc", + "authorSlug": "edmund-burke", + "length": 82 + }, + { + "_id": "__MSA1A1By9u", + "content": "El necio busca la felicidad en la distancia, el sabio la cultiva bajo sus pies.", + "author": "James Oppenheim", + "tags": [ + "famous-quotes" + ], + "authorId": "pY4cjNm7ogoc", + "authorSlug": "james-oppenheim", + "length": 79 + }, + { + "_id": "1fFK-Xgvy5", + "content": "No hay amistad, ni amor, como el del padre por el hijo.", + "author": "Henry Ward Beecher", + "tags": [ + "friendship" + ], + "authorId": "7ARdGK2SnqLv", + "authorSlug": "henry-ward-beecher", + "length": 55 + }, + { + "_id": "999oXJVcS_I_", + "content": "Comience, sea audaz y avent\u00farese a ser sabio.", + "author": "Horace", + "tags": [ + "famous-quotes" + ], + "authorId": "CzaPXGzUZyyQ", + "authorSlug": "horace", + "length": 45 + }, + { + "_id": "h1Eu15cySGn7", + "content": "Un verdadero amigo es la m\u00e1s preciada de todas las posesiones y la que menos pensamos en adquirir.", + "author": "Fran\u00e7ois de La Rochefoucauld", + "tags": [ + "famous-quotes" + ], + "authorId": "WsdfQEdjyPNN", + "authorSlug": "francois-de-la-rochefoucauld", + "length": 98 + }, + { + "_id": "Fyet-MEuSrkD", + "content": "Nuestra grandeza no radica tanto en poder rehacer el mundo como en poder rehacernos a nosotros mismos.", + "author": "Mahatma Gandhi", + "tags": [ + "famous-quotes" + ], + "authorId": "4J6_dx73YbT5", + "authorSlug": "mahatma-gandhi", + "length": 102 + }, + { + "_id": "fdSsJN4RCf", + "content": "Es imposible amar y ser sabio.", + "author": "Francis Bacon", + "tags": [ + "wisdom" + ], + "authorId": "zWIvsqe0NWrg", + "authorSlug": "francis-bacon", + "length": 30 + }, + { + "_id": "q_cFcKHlt5", + "content": "Los amigos sinceros de este mundo son como luces de barco en la noche m\u00e1s tempestuosa.", + "author": "Giotto", + "tags": [ + "friendship" + ], + "authorId": "HzajC1C73d", + "authorSlug": "giotto", + "length": 86 + }, + { + "_id": "jUzHSANe7yNC", + "content": "El que se respeta a s\u00ed mismo est\u00e1 a salvo de los dem\u00e1s; lleva una cota de malla que nadie puede perforar.", + "author": "Henry Wadsworth Longfellow", + "tags": [ + "famous-quotes" + ], + "authorId": "YhbRPxv708pj", + "authorSlug": "henry-wadsworth-longfellow", + "length": 105 + }, + { + "_id": "38EIHUXkkhc", + "content": "Para traer algo a tu vida, imagina que ya est\u00e1 ah\u00ed.", + "author": "Richard Bach", + "tags": [ + "famous-quotes" + ], + "authorId": "t9lNqDH0TmYo", + "authorSlug": "richard-bach", + "length": 51 + }, + { + "_id": "kS2H14WhWSor", + "content": "El pensamiento se manifiesta como la palabra. La palabra se manifiesta como el hecho. La acci\u00f3n se convierte en h\u00e1bito. Y el h\u00e1bito se endurece en el car\u00e1cter.", + "author": "Buddha", + "tags": [ + "famous-quotes" + ], + "authorId": "sUNjshHENA05", + "authorSlug": "buddha", + "length": 159 + }, + { + "_id": "NoaRFCJNzT", + "content": "Tanta tecnolog\u00eda, tan poco talento.", + "author": "Vernor Vinge", + "tags": [ + "technology" + ], + "authorId": "1BW5mPKRg", + "authorSlug": "vernor-vinge", + "length": 35 + }, + { + "_id": "3BOQbdqBbzOd", + "content": "No sigas por donde el sendero te pueda llevar. Ve, en cambio, donde no hay camino y deja un rastro.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 99 + }, + { + "_id": "KziYFsZxdD", + "content": "La verdadera amistad multiplica los bienes de la vida y divide sus males. Esfu\u00e9rzate por tener amigos, porque la vida sin amigos es como la vida en una isla desierta... encontrar un verdadero amigo en la vida es buena fortuna; conservarlo es una bendici\u00f3n.", + "author": "Baltasar Graci\u00e1n", + "tags": [ + "friendship" + ], + "authorId": "NOw0qSU2RzF5", + "authorSlug": "baltasar-gracian", + "length": 256 + }, + { + "_id": "_PqXIxnDlx", + "content": "Los errores son el puente habitual entre la inexperiencia y la sabidur\u00eda.", + "author": "Phyllis Grissim-Theroux", + "tags": [ + "wisdom" + ], + "authorId": "LAi5Ya70h-", + "authorSlug": "phyllis-grissim-theroux", + "length": 73 + }, + { + "_id": "QZoT0w8MRyc_", + "content": "Aquellos que se atreven a fallar miserablemente pueden lograr mucho.", + "author": "John F. Kennedy", + "tags": [ + "famous-quotes" + ], + "authorId": "hVmL2YCoGCRZ", + "authorSlug": "john-f-kennedy", + "length": 68 + }, + { + "_id": "OrbTAJYtKCXr", + "content": "Hasta que no te valores a ti mismo, no valorar\u00e1s tu tiempo. Hasta que no valores tu tiempo, no har\u00e1s nada con \u00e9l.", + "author": "M. Scott Peck", + "tags": [ + "famous-quotes" + ], + "authorId": "ki-YWDZ-hlDZ", + "authorSlug": "m-scott-peck", + "length": 113 + }, + { + "_id": "mi54WW7d_b", + "content": "El camino del exceso conduce al palacio de la sabidur\u00eda.", + "author": "William Blake", + "tags": [ + "wisdom" + ], + "authorId": "7VD7ORpP-19B", + "authorSlug": "william-blake", + "length": 56 + }, + { + "_id": "_1lzYCBjMDlC", + "content": "Cuando sentimos amor y bondad hacia los dem\u00e1s, no solo hace que los dem\u00e1s se sientan amados y cuidados, sino que tambi\u00e9n nos ayuda a desarrollar la felicidad y la paz interior.", + "author": "Dalai Lama", + "tags": [ + "famous-quotes" + ], + "authorId": "OPVjtVVBVW5h", + "authorSlug": "dalai-lama", + "length": 176 + }, + { + "_id": "ZKfOV0UwuugV", + "content": "Y cuando dejamos que brille nuestra propia luz, inconscientemente damos permiso a otras personas para que hagan lo mismo.", + "author": "Nelson Mandela", + "tags": [ + "famous-quotes" + ], + "authorId": "ubn8tDLlaqk6", + "authorSlug": "nelson-mandela", + "length": 121 + }, + { + "_id": "VCPz7eYRbDs9", + "content": "Ning\u00fan acto de bondad, por peque\u00f1o que sea, se desperdicia.", + "author": "Aesop", + "tags": [ + "famous-quotes" + ], + "authorId": "XYxYtSeixS-o", + "authorSlug": "aesop", + "length": 59 + }, + { + "_id": "0SOLhFe3M9-l", + "content": "Apuntamos por encima de la marca para dar en el blanco.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 55 + }, + { + "_id": "Xgdo3uU5rey", + "content": "Haz algo maravilloso, la gente puede imitarlo.", + "author": "Albert Schweitzer", + "tags": [ + "famous-quotes", + "inspirational" + ], + "authorId": "ANT0MUtjmG6O", + "authorSlug": "albert-schweitzer", + "length": 46 + }, + { + "_id": "xEYjoxqQhRfC", + "content": "Un hombre es grande por hechos, no por nacimiento.", + "author": "Chanakya", + "tags": [ + "famous-quotes" + ], + "authorId": "szWyArKJErGq", + "authorSlug": "chanakya", + "length": 50 + }, + { + "_id": "r2EnGdx5HG", + "content": "Se ha vuelto terriblemente obvio que nuestra tecnolog\u00eda ha excedido nuestra humanidad.", + "author": "Albert Einstein", + "tags": [ + "technology" + ], + "authorId": "L76FRuEeGIUJ", + "authorSlug": "albert-einstein", + "length": 86 + }, + { + "_id": "JkGCNZF9ISSN", + "content": "La mayor\u00eda de las sombras de la vida son causadas por permanecer bajo nuestro propio sol.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 89 + }, + { + "_id": "pYR1eRWM7yT4", + "content": "Sepan que aunque en el esquema eterno de las cosas ustedes son peque\u00f1os, tambi\u00e9n son \u00fanicos e insustituibles, como lo son todos sus semejantes en todas partes del mundo.", + "author": "Margaret Laurence", + "tags": [ + "famous-quotes" + ], + "authorId": "ZDgdNzHUFajm", + "authorSlug": "margaret-laurence", + "length": 169 + }, + { + "_id": "QGY0TiFjpdj2", + "content": "Cuando me atrevo a ser poderoso, a usar mi fuerza al servicio de mi visi\u00f3n, se vuelve cada vez menos importante si tengo miedo.", + "author": "Audre Lorde", + "tags": [ + "famous-quotes" + ], + "authorId": "ykLNBe560sqb", + "authorSlug": "audre-lorde", + "length": 127 + }, + { + "_id": "6dj60GUobqhK", + "content": "Piensen por ustedes mismos y dejen que otros disfruten del privilegio de hacerlo tambi\u00e9n.", + "author": "Voltaire", + "tags": [ + "famous-quotes" + ], + "authorId": "ZyuVXKFVTZu8", + "authorSlug": "voltaire", + "length": 89 + }, + { + "_id": "ueyq9zjTg9Rb", + "content": "Cada regalo de un amigo es un deseo para tu felicidad.", + "author": "Richard Bach", + "tags": [ + "famous-quotes" + ], + "authorId": "t9lNqDH0TmYo", + "authorSlug": "richard-bach", + "length": 54 + }, + { + "_id": "5UL7N8Q2QEH1", + "content": "Hay dos opciones principales en la vida: aceptar las condiciones tal como existen o aceptar la responsabilidad de cambiarlas.", + "author": "Denis Waitley", + "tags": [ + "famous-quotes" + ], + "authorId": "Ge0tkRMVUicu", + "authorSlug": "denis-waitley", + "length": 125 + }, + { + "_id": "vbTwRyX9uu", + "content": "El genio sin refinar se asemeja a un rel\u00e1mpago, pero la sabidur\u00eda es como el sol.", + "author": "Franz Grillparzer", + "tags": [ + "wisdom" + ], + "authorId": "CxfrvMHSHQ", + "authorSlug": "franz-grillparzer", + "length": 81 + }, + { + "_id": "HQmAwGraUV", + "content": "La tragedia es una herramienta para que los vivos adquieran sabidur\u00eda, no una gu\u00eda para vivir.", + "author": "Robert F. Kennedy", + "tags": [ + "wisdom" + ], + "authorId": "1qqH4MEkASdy", + "authorSlug": "robert-f-kennedy", + "length": 94 + }, + { + "_id": "6vrEW1dd1Q", + "content": "Aquel a quien se le ense\u00f1a a vivir con poco debe m\u00e1s a la sabidur\u00eda de su padre que aquel a quien le ha quedado mucho le debe al cuidado de su padre.", + "author": "William C. Menninger", + "tags": [ + "wisdom" + ], + "authorId": "PyQOMX6cxaNs", + "authorSlug": "william-c-menninger", + "length": 149 + }, + { + "_id": "aJ-kdYIolJ8-", + "content": "Acepta los desaf\u00edos, para que puedas sentir el j\u00fabilo de la victoria.", + "author": "George S. Patton", + "tags": [ + "famous-quotes" + ], + "authorId": "fdSvvuZORmh4", + "authorSlug": "george-s-patton", + "length": 69 + }, + { + "_id": "-0DZUCVFcb", + "content": "\u00a1La amistad es el amor sin sus alas!", + "author": "Lord Byron", + "tags": [ + "friendship" + ], + "authorId": "EUjr2jc6nT", + "authorSlug": "lord-byron", + "length": 36 + }, + { + "_id": "AUGTBH2V__b", + "content": "Verdaderos amigos te apu\u00f1alan de frente.", + "author": "Oscar Wilde", + "tags": [ + "friendship", + "famous-quotes" + ], + "authorId": "yw5O7wULaKfx", + "authorSlug": "oscar-wilde", + "length": 40 + }, + { + "_id": "R7wXqieTTo", + "content": "Valora tu amistad. Valora tus relaciones.", + "author": "Barbara Bush", + "tags": [ + "friendship" + ], + "authorId": "Qw_ksGjkS8", + "authorSlug": "barbara-bush", + "length": 41 + }, + { + "_id": "ST-c8lhICwVj", + "content": "Nunca hay tiempo suficiente para hacer todo, pero siempre hay tiempo suficiente para hacer lo m\u00e1s importante.", + "author": "Brian Tracy", + "tags": [ + "famous-quotes" + ], + "authorId": "VC1mZHGb7rAH", + "authorSlug": "brian-tracy", + "length": 109 + }, + { + "_id": "VsarQ0iEgE1", + "content": "La vida no se trata de encontrarte a ti mismo. La vida es sobre crearte a ti mismo.", + "author": "Bernard Shaw", + "tags": [ + "famous-quotes" + ], + "authorId": "gk8iLycW0DFC", + "authorSlug": "bernard-shaw", + "length": 83 + }, + { + "_id": "S5Id5SJmu6Jp", + "content": "Nadie tiene un mejor dominio del lenguaje que la persona que mantiene la boca cerrada.", + "author": "Sam Rayburn", + "tags": [ + "famous-quotes" + ], + "authorId": "unPacEQP5CiA", + "authorSlug": "sam-rayburn", + "length": 86 + }, + { + "_id": "n1CKSLhX-iSp", + "content": "Todo lo que es necesario es aceptar lo imposible, prescindir de lo indispensable y soportar lo intolerable.", + "author": "Kathleen Norris", + "tags": [ + "famous-quotes" + ], + "authorId": "B50xTKgH0R4-", + "authorSlug": "kathleen-norris", + "length": 107 + }, + { + "_id": "oAtERLD0yyQR", + "content": "El que sabe, no habla. El que habla no sabe.", + "author": "Laozi", + "tags": [ + "famous-quotes" + ], + "authorId": "qsaptKSHuLDU", + "authorSlug": "laozi", + "length": 44 + }, + { + "_id": "WQbJJwEFP1l9", + "content": "En lo m\u00e1s profundo del invierno, finalmente aprend\u00ed que hab\u00eda dentro de m\u00ed un verano invencible.", + "author": "Albert Camus", + "tags": [ + "famous-quotes", + "inspirational" + ], + "authorId": "RmuonXrXY44Z", + "authorSlug": "albert-camus", + "length": 96 + }, + { + "_id": "smwaq6O8Hk", + "content": "Siempre puedes decirle a un verdadero amigo: cuando has hecho el rid\u00edculo, \u00e9l no siente que hayas hecho un trabajo permanente.", + "author": "Laurence J. Peter", + "tags": [ + "friendship" + ], + "authorId": "YQGk6ZEcJXwb", + "authorSlug": "laurence-j-peter", + "length": 126 + }, + { + "_id": "obE41Svazc", + "content": "El verdadero conocimiento existe en saber que no sabes nada.", + "author": "Isocrates", + "tags": [ + "wisdom" + ], + "authorId": "6emd99Cst9Cf", + "authorSlug": "isocrates", + "length": 60 + }, + { + "_id": "2a7xKeQ1JWGy", + "content": "Mantener el cuerpo en buena salud es un deber... de lo contrario no podremos mantener nuestra mente fuerte y clara.", + "author": "Buddha", + "tags": [ + "famous-quotes" + ], + "authorId": "sUNjshHENA05", + "authorSlug": "buddha", + "length": 115 + }, + { + "_id": "xwABJFIJQVwW", + "content": "Necesitamos encontrar el coraje para decir NO a las cosas y personas que no nos est\u00e1n sirviendo si queremos redescubrirnos y vivir nuestras vidas con autenticidad.", + "author": "Barbara De Angelis", + "tags": [ + "famous-quotes" + ], + "authorId": "o77X2PrW6mcZ", + "authorSlug": "barbara-de-angelis", + "length": 163 + }, + { + "_id": "XdeBIvTg0D", + "content": "S\u00e9 el jefe pero nunca el se\u00f1or.", + "author": "Laozi", + "tags": [ + "famous-quotes" + ], + "authorId": "qsaptKSHuLDU", + "authorSlug": "laozi", + "length": 31 + }, + { + "_id": "JfTBllGjt7L", + "content": "Ama a todos, conf\u00eda en unos pocos, no hagas mal a ninguno.", + "author": "William Shakespeare", + "tags": [ + "famous-quotes" + ], + "authorId": "5F2Uwpllj", + "authorSlug": "william-shakespeare", + "length": 58 + }, + { + "_id": "OSaopvW0IUd", + "content": "Cuanto m\u00e1s te conoces a ti mismo, m\u00e1s te perdonas a ti mismo.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 61 + }, + { + "_id": "nx2M9kL0EgcI", + "content": "Haz el bien con sigilo, y rubor\u00edzate para encontrarle fama.", + "author": "Alexander Pope", + "tags": [ + "famous-quotes" + ], + "authorId": "_gz-cfmqA1mr", + "authorSlug": "alexander-pope", + "length": 59 + }, + { + "_id": "3E7C0r4EhlHT", + "content": "Construye una ratonera mejor y el mundo abrir\u00e1 un camino hasta tu puerta.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 73 + }, + { + "_id": "z-hDjBf4spF-", + "content": "Saca lo mejor de ti mismo, porque eso es todo lo que hay de ti.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 63 + }, + { + "_id": "r8LdcYbz3s_", + "content": "En la sabidur\u00eda acumulada a lo largo del tiempo, he descubierto que cada experiencia es una forma de exploraci\u00f3n.", + "author": "Ansel Adams", + "tags": [ + "wisdom" + ], + "authorId": "4ejQsV_Lu2", + "authorSlug": "ansel-adams", + "length": 113 + }, + { + "_id": "dO8CMrZCBgBw", + "content": "El azar siempre es poderoso. Deja que tu anzuelo est\u00e9 siempre echado; en la piscina donde menos te lo esperas, habr\u00e1 un pez.", + "author": "Ovid", + "tags": [ + "famous-quotes" + ], + "authorId": "f9utPohz0fgH", + "authorSlug": "ovid", + "length": 124 + }, + { + "_id": "Vs-4YEGn", + "content": "Puedo, luego existo.", + "author": "Simone Weil", + "tags": [ + "inspirational" + ], + "authorId": "bUP0cHEuKQBn", + "authorSlug": "simone-weil", + "length": 20 + }, + { + "_id": "A1JTIXKBd-S", + "content": "Lo \u00fanico realmente valioso es la intuici\u00f3n.", + "author": "Albert Einstein", + "tags": [ + "famous-quotes" + ], + "authorId": "L76FRuEeGIUJ", + "authorSlug": "albert-einstein", + "length": 43 + }, + { + "_id": "N9BhgsYxSz", + "content": "Algunas personas acuden a los sacerdotes; otros a la poes\u00eda; yo a mis amigos.", + "author": "Virginia Woolf", + "tags": [ + "friendship" + ], + "authorId": "_ITh8zk9Aj", + "authorSlug": "virginia-woolf", + "length": 77 + }, + { + "_id": "OSF3eMB6sZaP", + "content": "La libertad, tomando la palabra en su sentido concreto, consiste en la capacidad de elegir.", + "author": "Simone Weil", + "tags": [ + "famous-quotes" + ], + "authorId": "bUP0cHEuKQBn", + "authorSlug": "simone-weil", + "length": 91 + }, + { + "_id": "uXHzy3qRhoCy", + "content": "Si no somos completamente nosotros mismos, verdaderamente en el momento presente, nos perdemos todo.", + "author": "Th\u00edch Nh\u1ea5t H\u1ea1nh", + "tags": [ + "famous-quotes" + ], + "authorId": "N0pHADD097gY", + "authorSlug": "thich-nh\u1ea5t-h\u1ea1nh", + "length": 100 + }, + { + "_id": "N3YI0c4c6TR", + "content": "Permito que mi intuici\u00f3n gu\u00ede mi camino.", + "author": "Manuel Puig", + "tags": [ + "famous-quotes" + ], + "authorId": "UJel-JAtoHj1", + "authorSlug": "manuel-puig", + "length": 40 + }, + { + "_id": "6c2h-AtqMj6d", + "content": "Puedes mantenerte erguido sin pararte sobre alguien. Puedes ser un vencedor sin tener v\u00edctimas.", + "author": "Harriet Woods", + "tags": [ + "famous-quotes" + ], + "authorId": "3lL0AlxRBSU_", + "authorSlug": "harriet-woods", + "length": 95 + }, + { + "_id": "puEMvYGsD", + "content": "La lealtad y la amistad, que para m\u00ed es lo mismo, crearon toda la riqueza que jam\u00e1s pens\u00e9 que tendr\u00eda.", + "author": "Ernie Banks", + "tags": [ + "friendship" + ], + "authorId": "Chx-QR-kwO", + "authorSlug": "ernie-banks", + "length": 102 + }, + { + "_id": "z56LpsUqHr", + "content": "La sabidur\u00eda a menudo est\u00e1 m\u00e1s cerca cuando nos inclinamos que cuando nos elevamos.", + "author": "William Wordsworth", + "tags": [ + "wisdom" + ], + "authorId": "pcN62RXd7Z", + "authorSlug": "william-wordsworth", + "length": 83 + }, + { + "_id": "_ZVJWv9HJsBe", + "content": "Quienquiera que est\u00e9 feliz har\u00e1 feliz a otros tambi\u00e9n.", + "author": "Mark Twain", + "tags": [ + "famous-quotes" + ], + "authorId": "zbADvkP0r05L", + "authorSlug": "mark-twain", + "length": 54 + }, + { + "_id": "ARKzsqVpFY", + "content": "Dos personas no pueden ser amigos por mucho tiempo si no pueden perdonarse los peque\u00f1os defectos del otro.", + "author": "Jean de La Bruy\u00e8re", + "tags": [ + "friendship" + ], + "authorId": "X28vkua13m", + "authorSlug": "jean-de-la-bruyere", + "length": 106 + }, + { + "_id": "je7UytrRlH-0", + "content": "El arte supremo de la guerra es someter al enemigo sin luchar.", + "author": "Sun Tzu", + "tags": [ + "famous-quotes" + ], + "authorId": "G-QcoRJkxKHQ", + "authorSlug": "sun-tzu", + "length": 62 + }, + { + "_id": "m29XGLtQho", + "content": "Los programas deben estar escritos para que la gente los lea, y solo de manera incidental para que las m\u00e1quinas los ejecuten.", + "author": "Hal Abelson", + "tags": [ + "technology" + ], + "authorId": "pPc8J2hf_", + "authorSlug": "hal-abelson", + "length": 125 + }, + { + "_id": "JjBqM4t-sxsr", + "content": "Los sabios hablan porque tienen algo que decir; tontos, porque tienen que decir algo.", + "author": "Plato", + "tags": [ + "famous-quotes" + ], + "authorId": "VtJS8G9y5FL1", + "authorSlug": "plato", + "length": 85 + }, + { + "_id": "K1iJC1T4pDf", + "content": "Creo que somos fundamentalmente iguales y tenemos el mismo potencial b\u00e1sico.", + "author": "Dalai Lama", + "tags": [ + "famous-quotes" + ], + "authorId": "OPVjtVVBVW5h", + "authorSlug": "dalai-lama", + "length": 76 + }, + { + "_id": "Rp9oE96Hqv9j", + "content": "Aprecia tus visiones y tus sue\u00f1os ya que son los hijos de tu alma; los planos de tus \u00faltimos logros.", + "author": "Napoleon Hill", + "tags": [ + "famous-quotes" + ], + "authorId": "N4h708MyElyG", + "authorSlug": "napoleon-hill", + "length": 100 + }, + { + "_id": "Mv26be7c-4_i", + "content": "Todo lo que nos irrita de los dem\u00e1s puede llevarnos a una mejor comprensi\u00f3n de nosotros mismos.", + "author": "Carl Jung", + "tags": [ + "famous-quotes" + ], + "authorId": "-LYBJJujV7RL", + "authorSlug": "carl-jung", + "length": 95 + }, + { + "_id": "w_JEQv9o4sF", + "content": "La sabidur\u00eda m\u00e1s verdadera es una determinaci\u00f3n resuelta.", + "author": "Napoleon", + "tags": [ + "famous-quotes", + "wisdom" + ], + "authorId": "xlnMchFC2VJG", + "authorSlug": "napoleon", + "length": 57 + }, + { + "_id": "xD83G0bc53Gp", + "content": "Todos los hombres tienen una dulzura en su vida. Eso es lo que les ayuda a continuar. Es hacia donde se vuelven cuando se sienten demasiado agotados.", + "author": "Albert Camus", + "tags": [ + "famous-quotes" + ], + "authorId": "RmuonXrXY44Z", + "authorSlug": "albert-camus", + "length": 149 + }, + { + "_id": "xqpuo_rjf_1g", + "content": "Atreverse es perder el equilibrio moment\u00e1neamente. No atreverse es perderse.", + "author": "S\u00f8ren Kierkegaard", + "tags": [ + "famous-quotes" + ], + "authorId": "ZEGr5G7ktW1L", + "authorSlug": "soren-kierkegaard", + "length": 76 + }, + { + "_id": "gXJa2hBwIpVh", + "content": "Llegar a un punto es el punto de partida para otro.", + "author": "John Dewey", + "tags": [ + "famous-quotes" + ], + "authorId": "_C0q1b52VOtH", + "authorSlug": "john-dewey", + "length": 51 + }, + { + "_id": "9knYf-nVYu10", + "content": "La menor de las cosas con un significado vale m\u00e1s en la vida que la mayor de las cosas sin \u00e9l.", + "author": "Carl Jung", + "tags": [ + "famous-quotes" + ], + "authorId": "-LYBJJujV7RL", + "authorSlug": "carl-jung", + "length": 94 + }, + { + "_id": "i5NVHAIzPDWa", + "content": "La conciencia de nuestra propia fuerza nos hace modestos.", + "author": "Paul C\u00e9zanne", + "tags": [ + "famous-quotes" + ], + "authorId": "SU_Z9xGuikYn", + "authorSlug": "paul-cezanne", + "length": 57 + }, + { + "_id": "-LwlAMmYmOG", + "content": "Las palabras amables no cuestan mucho. Sin embargo, logran mucho.", + "author": "Blaise Pascal", + "tags": [ + "famous-quotes" + ], + "authorId": "RzEwhF8861WC", + "authorSlug": "blaise-pascal", + "length": 65 + }, + { + "_id": "WsswXPIbtq1p", + "content": "Al diablo con las circunstancias; Creo oportunidades.", + "author": "Bruce Lee", + "tags": [ + "famous-quotes" + ], + "authorId": "raaFe2cXACnG", + "authorSlug": "bruce-lee", + "length": 53 + }, + { + "_id": "nFRdjQdGL4v5", + "content": "El amor nunca se pierde. Si no es correspondido, fluir\u00e1 hacia atr\u00e1s y suavizar\u00e1 y purificar\u00e1 el coraz\u00f3n.", + "author": "Washington Irving", + "tags": [ + "famous-quotes" + ], + "authorId": "NTzdD9ZDCzOR", + "authorSlug": "washington-irving", + "length": 104 + }, + { + "_id": "UNkrqEJixcvb", + "content": "Debe dar la bienvenida al cambio como regla, pero no como su gobernante.", + "author": "Denis Waitley", + "tags": [ + "famous-quotes" + ], + "authorId": "Ge0tkRMVUicu", + "authorSlug": "denis-waitley", + "length": 72 + }, + { + "_id": "tSVLiDTGay4S", + "content": "El amor cura a las personas, tanto a los que lo dan como a los que lo reciben.", + "author": "Karl Menninger", + "tags": [ + "famous-quotes" + ], + "authorId": "Cq01vUii_wxS", + "authorSlug": "karl-menninger", + "length": 78 + }, + { + "_id": "qaVA31y0GA1Q", + "content": "La oportunidad a menudo viene disfrazada en forma de desgracia o derrota temporal.", + "author": "Napoleon Hill", + "tags": [ + "famous-quotes" + ], + "authorId": "N4h708MyElyG", + "authorSlug": "napoleon-hill", + "length": 82 + }, + { + "_id": "5xt93w4ql_UM", + "content": "Nunca idealices a los dem\u00e1s. Nunca estar\u00e1n a la altura de sus expectativas.", + "author": "Leo Buscaglia", + "tags": [ + "famous-quotes" + ], + "authorId": "XVzZKXv06YQG", + "authorSlug": "leo-buscaglia", + "length": 75 + }, + { + "_id": "WuHLOLFI2uKy", + "content": "Ser consciente de un solo defecto en uno mismo es m\u00e1s \u00fatil que ser consciente de mil en otra persona.", + "author": "Dalai Lama", + "tags": [ + "famous-quotes" + ], + "authorId": "OPVjtVVBVW5h", + "authorSlug": "dalai-lama", + "length": 101 + }, + { + "_id": "UQ2TjZ5IIDSR", + "content": "Cualquiera que no se tome en serio la verdad en los asuntos peque\u00f1os, tampoco se puede confiar en los grandes.", + "author": "Albert Einstein", + "tags": [ + "famous-quotes" + ], + "authorId": "L76FRuEeGIUJ", + "authorSlug": "albert-einstein", + "length": 110 + }, + { + "_id": "bhseVu9PSh1I", + "content": "Acepta las cosas a las que te une el destino, y ama a las personas con las que te une el destino, pero hazlo con todo tu coraz\u00f3n.", + "author": "Marcus Aurelius", + "tags": [ + "famous-quotes" + ], + "authorId": "zW_A5fM6XU-v", + "authorSlug": "marcus-aurelius", + "length": 129 + }, + { + "_id": "JqusXYQEGNPC", + "content": "\u00bfQuieres saber qui\u00e9n eres? no preguntes \u00a1Acto! Tus acciones te mostraran y te definiran.", + "author": "Thomas Jefferson", + "tags": [ + "famous-quotes" + ], + "authorId": "Zy4xV5ItRxmv", + "authorSlug": "thomas-jefferson", + "length": 88 + }, + { + "_id": "bkL1a4IExc", + "content": "La motivaci\u00f3n es el arte de hacer que las personas hagan lo que t\u00fa quieres que hagan porque quieren hacerlo.", + "author": "Dwight D. Eisenhower", + "tags": [ + "inspirational" + ], + "authorId": "JSoEc_6dY", + "authorSlug": "dwight-d-eisenhower", + "length": 108 + }, + { + "_id": "x6LCvKtrXx", + "content": "Todo amor que no tiene como base la amistad, es como una mansi\u00f3n construida sobre la arena.", + "author": "Ella Wheeler Wilcox", + "tags": [ + "friendship", + "love" + ], + "authorId": "uKzj7T5Huj", + "authorSlug": "ella-wheeler-wilcox", + "length": 91 + }, + { + "_id": "mjKwHGRjIE", + "content": "Cuanto m\u00e1s te gustas a ti mismo, menos te pareces a los dem\u00e1s, lo que te hace \u00fanico.", + "author": "Walt Disney", + "tags": [ + "wisdom" + ], + "authorId": "HzyhMbP15DoD", + "authorSlug": "walt-disney", + "length": 84 + }, + { + "_id": "S47CRwtgyIsp", + "content": "La bondad constante puede lograr mucho. As\u00ed como el sol hace que el hielo se derrita, la bondad hace que se evaporen los malentendidos, la desconfianza y la hostilidad.", + "author": "Albert Schweitzer", + "tags": [ + "famous-quotes" + ], + "authorId": "ANT0MUtjmG6O", + "authorSlug": "albert-schweitzer", + "length": 168 + }, + { + "_id": "oM0UB2sH4t", + "content": "\u00a1La acci\u00f3n es elocuencia!", + "author": "William Shakespeare", + "tags": [ + "literature", + "famous-quotes" + ], + "authorId": "5F2Uwpllj", + "authorSlug": "william-shakespeare", + "length": 25 + }, + { + "_id": "305CvwuKqye", + "content": "El coraz\u00f3n tiene sus razones que la raz\u00f3n no conoce.", + "author": "Blaise Pascal", + "tags": [ + "famous-quotes" + ], + "authorId": "RzEwhF8861WC", + "authorSlug": "blaise-pascal", + "length": 52 + }, + { + "_id": "yZ1f2VZoK93Z", + "content": "Las buenas personas son buenas porque han llegado a la sabidur\u00eda a trav\u00e9s del fracaso. Obtenemos muy poca sabidur\u00eda del \u00e9xito, ya sabes.", + "author": "William Saroyan", + "tags": [ + "famous-quotes" + ], + "authorId": "5-_LwDOxI_Fb", + "authorSlug": "william-saroyan", + "length": 136 + }, + { + "_id": "SDhP8UAmtD09", + "content": "Si est\u00e1s caminando por el camino correcto y est\u00e1s dispuesto a seguir caminando, eventualmente progresar\u00e1s.", + "author": "Barack Obama", + "tags": [ + "famous-quotes" + ], + "authorId": "Xt2CsBHup4NB", + "authorSlug": "barack-obama", + "length": 106 + }, + { + "_id": "xDhw8-7y3p", + "content": "No esperes; El tiempo nunca ser\u00e1 justo.' Comience donde est\u00e1 y trabaje con las herramientas que tenga a su disposici\u00f3n, y encontrar\u00e1 mejores herramientas a medida que avanza.", + "author": "George Herbert", + "tags": [ + "inspirational" + ], + "authorId": "6VObium64", + "authorSlug": "george-herbert", + "length": 174 + }, + { + "_id": "KJhB_lkgrbPa", + "content": "Es mejor entender poco que malinterpretar mucho.", + "author": "Anatole France", + "tags": [ + "famous-quotes" + ], + "authorId": "anpE1ceNi3xv", + "authorSlug": "anatole-france", + "length": 48 + }, + { + "_id": "yCY2q20UK4Uf", + "content": "Sacrifiquemos nuestro hoy para que nuestros hijos puedan tener un ma\u00f1ana mejor.", + "author": "A. P. J. Abdul Kalam", + "tags": [ + "famous-quotes", + "inspirational" + ], + "authorId": "Bblz8Knp6-ZB", + "authorSlug": "a-p-j-abdul-kalam", + "length": 79 + }, + { + "_id": "yBn9DgK3vf", + "content": "Un joven, cuando est\u00e1 en casa, debe ser filial y, en el exterior, respetuoso con sus mayores. Debe ser serio y veraz. Debe desbordarse de amor por todos y cultivar la amistad de los buenos. Cuando tenga tiempo y oportunidad, despu\u00e9s de realizar estas cosas, debe emplearlas en estudios educados.", + "author": "Confucius", + "tags": [ + "friendship" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 295 + }, + { + "_id": "gZavCRsLqcse", + "content": "Te amo tanto m\u00e1s cuanto que creo que te hab\u00eda gustado por m\u00ed mismo y nada m\u00e1s.", + "author": "John Keats", + "tags": [ + "famous-quotes" + ], + "authorId": "mXQPMe-Kg_wJ", + "authorSlug": "john-keats", + "length": 78 + }, + { + "_id": "auaOSkmWy91", + "content": "Lee mientras saboreas la fruta o saboreas el vino, o disfrutas de la amistad, el amor o la vida.", + "author": "George Herbert", + "tags": [ + "friendship" + ], + "authorId": "6VObium64", + "authorSlug": "george-herbert", + "length": 96 + }, + { + "_id": "D6Yr5I9ikXXc", + "content": "Si haces lo que siempre has hecho, obtendr\u00e1s lo que siempre has obtenido.", + "author": "Tony Robbins", + "tags": [ + "famous-quotes" + ], + "authorId": "IkUGwHTcaXs9", + "authorSlug": "tony-robbins", + "length": 73 + }, + { + "_id": "OCgCMtjcY3HJ", + "content": "El respeto debe ganarse con acciones, y no adquirirse con a\u00f1os.", + "author": "Frank Lloyd Wright", + "tags": [ + "famous-quotes" + ], + "authorId": "U3a52-LjQPgz", + "authorSlug": "frank-lloyd-wright", + "length": 63 + }, + { + "_id": "JP0Z6kpYem0y", + "content": "El ejercicio corporal, cuando es obligatorio, no da\u00f1a el cuerpo; pero el conocimiento que se adquiere por compulsi\u00f3n no se apodera de la mente.", + "author": "Plato", + "tags": [ + "famous-quotes" + ], + "authorId": "VtJS8G9y5FL1", + "authorSlug": "plato", + "length": 143 + }, + { + "_id": "_6z2BhrSP8hw", + "content": "No sea demasiado t\u00edmido y aprensivo acerca de sus reacciones. Toda la vida es un experimento. Cuantos m\u00e1s experimentos hagas, mejor.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 132 + }, + { + "_id": "DiIyvrMPCZUK", + "content": "El universo est\u00e1 lleno de cosas m\u00e1gicas que esperan pacientemente a que nuestro ingenio se agudice.", + "author": "Eden Phillpotts", + "tags": [ + "famous-quotes" + ], + "authorId": "qaLujpsc9zLA", + "authorSlug": "eden-phillpotts", + "length": 99 + }, + { + "_id": "4zV5Pz4HES", + "content": "\u00bfD\u00f3nde est\u00e1 la Vida que hemos perdido al vivir? \u00bfD\u00f3nde est\u00e1 la sabidur\u00eda que hemos perdido en conocimiento? \u00bfD\u00f3nde est\u00e1 el conocimiento que hemos perdido en la informaci\u00f3n?", + "author": "George Eliot", + "tags": [ + "wisdom" + ], + "authorId": "MRCvek-GcKNk", + "authorSlug": "george-eliot", + "length": 172 + }, + { + "_id": "qGMGUH1ric", + "content": "La amistad es siempre una dulce responsabilidad, nunca una oportunidad.", + "author": "Kahlil Gibran", + "tags": [ + "friendship" + ], + "authorId": "h05GYnKzckM3", + "authorSlug": "kahlil-gibran", + "length": 71 + }, + { + "_id": "QLHIDLCkdjB", + "content": "Los vientos y las olas siempre est\u00e1n del lado de los navegantes m\u00e1s h\u00e1biles.", + "author": "Edward Gibbon", + "tags": [ + "famous-quotes" + ], + "authorId": "YT9gVcO1Iwl9", + "authorSlug": "edward-gibbon", + "length": 76 + }, + { + "_id": "kvTitxhuKqUw", + "content": "Solo hay un \u00e9xito: poder vivir tu vida a tu manera.", + "author": "Christopher Morley", + "tags": [ + "famous-quotes" + ], + "authorId": "SWPwu5PcQUso", + "authorSlug": "christopher-morley", + "length": 51 + }, + { + "_id": "5eTiZJCTAy9B", + "content": "Quien ama, cree lo imposible.", + "author": "Elizabeth Browning", + "tags": [ + "famous-quotes" + ], + "authorId": "9gFTpOXrxt8c", + "authorSlug": "elizabeth-browning", + "length": 29 + }, + { + "_id": "hLCOLhZE_92V", + "content": "La realidad es simplemente una ilusi\u00f3n, aunque muy persistente.", + "author": "Albert Einstein", + "tags": [ + "famous-quotes", + "science", + "wisdom" + ], + "authorId": "L76FRuEeGIUJ", + "authorSlug": "albert-einstein", + "length": 63 + }, + { + "_id": "MONDu5bf8JmU", + "content": "Si amas la vida, no pierdas el tiempo, porque el tiempo es de lo que se compone la vida.", + "author": "Bruce Lee", + "tags": [ + "famous-quotes" + ], + "authorId": "raaFe2cXACnG", + "authorSlug": "bruce-lee", + "length": 88 + }, + { + "_id": "IyF7fIZIc3XX", + "content": "Lo m\u00e1s dif\u00edcil es la decisi\u00f3n de actuar, el resto es mera tenacidad. Los miedos son tigres de papel. Puedes hacer cualquier cosa que decidas hacer. Puedes actuar para cambiar y controlar tu vida; y el procedimiento, el proceso es su propia recompensa.", + "author": "Amelia Earhart", + "tags": [ + "famous-quotes" + ], + "authorId": "by3TkPSn9iVA", + "authorSlug": "amelia-earhart", + "length": 251 + }, + { + "_id": "iLP7-hx1ktyO", + "content": "Haz lo que puedas. Quiere lo que tiene. Se quien eres.", + "author": "Forrest Church", + "tags": [ + "famous-quotes" + ], + "authorId": "NvKBMv_KbtVs", + "authorSlug": "forrest-church", + "length": 54 + }, + { + "_id": "wPJ_Mb4EjPlE", + "content": "La mente lo es todo: m\u00fasculo, piezas de goma. Todo lo que soy, lo soy debido a mi mente.", + "author": "Paavo Nurmi", + "tags": [ + "famous-quotes" + ], + "authorId": "SckF0U8Iy85M", + "authorSlug": "paavo-nurmi", + "length": 88 + }, + { + "_id": "QtuKHLeFEBK5", + "content": "Llegamos a amar no encontrando a una persona perfecta, sino aprendiendo a ver perfectamente a una persona imperfecta.", + "author": "Sam Keen", + "tags": [ + "famous-quotes" + ], + "authorId": "hWxSyExpHl40", + "authorSlug": "sam-keen", + "length": 117 + }, + { + "_id": "-Hqy06gxrO", + "content": "Un \u00e1rbol se conoce por su fruto; un hombre por sus obras. Una buena acci\u00f3n nunca se pierde; el que siembra cortes\u00eda cosecha amistad, y el que siembra bondad recoge amor.", + "author": "Basil of Caesarea", + "tags": [ + "wisdom", + "friendship" + ], + "authorId": "6bnXdruCW", + "authorSlug": "basil-of-caesarea", + "length": 169 + }, + { + "_id": "r5SEZsvbKwTw", + "content": "\u00bfQu\u00e9 hay de nuevo en el mundo? Nada. \u00bfQu\u00e9 es viejo en el mundo? Nada. Todo siempre ha sido y siempre ser\u00e1.", + "author": "Sai Baba", + "tags": [ + "famous-quotes" + ], + "authorId": "ZuwCV8XgXVtt", + "authorSlug": "sai-baba", + "length": 106 + }, + { + "_id": "6aKJM5st-C", + "content": "Es m\u00e1s vergonzoso desconfiar de nuestros amigos que ser enga\u00f1ados por ellos.", + "author": "Confucius", + "tags": [ + "friendship", + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 76 + }, + { + "_id": "P2UE04MWtcme", + "content": "Todo tiene belleza, pero no todo el mundo lo ve.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 48 + }, + { + "_id": "bcAbPetiKzd", + "content": "Aprende del ayer, vive el hoy, espera el ma\u00f1ana.", + "author": "Albert Einstein", + "tags": [ + "famous-quotes", + "inspirational" + ], + "authorId": "L76FRuEeGIUJ", + "authorSlug": "albert-einstein", + "length": 48 + }, + { + "_id": "2tzuQm94r9D", + "content": "El que habla m\u00e1s pronto se agota.", + "author": "Laozi", + "tags": [ + "famous-quotes" + ], + "authorId": "qsaptKSHuLDU", + "authorSlug": "laozi", + "length": 33 + }, + { + "_id": "hhDqMdHw5w", + "content": "Si existe algo as\u00ed como un buen matrimonio, es porque se parece m\u00e1s a la amistad que al amor.", + "author": "Michel de Montaigne", + "tags": [ + "friendship", + "love" + ], + "authorId": "B2lKC8XK8Dh7", + "authorSlug": "michel-de-montaigne", + "length": 93 + }, + { + "_id": "lnt4f9WI2nt", + "content": "Si un hombre hace lo mejor que puede, \u00bfqu\u00e9 m\u00e1s hay?", + "author": "George S. Patton", + "tags": [ + "famous-quotes" + ], + "authorId": "fdSvvuZORmh4", + "authorSlug": "george-s-patton", + "length": 51 + }, + { + "_id": "WjEYIJ2XWpE5", + "content": "Las palabras bonitas y una apariencia insinuante rara vez se asocian con la verdadera virtud.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 93 + }, + { + "_id": "EEdhZ7MQ8", + "content": "Tu talento es un regalo de Dios para ti. Lo que hagas con \u00e9l es tu regalo a Dios.", + "author": "Leo Buscaglia", + "tags": [ + "inspirational" + ], + "authorId": "XVzZKXv06YQG", + "authorSlug": "leo-buscaglia", + "length": 81 + }, + { + "_id": "jTzIvr-aog", + "content": "Las decisiones r\u00e1pidas son decisiones inseguras.", + "author": "Sophocles", + "tags": [ + "wisdom" + ], + "authorId": "bBwlN7LI2Jtu", + "authorSlug": "sophocles", + "length": 48 + }, + { + "_id": "_0Xe3v-BJjUx", + "content": "Para volar tan r\u00e1pido como el pensamiento, debes comenzar por saber que ya has llegado.", + "author": "Richard Bach", + "tags": [ + "famous-quotes" + ], + "authorId": "t9lNqDH0TmYo", + "authorSlug": "richard-bach", + "length": 87 + }, + { + "_id": "rWlO2ihzqhk", + "content": "Es mejor ser ignorante de un asunto que saberlo a medias.", + "author": "Publilius Syrus", + "tags": [ + "famous-quotes" + ], + "authorId": "uvj7ffI-Yu4z", + "authorSlug": "publilius-syrus", + "length": 57 + }, + { + "_id": "Ckh_FdZYHyf", + "content": "Destruyo a mis enemigos cuando los hago mis amigos.", + "author": "Abraham Lincoln", + "tags": [ + "famous-quotes", + "history", + "politics", + "friendship" + ], + "authorId": "8k75S1ntV9GW", + "authorSlug": "abraham-lincoln", + "length": 51 + }, + { + "_id": "7Gy2Y5Zxuzh", + "content": "El oto\u00f1o es una segunda primavera en la que cada hoja es una flor.", + "author": "Albert Camus", + "tags": [ + "famous-quotes", + "nature" + ], + "authorId": "RmuonXrXY44Z", + "authorSlug": "albert-camus", + "length": 66 + }, + { + "_id": "oG014O92mM", + "content": "La vida es una experiencia de aprendizaje, s\u00f3lo si se aprende.", + "author": "Yogi Berra", + "tags": [ + "famous-quotes" + ], + "authorId": "-HVEQO7Ru6d_", + "authorSlug": "yogi-berra", + "length": 62 + }, + { + "_id": "3v53-XiBvtQK", + "content": "La felicidad es cuando lo que piensas, lo que dices y lo que haces est\u00e1n en armon\u00eda.", + "author": "Mahatma Gandhi", + "tags": [ + "famous-quotes" + ], + "authorId": "4J6_dx73YbT5", + "authorSlug": "mahatma-gandhi", + "length": 84 + }, + { + "_id": "OaGsXXzLiBqf", + "content": "Sin pasi\u00f3n, el hombre es una mera fuerza y \u200b\u200bposibilidad latente, como el pedernal que espera el choque del hierro antes de poder emitir su chispa.", + "author": "Henri-Fr\u00e9d\u00e9ric Amiel", + "tags": [ + "famous-quotes" + ], + "authorId": "AwZcCJD8ICBi", + "authorSlug": "henri-frederic-amiel", + "length": 147 + }, + { + "_id": "a9C880IWYfsD", + "content": "Tu mente responder\u00e1 a la mayor\u00eda de las preguntas si aprendes a relajarte y esperar la respuesta.", + "author": "William Burroughs", + "tags": [ + "famous-quotes" + ], + "authorId": "UFjVKUUywWBZ", + "authorSlug": "william-burroughs", + "length": 97 + }, + { + "_id": "X6UDrdk4ZIk", + "content": "La pura y santa sencillez confunde toda la sabidur\u00eda de este mundo y la sabidur\u00eda de la carne.", + "author": "Francis of Assisi", + "tags": [ + "wisdom" + ], + "authorId": "axdVU-ILRg-V", + "authorSlug": "francis-of-assisi", + "length": 94 + }, + { + "_id": "rc2Yx_x_X0qD", + "content": "Cuanto menos esfuerzo, m\u00e1s r\u00e1pido y poderoso ser\u00e1s.", + "author": "Bruce Lee", + "tags": [ + "famous-quotes" + ], + "authorId": "raaFe2cXACnG", + "authorSlug": "bruce-lee", + "length": 51 + }, + { + "_id": "e1n5aMOunl1g", + "content": "Si s\u00e9 lo que es el amor, es por ti.", + "author": "Hermann Hesse", + "tags": [ + "famous-quotes" + ], + "authorId": "plI0y2ZLokNn", + "authorSlug": "hermann-hesse", + "length": 35 + }, + { + "_id": "hXmMutk9Y8Nd", + "content": "La vida no es un problema a resolver, sino una realidad a experimentar.", + "author": "S\u00f8ren Kierkegaard", + "tags": [ + "famous-quotes" + ], + "authorId": "ZEGr5G7ktW1L", + "authorSlug": "soren-kierkegaard", + "length": 71 + }, + { + "_id": "RFbQKIDffV", + "content": "Decid\u00ed que no era la sabidur\u00eda lo que permit\u00eda a los poetas escribir su poes\u00eda, sino una especie de instinto o inspiraci\u00f3n, como la que se encuentra en los videntes y profetas que entregan todos sus mensajes sublimes sin saber en lo m\u00e1s m\u00ednimo lo que significan.", + "author": "Isocrates", + "tags": [ + "wisdom" + ], + "authorId": "6emd99Cst9Cf", + "authorSlug": "isocrates", + "length": 262 + }, + { + "_id": "DNjQty5jeU", + "content": "Las herramientas de comunicaci\u00f3n no se vuelven socialmente interesantes hasta que se vuelven tecnol\u00f3gicamente aburridas.", + "author": "Clay Shirky", + "tags": [ + "technology" + ], + "authorId": "Y3mgXKqW-", + "authorSlug": "clay-shirky", + "length": 120 + }, + { + "_id": "2i4ILvPHXsgJ", + "content": "Si acepta las expectativas de los dem\u00e1s, especialmente las negativas, nunca cambiar\u00e1 el resultado.", + "author": "Michael Jordan", + "tags": [ + "famous-quotes" + ], + "authorId": "XU7cPmNoohKd", + "authorSlug": "michael-jordan", + "length": 98 + }, + { + "_id": "uqRZV8skVN", + "content": "La forma en que ves a las personas es la forma en que las tratas, y la forma en que las tratas es en lo que se convierten.", + "author": "Johann Wolfgang von Goethe", + "tags": [ + "wisdom" + ], + "authorId": "aW1ZR-8LuS28", + "authorSlug": "johann-wolfgang-von-goethe", + "length": 122 + }, + { + "_id": "ZR3wECF-tFj", + "content": "Es capaz quien se cree capaz.", + "author": "Buddha", + "tags": [ + "famous-quotes" + ], + "authorId": "sUNjshHENA05", + "authorSlug": "buddha", + "length": 29 + }, + { + "_id": "ZP4Osu902G-r", + "content": "El \u00fanico error real es aquel del que no aprendemos nada.", + "author": "John Powell", + "tags": [ + "famous-quotes" + ], + "authorId": "N5zjr1qxROEY", + "authorSlug": "john-powell", + "length": 56 + }, + { + "_id": "gZSiJPLyt_zX", + "content": "Solo hay un rinc\u00f3n del universo que puedes estar seguro de mejorar, y ese es tu propio ser.", + "author": "Aldous Huxley", + "tags": [ + "famous-quotes", + "inspirational" + ], + "authorId": "9B-Gz0CukKAX", + "authorSlug": "aldous-huxley", + "length": 91 + }, + { + "_id": "pt90_r-76Lj5", + "content": "Todos los ni\u00f1os son artistas. El problema es c\u00f3mo seguir siendo un artista una vez que crece.", + "author": "Pablo Picasso", + "tags": [ + "famous-quotes" + ], + "authorId": "atthH9QDwIJB", + "authorSlug": "pablo-picasso", + "length": 93 + }, + { + "_id": "7hfEG8Iv86", + "content": "La amistad es el matrimonio del alma, y \u200b\u200beste matrimonio est\u00e1 sujeto al divorcio.", + "author": "Voltaire", + "tags": [ + "friendship" + ], + "authorId": "ZyuVXKFVTZu8", + "authorSlug": "voltaire", + "length": 82 + }, + { + "_id": "L5sDM2UaWlBt", + "content": "El dolor pasa, pero la belleza permanece.", + "author": "Pierre-Auguste Renoir", + "tags": [ + "famous-quotes" + ], + "authorId": "wuP9CCCc0AtJ", + "authorSlug": "pierre-auguste-renoir", + "length": 41 + }, + { + "_id": "U8B6iFEz1V7", + "content": "Una hormiga en movimiento hace m\u00e1s que un buey dormitando", + "author": "Laozi", + "tags": [ + "famous-quotes" + ], + "authorId": "qsaptKSHuLDU", + "authorSlug": "laozi", + "length": 57 + }, + { + "_id": "k8oFtw9mQpi", + "content": "La p\u00e9rdida no es otra cosa que cambio, y el cambio es el deleite de la Naturaleza.", + "author": "Marcus Aurelius", + "tags": [ + "famous-quotes" + ], + "authorId": "zW_A5fM6XU-v", + "authorSlug": "marcus-aurelius", + "length": 82 + }, + { + "_id": "O91gdjzOjLa6", + "content": "Escucha lo que sabes en lugar de lo que temes.", + "author": "Richard Bach", + "tags": [ + "famous-quotes" + ], + "authorId": "t9lNqDH0TmYo", + "authorSlug": "richard-bach", + "length": 46 + }, + { + "_id": "KaIFTRaBv59T", + "content": "Busca siempre la semilla del triunfo en cada adversidad.", + "author": "Og Mandino", + "tags": [ + "famous-quotes", + "wisdom" + ], + "authorId": "xcLBIo1fbkkh", + "authorSlug": "og-mandino", + "length": 56 + }, + { + "_id": "Wxf1mhZ7ipPU", + "content": "Los hombres en general juzgan m\u00e1s por las apariencias que por la realidad. Todos los hombres tienen ojos, pero pocos tienen el don de la penetraci\u00f3n.", + "author": "Niccol\u00f2 Machiavelli", + "tags": [ + "famous-quotes" + ], + "authorId": "VKXFr-ptJb7Q", + "authorSlug": "niccolo-machiavelli", + "length": 149 + }, + { + "_id": "_WiuNkQC_E_B", + "content": "El pensamiento es la flor; idioma el capullo; acci\u00f3n la fruta detr\u00e1s de \u00e9l.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 75 + }, + { + "_id": "D-KuPZEq59LD", + "content": "El lugar para mejorar el mundo est\u00e1 primero en el propio coraz\u00f3n, la cabeza y las manos.", + "author": "Robert M. Pirsig", + "tags": [ + "famous-quotes" + ], + "authorId": "kahQz7ulPX1A", + "authorSlug": "robert-m-pirsig", + "length": 88 + }, + { + "_id": "CPhGOJeapNYZ", + "content": "Ser probado es bueno. La vida desafiada puede ser el mejor terapeuta.", + "author": "Gail Sheehy", + "tags": [ + "famous-quotes" + ], + "authorId": "XUX3C8oS06Ul", + "authorSlug": "gail-sheehy", + "length": 69 + }, + { + "_id": "bmKMocxtR7bJ", + "content": "Tu espacio sagrado es donde puedes encontrarte una y otra vez.", + "author": "Joseph Campbell", + "tags": [ + "famous-quotes", + "wisdom" + ], + "authorId": "XGIdt8L_MfeP", + "authorSlug": "joseph-campbell", + "length": 62 + }, + { + "_id": "P77hDIkrjYP", + "content": "Estudia el pasado, si quieres adivinar el futuro.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 49 + }, + { + "_id": "uxtOnAdYE7Wn", + "content": "Cuatro pasos para el logro: Planifique con un prop\u00f3sito. Prep\u00e1rese en oraci\u00f3n. Proceder positivamente. Persigue persistentemente.", + "author": "William Arthur Ward", + "tags": [ + "famous-quotes" + ], + "authorId": "BbtbIJLprBVl", + "authorSlug": "william-arthur-ward", + "length": 129 + }, + { + "_id": "5ewQ54oqW1HS", + "content": "No es la posesi\u00f3n de la verdad, sino el \u00e9xito que acompa\u00f1a a la b\u00fasqueda de ella, lo que enriquece al buscador y le trae felicidad.", + "author": "Max Planck", + "tags": [ + "famous-quotes" + ], + "authorId": "ZK_-AtwrrSOs", + "authorSlug": "max-planck", + "length": 131 + }, + { + "_id": "_dfC0aL_AGD4", + "content": "Las grandes ideas a menudo reciben una oposici\u00f3n violenta de mentes mediocres.", + "author": "Albert Einstein", + "tags": [ + "famous-quotes", + "technology" + ], + "authorId": "L76FRuEeGIUJ", + "authorSlug": "albert-einstein", + "length": 78 + }, + { + "_id": "GJxkg5rxv0tw", + "content": "El hombre no es la suma de lo que ya tiene, sino la suma de lo que a\u00fan no tiene, de lo que podr\u00eda tener.", + "author": "Jean-Paul Sartre", + "tags": [ + "famous-quotes" + ], + "authorId": "JDgQh4oi5vVt", + "authorSlug": "jean-paul-sartre", + "length": 104 + }, + { + "_id": "lEjcF-a2-Z5w", + "content": "La sinceridad es el camino del Cielo. El logro de la sinceridad es el camino de los hombres.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 92 + }, + { + "_id": "5V7Gw25dIjvc", + "content": "La felicidad no es algo ya hecho. Eso viene por tus propias acciones.", + "author": "Dalai Lama", + "tags": [ + "famous-quotes" + ], + "authorId": "OPVjtVVBVW5h", + "authorSlug": "dalai-lama", + "length": 69 + }, + { + "_id": "HTn2Q6e3AYr", + "content": "Si quieres ser escritor, escribe.", + "author": "Epictetus", + "tags": [ + "famous-quotes" + ], + "authorId": "HZHaUuiyIJPp", + "authorSlug": "epictetus", + "length": 33 + }, + { + "_id": "UnmE__TaKI", + "content": "En la acci\u00f3n, un gran coraz\u00f3n es la principal cualificaci\u00f3n. En el trabajo, una gran cabeza.", + "author": "Arthur Schopenhauer", + "tags": [ + "wisdom" + ], + "authorId": "SZV21yHaj-Po", + "authorSlug": "arthur-schopenhauer", + "length": 92 + }, + { + "_id": "5mqeP6Q3hWIz", + "content": "Encuentro esperanza en los d\u00edas m\u00e1s oscuros y me concentro en los m\u00e1s brillantes. Yo no juzgo al universo.", + "author": "Dalai Lama", + "tags": [ + "famous-quotes" + ], + "authorId": "OPVjtVVBVW5h", + "authorSlug": "dalai-lama", + "length": 106 + }, + { + "_id": "dnatcNZd_hIB", + "content": "El mayor peligro para la mayor\u00eda de nosotros no es que nuestra meta sea demasiado alta y no la alcancemos, sino que sea demasiado baja y la alcancemos.", + "author": "Michelangelo", + "tags": [ + "famous-quotes" + ], + "authorId": "pik1wvig1y8U", + "authorSlug": "michelangelo", + "length": 151 + }, + { + "_id": "Ls62KqLuousc", + "content": "Todos estamos inclinados a juzgarnos por nuestros ideales; otros, por sus actos.", + "author": "Harold Nicolson", + "tags": [ + "famous-quotes" + ], + "authorId": "cfKFCzivTtqS", + "authorSlug": "harold-nicolson", + "length": 80 + }, + { + "_id": "_hJS3LX4Qz", + "content": "La tecnolog\u00eda tiene que ser inventada o adoptada.", + "author": "Jared Diamond", + "tags": [ + "technology" + ], + "authorId": "jrYQ70dujQ", + "authorSlug": "jared-diamond", + "length": 49 + }, + { + "_id": "UyuJSYkjSwwX", + "content": "Las palabras amables pueden ser cortas y f\u00e1ciles de pronunciar, pero sus ecos son realmente infinitos.", + "author": "Mother Teresa", + "tags": [ + "famous-quotes" + ], + "authorId": "y7OXxqCaXKVa", + "authorSlug": "mother-teresa", + "length": 102 + }, + { + "_id": "Zhr3mv7HgY4u", + "content": "Tu visi\u00f3n se aclarar\u00e1 solo cuando mires dentro de tu coraz\u00f3n. Quien mira afuera, sue\u00f1a. Quien mira hacia adentro, despierta.", + "author": "Carl Jung", + "tags": [ + "famous-quotes" + ], + "authorId": "-LYBJJujV7RL", + "authorSlug": "carl-jung", + "length": 124 + }, + { + "_id": "0dCkJZJYZa75", + "content": "Cuando la soluci\u00f3n es simple, Dios est\u00e1 respondiendo.", + "author": "Albert Einstein", + "tags": [ + "famous-quotes", + "religion" + ], + "authorId": "L76FRuEeGIUJ", + "authorSlug": "albert-einstein", + "length": 53 + }, + { + "_id": "0zPVpv3bI", + "content": "No puedes cruzar el mar simplemente par\u00e1ndote y mirando el agua.", + "author": "Rabindranath Tagore", + "tags": [ + "inspirational" + ], + "authorId": "FYm0s5rHORUu", + "authorSlug": "rabindranath-tagore", + "length": 64 + }, + { + "_id": "aAHoOxRG8pTE", + "content": "Una idea que se desarrolla y se pone en acci\u00f3n es m\u00e1s importante que una idea que existe s\u00f3lo como idea.", + "author": "Buddha", + "tags": [ + "famous-quotes" + ], + "authorId": "sUNjshHENA05", + "authorSlug": "buddha", + "length": 104 + }, + { + "_id": "WSpdlKZYCP", + "content": "Tecnolog\u00eda... la habilidad de organizar el mundo de tal manera que no tengamos que experimentarlo.", + "author": "Max Frisch", + "tags": [ + "technology" + ], + "authorId": "Q1jb5vE0Z", + "authorSlug": "max-frisch", + "length": 98 + }, + { + "_id": "C5_AURs6v6", + "content": "La amistad es la fuente de los mayores placeres, y sin amigos hasta las actividades m\u00e1s agradables se vuelven tediosas.", + "author": "Thomas Aquinas", + "tags": [ + "friendship" + ], + "authorId": "aqllap-WMqA7", + "authorSlug": "thomas-aquinas", + "length": 119 + }, + { + "_id": "UYpi0ue4EwbH", + "content": "No hay que temer nada en la vida, s\u00f3lo hay que entenderlo. Ahora es el momento de comprender m\u00e1s, para que podamos temer menos.", + "author": "Marie Curie", + "tags": [ + "famous-quotes" + ], + "authorId": "Ayk4hyEX7Qbu", + "authorSlug": "marie-curie", + "length": 127 + }, + { + "_id": "JqHe3XeUkv", + "content": "La filosof\u00eda de uno no se expresa mejor en palabras; se expresa en las elecciones que uno hace... y las elecciones que hacemos son, en \u00faltima instancia, nuestra responsabilidad.", + "author": "Eleanor Roosevelt", + "tags": [ + "wisdom" + ], + "authorId": "1X7NWb1oyd21", + "authorSlug": "eleanor-roosevelt", + "length": 177 + }, + { + "_id": "clw722gWp4m", + "content": "La marca invariable de la sabidur\u00eda es ver lo milagroso en lo com\u00fan.", + "author": "Ralph Waldo Emerson", + "tags": [ + "wisdom" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 68 + }, + { + "_id": "ptXvSKlkU4E7", + "content": "Muchos de los fracasos de la vida son personas que no se dieron cuenta de lo cerca que estaban del \u00e9xito cuando se dieron por vencidas.", + "author": "Thomas Edison", + "tags": [ + "famous-quotes" + ], + "authorId": "PC4gkJPlknC3", + "authorSlug": "thomas-edison", + "length": 135 + }, + { + "_id": "uUMvpp64j2oS", + "content": "Entregarse con seriedad a los deberes de los hombres y, respetando a los seres espirituales, mantenerse apartado de ellos, puede llamarse sabidur\u00eda.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 148 + }, + { + "_id": "Dq9hDqahfYjZ", + "content": "La flor m\u00e1s peque\u00f1a es un pensamiento, una vida que responde a alg\u00fan rasgo del Gran Todo, del cual tienen una intuici\u00f3n persistente.", + "author": "Honor\u00e9 de Balzac", + "tags": [ + "famous-quotes" + ], + "authorId": "jcH4GH-fD_Lo", + "authorSlug": "honore-de-balzac", + "length": 132 + }, + { + "_id": "kTmtHqeUMESD", + "content": "En todas las cosas de la naturaleza hay algo de maravilloso.", + "author": "Aristotle", + "tags": [ + "famous-quotes" + ], + "authorId": "Z8j-PYl90GLF", + "authorSlug": "aristotle", + "length": 60 + }, + { + "_id": "sTma0kWPt2", + "content": "La amistad, como el cr\u00e9dito, es m\u00e1s alta cuando no se usa.", + "author": "Elbert Hubbard", + "tags": [ + "friendship" + ], + "authorId": "CBoxna3kOgDk", + "authorSlug": "elbert-hubbard", + "length": 58 + }, + { + "_id": "CF7uqSGvDt", + "content": "Sepa lo que es importante y lo que no lo es. Ten la sabidur\u00eda para saber qu\u00e9 hacer, la integridad para hacerlo, el car\u00e1cter para hacer frente a los que no lo hacen y el coraje para detener a los que no lo hacen.", + "author": "Mark Goulston", + "tags": [ + "wisdom" + ], + "authorId": "0WD9wxpVJN", + "authorSlug": "mark-goulston", + "length": 211 + }, + { + "_id": "9hIehvX23pvr", + "content": "No hay encanto igual a la ternura del coraz\u00f3n.", + "author": "Jane Austen", + "tags": [ + "famous-quotes" + ], + "authorId": "43J5NV_BwtPN", + "authorSlug": "jane-austen", + "length": 46 + }, + { + "_id": "JyWzVBrhCC", + "content": "No recibimos sabidur\u00eda; debemos descubrirlo por nosotros mismos despu\u00e9s de un viaje que nadie puede hacer por nosotros ni prescindir de nosotros.", + "author": "Marcel Proust", + "tags": [ + "wisdom" + ], + "authorId": "Fz5WQF7BjdJg", + "authorSlug": "marcel-proust", + "length": 145 + }, + { + "_id": "E9rnk2e0az", + "content": "Siempre parece imposible hasta que se hace.", + "author": "Nelson Mandela", + "tags": [ + "inspirational" + ], + "authorId": "ubn8tDLlaqk6", + "authorSlug": "nelson-mandela", + "length": 43 + }, + { + "_id": "4iwVD9jYPBp", + "content": "Bien hecho es mejor que bien dicho.", + "author": "Benjamin Franklin", + "tags": [ + "famous-quotes" + ], + "authorId": "xkvcrqREjoOB", + "authorSlug": "benjamin-franklin", + "length": 35 + }, + { + "_id": "Wxg76F8ly83k", + "content": "Pierde una hora por la ma\u00f1ana y pasar\u00e1s todo el d\u00eda busc\u00e1ndolo.", + "author": "Richard Whately", + "tags": [ + "famous-quotes" + ], + "authorId": "woIOC2CwRwXE", + "authorSlug": "richard-whately", + "length": 63 + }, + { + "_id": "ZqHAX7IvZk", + "content": "Si quieres ir al este, no vayas al oeste.", + "author": "Ramakrishna", + "tags": [ + "wisdom" + ], + "authorId": "ndMmFugJSl", + "authorSlug": "ramakrishna", + "length": 41 + }, + { + "_id": "vpHGlmeIu3Oz", + "content": "Nunca comprendemos lo poco que necesitamos en este mundo hasta que sabemos que lo hemos perdido.", + "author": "J. M. Barrie", + "tags": [ + "famous-quotes", + "wisdom" + ], + "authorId": "5PJN9vn8epVR", + "authorSlug": "j-m-barrie", + "length": 96 + }, + { + "_id": "vkR90rDh-ZSA", + "content": "La esperanza suscita, como nada m\u00e1s puede suscitar, una pasi\u00f3n por lo posible.", + "author": "William Sloane Coffin", + "tags": [ + "famous-quotes" + ], + "authorId": "-yyCeRZpAZLI", + "authorSlug": "william-sloane-coffin", + "length": 78 + }, + { + "_id": "x8zoyRtfIPRg", + "content": "Me preparar\u00e9 y alg\u00fan d\u00eda llegar\u00e1 mi oportunidad.", + "author": "Abraham Lincoln", + "tags": [ + "famous-quotes", + "inspirational" + ], + "authorId": "8k75S1ntV9GW", + "authorSlug": "abraham-lincoln", + "length": 48 + }, + { + "_id": "UG8slERojHSm", + "content": "Nos ganamos la vida con lo que recibimos, pero hacemos una vida con lo que damos.", + "author": "Winston Churchill", + "tags": [ + "famous-quotes" + ], + "authorId": "FEM0nF4bj5r7", + "authorSlug": "winston-churchill", + "length": 81 + }, + { + "_id": "CPwqIPvFW_", + "content": "Defino la amistad como un v\u00ednculo que trasciende todas las barreras. Cuando est\u00e1s listo para esperar cualquier cosa de tus amigos, buenos, malos o feos... eso es lo que yo llamo amistad verdadera.", + "author": "Harbhajan Singh", + "tags": [ + "friendship" + ], + "authorId": "BS1P-Cx9G", + "authorSlug": "harbhajan-singh", + "length": 196 + }, + { + "_id": "MJmapSmIK3", + "content": "Cuanta m\u00e1s arena se haya escapado del reloj de arena de nuestra vida, m\u00e1s claro deber\u00edamos ver a trav\u00e9s de \u00e9l.", + "author": "Jean-Paul Sartre", + "tags": [ + "wisdom" + ], + "authorId": "JDgQh4oi5vVt", + "authorSlug": "jean-paul-sartre", + "length": 110 + }, + { + "_id": "Z_9VClTWUcSv", + "content": "Conf\u00eda solo en el movimiento. La vida sucede al nivel de los acontecimientos, no de las palabras. Movimiento de confianza.", + "author": "Alfred Adler", + "tags": [ + "famous-quotes", + "life" + ], + "authorId": "tNaHUH10_lky", + "authorSlug": "alfred-adler", + "length": 122 + }, + { + "_id": "eoqYvztdD6Xo", + "content": "No puedes recorrer el camino hasta que te hayas convertido en el camino mismo.", + "author": "Buddha", + "tags": [ + "famous-quotes" + ], + "authorId": "sUNjshHENA05", + "authorSlug": "buddha", + "length": 78 + }, + { + "_id": "u3yMrJpE9TSf", + "content": "Por supuesto, no existe una f\u00f3rmula para el \u00e9xito excepto quiz\u00e1s una aceptaci\u00f3n incondicional de la vida y lo que trae consigo.", + "author": "Arthur Rubinstein", + "tags": [ + "famous-quotes" + ], + "authorId": "KKoxEah_YUax", + "authorSlug": "arthur-rubinstein", + "length": 127 + }, + { + "_id": "PCE3W7VuJfnu", + "content": "No hay nada tan in\u00fatil como hacer eficientemente lo que no se debe hacer en absoluto.", + "author": "Peter Drucker", + "tags": [ + "famous-quotes" + ], + "authorId": "01aQwjpXclCh", + "authorSlug": "peter-drucker", + "length": 85 + }, + { + "_id": "PTVGpNzPj2ip", + "content": "No estoy en este mundo para estar a la altura de tus expectativas y t\u00fa no est\u00e1s en este mundo para estar a la altura de las m\u00edas.", + "author": "Bruce Lee", + "tags": [ + "famous-quotes" + ], + "authorId": "raaFe2cXACnG", + "authorSlug": "bruce-lee", + "length": 129 + }, + { + "_id": "hwA4bNHgJPCa", + "content": "Las imposibilidades son simplemente cosas que a\u00fan no hemos aprendido.", + "author": "Charles W. Chesnutt", + "tags": [ + "famous-quotes" + ], + "authorId": "ATQjES-_ebWe", + "authorSlug": "charles-w-chesnutt", + "length": 69 + }, + { + "_id": "GnTIVgh6A0KW", + "content": "Trabaja mientras tengas la luz. Eres responsable del talento que te ha sido confiado.", + "author": "Henri-Fr\u00e9d\u00e9ric Amiel", + "tags": [ + "famous-quotes" + ], + "authorId": "AwZcCJD8ICBi", + "authorSlug": "henri-frederic-amiel", + "length": 85 + }, + { + "_id": "I6Dxu4p7VBt", + "content": "Para volar, tenemos que tener resistencia.", + "author": "Maya Lin", + "tags": [ + "famous-quotes" + ], + "authorId": "lySRln7fv5Tr", + "authorSlug": "maya-lin", + "length": 42 + }, + { + "_id": "WJ5c36Guag1", + "content": "Te dar\u00e9 una definici\u00f3n de un hombre orgulloso: es un hombre que no tiene vanidad ni sabidur\u00eda uno lleno de odios no puede ser vanidoso, tampoco puede ser sabio.", + "author": "John Keats", + "tags": [ + "wisdom" + ], + "authorId": "mXQPMe-Kg_wJ", + "authorSlug": "john-keats", + "length": 160 + }, + { + "_id": "GwbIPJqtzp", + "content": "La sabidur\u00eda nunca ha hecho un fan\u00e1tico, pero el aprendizaje s\u00ed.", + "author": "Josh Billings", + "tags": [ + "wisdom" + ], + "authorId": "OIytiShDXY", + "authorSlug": "josh-billings", + "length": 64 + }, + { + "_id": "TLfamqFncI8p", + "content": "No hay fracasos. Solo experiencias y tus reacciones a ellas.", + "author": "Tom Krause", + "tags": [ + "famous-quotes" + ], + "authorId": "qhAZivyJJPzu", + "authorSlug": "tom-krause", + "length": 60 + }, + { + "_id": "1YubdPwZ3e", + "content": "Es bueno que incluso los ancianos aprendan sabidur\u00eda.", + "author": "Aeschylus", + "tags": [ + "wisdom" + ], + "authorId": "ossJxB6-1", + "authorSlug": "aeschylus", + "length": 53 + }, + { + "_id": "fjzdxv7x2mJd", + "content": "Por cada falla, hay un curso de acci\u00f3n alternativo. S\u00f3lo tienes que encontrarlo. Cuando llegue a un control de carretera, tome un desv\u00edo.", + "author": "Mary Kay Ash", + "tags": [ + "famous-quotes" + ], + "authorId": "I0bbus5BtlYr", + "authorSlug": "mary-kay-ash", + "length": 137 + }, + { + "_id": "Z_czr8xado", + "content": "La l\u00f3gica es el comienzo de la sabidur\u00eda, no el final.", + "author": "Leonard Nimoy", + "tags": [ + "wisdom" + ], + "authorId": "WTcob-0b_G", + "authorSlug": "leonard-nimoy", + "length": 54 + }, + { + "_id": "0PnL1GPc2muX", + "content": "El mayor bien que puedes hacer por otro no es solo compartir tus riquezas, sino revelarles las suyas propias.", + "author": "Benjamin Disraeli", + "tags": [ + "famous-quotes" + ], + "authorId": "xAJjt7yV9kyd", + "authorSlug": "benjamin-disraeli", + "length": 109 + }, + { + "_id": "u5VbhYCVo5Jz", + "content": "No puedo darte la f\u00f3rmula para el \u00e9xito, pero puedo darte la f\u00f3rmula para el fracaso: que es: Trata de complacer a todos.", + "author": "Herbert Bayard Swope", + "tags": [ + "famous-quotes" + ], + "authorId": "n4zQiBQc-Ifw", + "authorSlug": "herbert-bayard-swope", + "length": 121 + }, + { + "_id": "BsZbjg9hrAVI", + "content": "Si buscas la verdad, no buscar\u00e1s la victoria por medios deshonrosos, y si encuentras la verdad, te volver\u00e1s invencible.", + "author": "Epictetus", + "tags": [ + "famous-quotes" + ], + "authorId": "HZHaUuiyIJPp", + "authorSlug": "epictetus", + "length": 119 + }, + { + "_id": "c6xalG3uXL4n", + "content": "La imaginaci\u00f3n es el poder vivo y el principal agente de toda percepci\u00f3n humana.", + "author": "Samuel Taylor Coleridge", + "tags": [ + "famous-quotes" + ], + "authorId": "LAOTQVvhPNFp", + "authorSlug": "samuel-taylor-coleridge", + "length": 80 + }, + { + "_id": "Q0q53LrtbHm0", + "content": "Los que saben, hacen. Los que entienden, ense\u00f1an.", + "author": "Aristotle", + "tags": [ + "famous-quotes" + ], + "authorId": "Z8j-PYl90GLF", + "authorSlug": "aristotle", + "length": 49 + }, + { + "_id": "ComoDwgAEY2", + "content": "La buena madera no crece con facilidad; cuanto m\u00e1s fuerte es el viento, m\u00e1s fuertes son los \u00e1rboles.", + "author": "J. Willard Marriott", + "tags": [ + "famous-quotes" + ], + "authorId": "v7osO_Koh9Ik", + "authorSlug": "j-willard-marriott", + "length": 100 + }, + { + "_id": "Dqqwo96Tximg", + "content": "Un hombre puede cumplir el objeto de su existencia haciendo una pregunta que no puede responder e intentando una tarea que no puede lograr.", + "author": "Oliver Wendell Holmes Jr.", + "tags": [ + "famous-quotes" + ], + "authorId": "qa_R4Oc97JXq", + "authorSlug": "oliver-wendell-holmes-jr", + "length": 139 + }, + { + "_id": "V7HF0nCuOodn", + "content": "La gratitud le da sentido a nuestro pasado, trae paz para hoy y crea una visi\u00f3n para el ma\u00f1ana.", + "author": "Melody Beattie", + "tags": [ + "famous-quotes" + ], + "authorId": "_rCUwICbu1j2", + "authorSlug": "melody-beattie", + "length": 95 + }, + { + "_id": "ISX_zfx8abzc", + "content": "No hay deber que menospreciemos tanto como el deber de ser felices. Siendo felices sembramos beneficios an\u00f3nimos sobre el mundo.", + "author": "Robert Louis Stevenson", + "tags": [ + "famous-quotes" + ], + "authorId": "qKwGWW8zDYtf", + "authorSlug": "robert-louis-stevenson", + "length": 128 + }, + { + "_id": "6Kl3UT6ULk", + "content": "La sabidur\u00eda, la compasi\u00f3n y el coraje son las tres cualidades morales universalmente reconocidas de los hombres.", + "author": "Confucius", + "tags": [ + "wisdom" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 113 + }, + { + "_id": "0FJtHaraIRKe", + "content": "Nunca sabremos todo el bien que puede hacer una simple sonrisa.", + "author": "Mother Teresa", + "tags": [ + "famous-quotes" + ], + "authorId": "y7OXxqCaXKVa", + "authorSlug": "mother-teresa", + "length": 63 + }, + { + "_id": "h3vqfIeuhcho", + "content": "Lo mejor en todo sue\u00f1o noble es el so\u00f1ador...", + "author": "Moncure D. Conway", + "tags": [ + "famous-quotes" + ], + "authorId": "ZpPm6ZTW9GLu", + "authorSlug": "moncure-d-conway", + "length": 45 + }, + { + "_id": "hUUF65Y82g7", + "content": "La vida se encoge o se expande en proporci\u00f3n al coraje de uno.", + "author": "Ana\u00efs Nin", + "tags": [ + "famous-quotes" + ], + "authorId": "MMvH-cw49Y9t", + "authorSlug": "anais-nin", + "length": 62 + }, + { + "_id": "y1RIkUSWFpl", + "content": "El mejor remedio para la ira es la demora.", + "author": "Seneca the Younger", + "tags": [ + "famous-quotes" + ], + "authorId": "TyeFCuRgEQjD", + "authorSlug": "seneca-the-younger", + "length": 42 + }, + { + "_id": "ehBmRJ9WwXKK", + "content": "Un jard\u00edn es siempre una serie de p\u00e9rdidas frente a unos pocos triunfos, como la vida misma.", + "author": "May Sarton", + "tags": [ + "famous-quotes" + ], + "authorId": "aLFrwqpJQ9zs", + "authorSlug": "may-sarton", + "length": 92 + }, + { + "_id": "t7STDz8m6QIp", + "content": "Los hombres m\u00e1s sabios siguen su propia direcci\u00f3n.", + "author": "Euripides", + "tags": [ + "famous-quotes" + ], + "authorId": "yVMYpy-GWWFq", + "authorSlug": "euripides", + "length": 50 + }, + { + "_id": "lvcJukDLhxz3", + "content": "La diferencia entre lo que hacemos y lo que somos capaces de hacer bastar\u00eda para resolver la mayor\u00eda de los problemas del mundo.", + "author": "Mahatma Gandhi", + "tags": [ + "famous-quotes" + ], + "authorId": "4J6_dx73YbT5", + "authorSlug": "mahatma-gandhi", + "length": 128 + }, + { + "_id": "COOYD278-JAr", + "content": "El hombre superior es modesto en su discurso, pero se excede en sus acciones.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 77 + }, + { + "_id": "XQKtTxtLnshu", + "content": "El cambio no vendr\u00e1 si esperamos a alguna otra persona o en alg\u00fan otro momento. Nosotros somos los que hemos estado esperando. Somos el cambio que buscamos.", + "author": "Barack Obama", + "tags": [ + "famous-quotes" + ], + "authorId": "Xt2CsBHup4NB", + "authorSlug": "barack-obama", + "length": 156 + }, + { + "_id": "IxrwsheO2w6", + "content": "Dondequiera que vayas, ve con todo tu coraz\u00f3n.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 46 + }, + { + "_id": "g4URs5hS3Taq", + "content": "Una vida dedicada a cometer errores no solo es m\u00e1s honorable, sino m\u00e1s \u00fatil que una vida dedicada a no hacer nada.", + "author": "George Bernard Shaw", + "tags": [ + "famous-quotes" + ], + "authorId": "zKfoVjq84t9O", + "authorSlug": "george-bernard-shaw", + "length": 114 + }, + { + "_id": "IROEi_B-5kj", + "content": "Si te propones agradar, estar\u00edas dispuesto a ceder en cualquier cosa en cualquier momento y no lograr\u00edas nada.", + "author": "Margaret Thatcher", + "tags": [ + "wisdom" + ], + "authorId": "WVe0z8ZowG", + "authorSlug": "margaret-thatcher", + "length": 110 + }, + { + "_id": "t3KpUGU3apks", + "content": "S\u00e9 como la flor, vuelve tu rostro hacia el sol.", + "author": "Kahlil Gibran", + "tags": [ + "famous-quotes" + ], + "authorId": "h05GYnKzckM3", + "authorSlug": "kahlil-gibran", + "length": 47 + }, + { + "_id": "N6l6bDDcBP", + "content": "La amistad multiplica el bien de la vida y divide el mal.", + "author": "Baltasar Graci\u00e1n", + "tags": [ + "friendship" + ], + "authorId": "NOw0qSU2RzF5", + "authorSlug": "baltasar-gracian", + "length": 57 + }, + { + "_id": "SQxIxT9EoucK", + "content": "La bondad es la cadena de oro por la cual la sociedad est\u00e1 unida.", + "author": "Johann Wolfgang von Goethe", + "tags": [ + "famous-quotes" + ], + "authorId": "aW1ZR-8LuS28", + "authorSlug": "johann-wolfgang-von-goethe", + "length": 65 + }, + { + "_id": "ay74-DkPYiOq", + "content": "A veces tu alegr\u00eda es la fuente de tu sonrisa, pero a veces tu sonrisa puede ser la fuente de tu alegr\u00eda.", + "author": "Th\u00edch Nh\u1ea5t H\u1ea1nh", + "tags": [ + "famous-quotes" + ], + "authorId": "N0pHADD097gY", + "authorSlug": "thich-nh\u1ea5t-h\u1ea1nh", + "length": 105 + }, + { + "_id": "amF1FDsLD6", + "content": "Un amigo es alguien que te da total libertad para ser t\u00fa mismo.", + "author": "Jim Morrison", + "tags": [ + "friendship" + ], + "authorId": "Rt3UK3h72", + "authorSlug": "jim-morrison", + "length": 63 + }, + { + "_id": "eWtR9nXnZ", + "content": "Haz las cosas dif\u00edciles mientras son f\u00e1ciles y haz las grandes cosas mientras son peque\u00f1as. Un viaje de mil millas debe comenzar con un solo paso.", + "author": "Laozi", + "tags": [ + "inspirational" + ], + "authorId": "qsaptKSHuLDU", + "authorSlug": "laozi", + "length": 146 + }, + { + "_id": "VHFFYD5KcXN6", + "content": "He hecho lo mejor que he podido: esa es toda la filosof\u00eda de vida que uno necesita.", + "author": "Lin Yutang", + "tags": [ + "famous-quotes" + ], + "authorId": "99cr5SHT23eb", + "authorSlug": "lin-yutang", + "length": 83 + }, + { + "_id": "oQnbzQ_W0gJS", + "content": "Nunca confundas movimiento con acci\u00f3n.", + "author": "Ernest Hemingway", + "tags": [ + "famous-quotes" + ], + "authorId": "QEUcQP7NFqk7", + "authorSlug": "ernest-hemingway", + "length": 38 + }, + { + "_id": "8IyWC1hl--Je", + "content": "T\u00fa mismo, tanto como cualquiera en el universo entero, mereces tu amor y afecto.", + "author": "Buddha", + "tags": [ + "famous-quotes" + ], + "authorId": "sUNjshHENA05", + "authorSlug": "buddha", + "length": 80 + }, + { + "_id": "8TXdurkixxgm", + "content": "Preg\u00fantate el secreto de tu \u00e9xito. Escucha tu respuesta y pract\u00edcala.", + "author": "Richard Bach", + "tags": [ + "famous-quotes" + ], + "authorId": "t9lNqDH0TmYo", + "authorSlug": "richard-bach", + "length": 69 + }, + { + "_id": "-ZfnGHueyp", + "content": "Dame una palanca lo suficientemente larga y un fulcro sobre el cual colocarla, y mover\u00e9 el mundo.", + "author": "Archimedes", + "tags": [ + "wisdom" + ], + "authorId": "vKwA_aAsd", + "authorSlug": "archimedes", + "length": 97 + }, + { + "_id": "NN3kZRTt4V", + "content": "La santa sabidur\u00eda confunde a Satan\u00e1s y todas sus maldades.", + "author": "Francis of Assisi", + "tags": [ + "wisdom" + ], + "authorId": "axdVU-ILRg-V", + "authorSlug": "francis-of-assisi", + "length": 59 + }, + { + "_id": "0I3MzxBI2Cyo", + "content": "La vida es una sucesi\u00f3n de lecciones, que hay que vivir para comprender.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 72 + }, + { + "_id": "x4gbVTU0f3TW", + "content": "El \u00fanico l\u00edmite para su impacto es su imaginaci\u00f3n y compromiso.", + "author": "Tony Robbins", + "tags": [ + "famous-quotes" + ], + "authorId": "IkUGwHTcaXs9", + "authorSlug": "tony-robbins", + "length": 63 + }, + { + "_id": "R80GBolDfAev", + "content": "La vida es como una alcantarilla. Lo que obtienes de \u00e9l depende de lo que pones en \u00e9l.", + "author": "Tom Lehrer", + "tags": [ + "famous-quotes" + ], + "authorId": "Gfzo6r8aTiV0", + "authorSlug": "tom-lehrer", + "length": 86 + }, + { + "_id": "D_S3tmLBb8", + "content": "Un hombre debe ser lo suficientemente grande para admitir sus errores, lo suficientemente inteligente para sacar provecho de ellos y lo suficientemente fuerte para corregirlos.", + "author": "John C. Maxwell", + "tags": [ + "wisdom" + ], + "authorId": "kq5XYblNhYOH", + "authorSlug": "john-c-maxwell", + "length": 176 + }, + { + "_id": "p8BRVIq75p-D", + "content": "Si ha cometido errores, siempre hay otra oportunidad para usted. Puede tener un nuevo comienzo en cualquier momento que elija.", + "author": "Mary Pickford", + "tags": [ + "famous-quotes" + ], + "authorId": "9bUEqH8C5ewT", + "authorSlug": "mary-pickford", + "length": 126 + }, + { + "_id": "ahrACwvb84Z4", + "content": "Quiero que seas todo lo que eres t\u00fa, en lo profundo del centro de tu ser.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 73 + }, + { + "_id": "-DUavsjRcctX", + "content": "\u00bfTe imaginas lo que har\u00eda si pudiera hacer todo lo que puedo?", + "author": "Sun Tzu", + "tags": [ + "famous-quotes" + ], + "authorId": "G-QcoRJkxKHQ", + "authorSlug": "sun-tzu", + "length": 61 + }, + { + "_id": "MFFCMyuycWf", + "content": "Que nuestro jard\u00edn del coraz\u00f3n del despertar florezca con cientos de flores.", + "author": "Th\u00edch Nh\u1ea5t H\u1ea1nh", + "tags": [ + "famous-quotes" + ], + "authorId": "N0pHADD097gY", + "authorSlug": "thich-nh\u1ea5t-h\u1ea1nh", + "length": 76 + }, + { + "_id": "u80cGRXHeCeH", + "content": "Cuando veas a una buena persona, piensa en volverte como \u00e9l. Cuando veas a alguien que no es tan bueno, reflexiona sobre tus propios puntos d\u00e9biles.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 148 + }, + { + "_id": "qgRPI2mMJRZv", + "content": "Un hombre que no conf\u00eda en s\u00ed mismo nunca puede confiar realmente en nadie m\u00e1s.", + "author": "Jean Fran\u00e7ois Paul de Gondi", + "tags": [ + "famous-quotes" + ], + "authorId": "Ch_fdSLdPZCo", + "authorSlug": "jean-francois-paul-de-gondi", + "length": 79 + }, + { + "_id": "H_FnIEJXHrGU", + "content": "Cuando bailas, tu prop\u00f3sito no es llegar a un lugar determinado en la pista. Es disfrutar cada paso del camino.", + "author": "Wayne Dyer", + "tags": [ + "famous-quotes" + ], + "authorId": "CLxflG5QMMjg", + "authorSlug": "wayne-dyer", + "length": 111 + }, + { + "_id": "AKE0_H6LR05G", + "content": "Nuestras vidas son la suma total de las elecciones que hemos hecho.", + "author": "Wayne Dyer", + "tags": [ + "famous-quotes" + ], + "authorId": "CLxflG5QMMjg", + "authorSlug": "wayne-dyer", + "length": 67 + }, + { + "_id": "eJ2Odi1UbNvj", + "content": "Es en nuestros fracasos que basamos un \u00e9xito nuevo, diferente y mejor.", + "author": "Havelock Ellis", + "tags": [ + "famous-quotes" + ], + "authorId": "sZYcfd1P_aHz", + "authorSlug": "havelock-ellis", + "length": 70 + }, + { + "_id": "gO2rEcTrwLo7", + "content": "Cuando el destino nos da un lim\u00f3n, intentemos hacer limonada.", + "author": "Dale Carnegie", + "tags": [ + "famous-quotes" + ], + "authorId": "D1RNG5b9TsXN", + "authorSlug": "dale-carnegie", + "length": 61 + }, + { + "_id": "FO4v4ZdByU", + "content": "No se puede decir que un hombre tenga \u00e9xito en esta vida si no satisface a un amigo.", + "author": "Henry David Thoreau", + "tags": [ + "friendship" + ], + "authorId": "NrthgQlym1Ji", + "authorSlug": "henry-david-thoreau", + "length": 84 + }, + { + "_id": "3Jk60HlbZFu9", + "content": "Cada gran sue\u00f1o comienza con un so\u00f1ador. Recuerda siempre, tienes dentro de ti la fuerza, la paciencia y la pasi\u00f3n para alcanzar las estrellas para cambiar el mundo.", + "author": "Harriet Tubman", + "tags": [ + "famous-quotes" + ], + "authorId": "_z5JX-jIyYsz", + "authorSlug": "harriet-tubman", + "length": 165 + }, + { + "_id": "0lnHVeiNr0un", + "content": "Deben cambiar a menudo, quienes ser\u00edan constantes en felicidad o sabidur\u00eda.", + "author": "Confucius", + "tags": [ + "famous-quotes", + "wisdom" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 75 + }, + { + "_id": "Ov1F2nueFuMN", + "content": "El silencio es una fuente de gran fuerza.", + "author": "Laozi", + "tags": [ + "famous-quotes" + ], + "authorId": "qsaptKSHuLDU", + "authorSlug": "laozi", + "length": 41 + }, + { + "_id": "Aya0eLpghjxG", + "content": "El prop\u00f3sito del aprendizaje es el crecimiento y nuestras mentes, a diferencia de nuestros cuerpos, pueden seguir creciendo mientras vivimos.", + "author": "Mortimer J. Adler", + "tags": [ + "famous-quotes" + ], + "authorId": "tjrclR27CkGm", + "authorSlug": "mortimer-j-adler", + "length": 141 + }, + { + "_id": "Qkl55U0twCr", + "content": "No llores porque se acab\u00f3. Sonr\u00ede por que ocurri\u00f3.", + "author": "Dr. Seuss", + "tags": [ + "famous-quotes" + ], + "authorId": "oHmf28pJEUHo", + "authorSlug": "dr-seuss", + "length": 50 + }, + { + "_id": "p3WMuYECz33S", + "content": "El significado que eleg\u00ed, el que cambi\u00f3 mi vida: Superar el miedo, contemplar el asombro.", + "author": "Richard Bach", + "tags": [ + "famous-quotes" + ], + "authorId": "t9lNqDH0TmYo", + "authorSlug": "richard-bach", + "length": 89 + }, + { + "_id": "yzPY72AXGkD", + "content": "La causa est\u00e1 oculta. El efecto es visible para todos.", + "author": "Ovid", + "tags": [ + "famous-quotes" + ], + "authorId": "f9utPohz0fgH", + "authorSlug": "ovid", + "length": 54 + }, + { + "_id": "fAyIjkZePx", + "content": "El que aprende debe sufrir. E incluso en nuestro sue\u00f1o el dolor que no puede olvidar cae gota a gota sobre el coraz\u00f3n, y en nuestra propia desesperaci\u00f3n, contra nuestra voluntad, nos llega la sabidur\u00eda por la terrible gracia de Dios.", + "author": "Aeschylus", + "tags": [ + "wisdom" + ], + "authorId": "ossJxB6-1", + "authorSlug": "aeschylus", + "length": 233 + }, + { + "_id": "PnQ8g2gz_sY2", + "content": "Nunca me preocupo por la acci\u00f3n, sino s\u00f3lo por la inacci\u00f3n.", + "author": "Winston Churchill", + "tags": [ + "famous-quotes" + ], + "authorId": "FEM0nF4bj5r7", + "authorSlug": "winston-churchill", + "length": 59 + }, + { + "_id": "SBqsC7DOKoC0", + "content": "En el centro de tu ser tienes la respuesta; sabes qui\u00e9n eres y sabes lo que quieres.", + "author": "Laozi", + "tags": [ + "famous-quotes" + ], + "authorId": "qsaptKSHuLDU", + "authorSlug": "laozi", + "length": 84 + }, + { + "_id": "ykXP-CFk_G", + "content": "Si est\u00e1s tratando de lograrlo, habr\u00e1 obst\u00e1culos. los he tenido; todo el mundo los ha tenido. Pero los obst\u00e1culos no tienen por qu\u00e9 detenerte. Si chocas contra una pared, no te des la vuelta y te rindas. Averigua c\u00f3mo escalarlo, atravesarlo o sortearlo.", + "author": "Michael Jordan", + "tags": [ + "wisdom", + "inspirational" + ], + "authorId": "XU7cPmNoohKd", + "authorSlug": "michael-jordan", + "length": 252 + }, + { + "_id": "5lsIG8ZCgvy4", + "content": "No ser\u00e1s castigado por tu ira, ser\u00e1s castigado por tu ira.", + "author": "Buddha", + "tags": [ + "famous-quotes" + ], + "authorId": "sUNjshHENA05", + "authorSlug": "buddha", + "length": 58 + }, + { + "_id": "NcBJY-YJ58W", + "content": "Los problemas son solo oportunidades con espinas en ellos.", + "author": "Hugh Miller", + "tags": [ + "famous-quotes" + ], + "authorId": "ZYuzRDdhCJIh", + "authorSlug": "hugh-miller", + "length": 58 + }, + { + "_id": "oyagVQRGL7", + "content": "El perd\u00f3n es ese hilo sutil que une tanto el amor como la amistad. Sin perd\u00f3n, es posible que ni siquiera tengas un hijo alg\u00fan d\u00eda.", + "author": "George Foreman", + "tags": [ + "friendship" + ], + "authorId": "3RxG2j5eRN", + "authorSlug": "george-foreman", + "length": 131 + }, + { + "_id": "NQwosr41uhx0", + "content": "No podemos hacer todo a la vez, pero podemos hacer algo a la vez.", + "author": "Calvin Coolidge", + "tags": [ + "famous-quotes" + ], + "authorId": "bUWx0bMUCf8X", + "authorSlug": "calvin-coolidge", + "length": 65 + }, + { + "_id": "BLQOsYJz2jn1", + "content": "Considere que los pensamientos y las emociones negativas no solo destruyen nuestra experiencia de paz, sino que tambi\u00e9n socavan nuestra salud.", + "author": "Dalai Lama", + "tags": [ + "famous-quotes" + ], + "authorId": "OPVjtVVBVW5h", + "authorSlug": "dalai-lama", + "length": 142 + }, + { + "_id": "OawbCWOFWi", + "content": "El umbral del templo de la sabidur\u00eda es el conocimiento de nuestra propia ignorancia.", + "author": "Benjamin Franklin", + "tags": [ + "wisdom" + ], + "authorId": "xkvcrqREjoOB", + "authorSlug": "benjamin-franklin", + "length": 85 + }, + { + "_id": "eulsh4ijgp", + "content": "No es tonto el que da lo que no puede conservar para ganar lo que no puede perder.", + "author": "Jim Elliot", + "tags": [ + "wisdom" + ], + "authorId": "wlnB5ark0s", + "authorSlug": "jim-elliot", + "length": 82 + }, + { + "_id": "I8UvAqPYmS", + "content": "Entre decir y hacer, m\u00e1s de un par de zapatos se gastan.", + "author": "Iris Murdoch", + "tags": [ + "wisdom" + ], + "authorId": "v2Jk1rHcsGne", + "authorSlug": "iris-murdoch", + "length": 56 + }, + { + "_id": "AJB3CSbvVFm", + "content": "Si el zapato no calza, \u00bfdebemos cambiar el pie?", + "author": "Gloria Steinem", + "tags": [ + "famous-quotes" + ], + "authorId": "6T6dO1lyfHYK", + "authorSlug": "gloria-steinem", + "length": 47 + }, + { + "_id": "yOGaxdDvToGD", + "content": "Cuando llegues al final de la cuerda, haz un nudo y aguanta.", + "author": "Franklin D. Roosevelt", + "tags": [ + "famous-quotes" + ], + "authorId": "ejqEsEP8JKVz", + "authorSlug": "franklin-d-roosevelt", + "length": 60 + }, + { + "_id": "1RmEkIqT9Cyn", + "content": "Nada es finalmente sagrado sino la integridad de tu propia mente.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 65 + }, + { + "_id": "_mOXeW2AnSF", + "content": "Un hoy vale por dos ma\u00f1anas.", + "author": "Benjamin Franklin", + "tags": [ + "famous-quotes" + ], + "authorId": "xkvcrqREjoOB", + "authorSlug": "benjamin-franklin", + "length": 28 + }, + { + "_id": "GhOSPuEiMn", + "content": "Toda nuestra tecnolog\u00eda es completamente innecesaria para una vida feliz.", + "author": "Tom Hodgkinson", + "tags": [ + "technology" + ], + "authorId": "mkjqOol8P-", + "authorSlug": "tom-hodgkinson", + "length": 73 + }, + { + "_id": "-wz9LjinT4y9", + "content": "Es fatal entrar en una guerra sin la voluntad de ganarla.", + "author": "Douglas MacArthur", + "tags": [ + "famous-quotes" + ], + "authorId": "xquqK-EhBty5", + "authorSlug": "douglas-mac-arthur", + "length": 57 + }, + { + "_id": "y7YpPYyHzK6", + "content": "La ausencia hace crecer el cari\u00f1o.", + "author": "Thomas Haynes Bayly", + "tags": [ + "famous-quotes" + ], + "authorId": "z0LsGNVaG28E", + "authorSlug": "thomas-haynes-bayly", + "length": 34 + }, + { + "_id": "XlBqWMF7hx5z", + "content": "Cuando juzgas a otro, no lo defines, te defines a ti mismo.", + "author": "Wayne Dyer", + "tags": [ + "famous-quotes" + ], + "authorId": "CLxflG5QMMjg", + "authorSlug": "wayne-dyer", + "length": 59 + }, + { + "_id": "3qJt6fZmCanr", + "content": "Dar el ejemplo no es el medio principal para influir en otro, es el \u00fanico medio.", + "author": "Albert Einstein", + "tags": [ + "famous-quotes" + ], + "authorId": "L76FRuEeGIUJ", + "authorSlug": "albert-einstein", + "length": 80 + }, + { + "_id": "gwQJOur7lHXd", + "content": "Sea siempre consciente de la bondad y no de las faltas de los dem\u00e1s.", + "author": "Buddha", + "tags": [ + "famous-quotes" + ], + "authorId": "sUNjshHENA05", + "authorSlug": "buddha", + "length": 68 + }, + { + "_id": "HuuK4BGIf2", + "content": "Nunca extiendas tu mano a menos que est\u00e9s dispuesto a extender un brazo.", + "author": "Pope Paul VI", + "tags": [ + "wisdom" + ], + "authorId": "lZLSkbMoC0", + "authorSlug": "pope-paul-vi", + "length": 72 + }, + { + "_id": "UXR4urX1Deim", + "content": "Es importante saber que las palabras no mueven monta\u00f1as. El trabajo, el trabajo exigente mueve monta\u00f1as.", + "author": "Danilo Dolci", + "tags": [ + "famous-quotes" + ], + "authorId": "H9V0Xl8JL5Ui", + "authorSlug": "danilo-dolci", + "length": 104 + }, + { + "_id": "lO_ELfmBRTMq", + "content": "Debes hacer las cosas que crees que no puedes hacer.", + "author": "Eleanor Roosevelt", + "tags": [ + "famous-quotes" + ], + "authorId": "1X7NWb1oyd21", + "authorSlug": "eleanor-roosevelt", + "length": 52 + }, + { + "_id": "Yk5zlxPAS_M7", + "content": "Escucho y olvido. Veo y recuerdo. Lo hago y lo entiendo.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 56 + }, + { + "_id": "VPGzjvTJI7Uj", + "content": "Todos los patrones establecidos fijos son incapaces de adaptabilidad o flexibilidad. La verdad est\u00e1 fuera de todos los patrones fijos.", + "author": "Bruce Lee", + "tags": [ + "famous-quotes" + ], + "authorId": "raaFe2cXACnG", + "authorSlug": "bruce-lee", + "length": 134 + }, + { + "_id": "WD1Icqr-7J", + "content": "La verdadera felicidad surge, en primer lugar, del disfrute de uno mismo, y en segundo lugar, de la amistad y conversaci\u00f3n de unos pocos compa\u00f1eros selectos.", + "author": "Joseph Addison", + "tags": [ + "friendship" + ], + "authorId": "Ra04vOONY8", + "authorSlug": "joseph-addison", + "length": 157 + }, + { + "_id": "4AZF5nEIPN9", + "content": "Para tener \u00e9xito, primero debemos creer que podemos.", + "author": "Michael Korda", + "tags": [ + "famous-quotes" + ], + "authorId": "YXZuWxcWpZDE", + "authorSlug": "michael-korda", + "length": 52 + }, + { + "_id": "t7L2YkK_2QWr", + "content": "Como piensas, as\u00ed te convertir\u00e1s.", + "author": "Bruce Lee", + "tags": [ + "famous-quotes" + ], + "authorId": "raaFe2cXACnG", + "authorSlug": "bruce-lee", + "length": 33 + }, + { + "_id": "fXCc-Adzx2i5", + "content": "El \u00fanico verdadero fracaso en la vida es no ser fiel a lo mejor que uno sabe.", + "author": "Buddha", + "tags": [ + "famous-quotes" + ], + "authorId": "sUNjshHENA05", + "authorSlug": "buddha", + "length": 77 + }, + { + "_id": "2LmdIfvSmBlD", + "content": "Antes de fruncir el ce\u00f1o, aseg\u00farese absolutamente de que no haya sonrisas disponibles.", + "author": "James M. Beggs", + "tags": [ + "famous-quotes" + ], + "authorId": "gyl8VUOxfm2W", + "authorSlug": "james-m-beggs", + "length": 86 + }, + { + "_id": "JBJV1OZ3ARcw", + "content": "No tengo talento especial. Solo soy apasionadamente curioso.", + "author": "Albert Einstein", + "tags": [ + "famous-quotes" + ], + "authorId": "L76FRuEeGIUJ", + "authorSlug": "albert-einstein", + "length": 60 + }, + { + "_id": "f1aZRYvKb7Ga", + "content": "Tienes que hacer tu propio cultivo sin importar la altura de tu abuelo.", + "author": "Abraham Lincoln", + "tags": [ + "famous-quotes", + "life", + "wisdom" + ], + "authorId": "8k75S1ntV9GW", + "authorSlug": "abraham-lincoln", + "length": 71 + }, + { + "_id": "Y_UmXWJD0al", + "content": "La vida es movimiento: respiramos, comemos, caminamos, \u00a1nos movemos!", + "author": "John Pierrakos", + "tags": [ + "famous-quotes" + ], + "authorId": "Sk1xgdhktB-8", + "authorSlug": "john-pierrakos", + "length": 68 + }, + { + "_id": "y1yjB7RbU_Aq", + "content": "Las peque\u00f1as oportunidades son a menudo el comienzo de grandes empresas.", + "author": "Demosthenes", + "tags": [ + "famous-quotes" + ], + "authorId": "j63fSK3zuMaj", + "authorSlug": "demosthenes", + "length": 72 + }, + { + "_id": "CrSk004mchGX", + "content": "Lo que no quieres que te hagan a ti, no se lo hagas a los dem\u00e1s.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 64 + }, + { + "_id": "IPv8r6n1dC", + "content": "La acci\u00f3n m\u00e1s peque\u00f1a es mejor que la intenci\u00f3n m\u00e1s grande.", + "author": "John Burroughs", + "tags": [ + "wisdom" + ], + "authorId": "7mJtbQOga9", + "authorSlug": "john-burroughs", + "length": 59 + }, + { + "_id": "TdIyDe0XX542", + "content": "Aprender sin reflexionar es un desperdicio, reflexionar sin aprender es peligroso.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 82 + }, + { + "_id": "kYh28vSUa2CE", + "content": "Las personas exitosas hacen mejores preguntas y, como resultado, obtienen mejores respuestas.", + "author": "Tony Robbins", + "tags": [ + "famous-quotes" + ], + "authorId": "IkUGwHTcaXs9", + "authorSlug": "tony-robbins", + "length": 93 + }, + { + "_id": "1crYPFXZKUuv", + "content": "Bienaventurado el hombre que no espera nada, porque nunca ser\u00e1 defraudado.", + "author": "Alexander Pope", + "tags": [ + "famous-quotes" + ], + "authorId": "_gz-cfmqA1mr", + "authorSlug": "alexander-pope", + "length": 74 + }, + { + "_id": "4XsKZeLAUwZ6", + "content": "No tengas miedo de la grandeza: algunos nacen grandes, algunos alcanzan la grandeza, y algunos tienen la grandeza sobre ellos.", + "author": "William Shakespeare", + "tags": [ + "famous-quotes" + ], + "authorId": "5F2Uwpllj", + "authorSlug": "william-shakespeare", + "length": 126 + }, + { + "_id": "XxIfXFcublTz", + "content": "S\u00e9 fiel en las cosas peque\u00f1as porque en ellas reside tu fuerza.", + "author": "Mother Teresa", + "tags": [ + "famous-quotes" + ], + "authorId": "y7OXxqCaXKVa", + "authorSlug": "mother-teresa", + "length": 63 + }, + { + "_id": "c2crwHSzalPu", + "content": "Las dificultades est\u00e1n destinadas a incitar, no a desalentar. El esp\u00edritu humano debe fortalecerse a trav\u00e9s del conflicto.", + "author": "William Ellery Channing", + "tags": [ + "famous-quotes", + "inspirational", + "power-quotes" + ], + "authorId": "gli4tf73TPql", + "authorSlug": "william-ellery-channing", + "length": 122 + }, + { + "_id": "82Ucdsd1amiC", + "content": "Cualquiera puede hacer historia. S\u00f3lo un gran hombre puede escribirlo.", + "author": "Oscar Wilde", + "tags": [ + "famous-quotes" + ], + "authorId": "yw5O7wULaKfx", + "authorSlug": "oscar-wilde", + "length": 70 + }, + { + "_id": "iCcV8TjAAZ71", + "content": "Hacer lo que amas es la piedra angular de tener abundancia en tu vida.", + "author": "Wayne Dyer", + "tags": [ + "famous-quotes" + ], + "authorId": "CLxflG5QMMjg", + "authorSlug": "wayne-dyer", + "length": 70 + }, + { + "_id": "hSxHK-iwap5", + "content": "Ninguna coartada te salvar\u00e1 de aceptar la responsabilidad.", + "author": "Napoleon Hill", + "tags": [ + "famous-quotes" + ], + "authorId": "N4h708MyElyG", + "authorSlug": "napoleon-hill", + "length": 58 + }, + { + "_id": "a7lEejDkHdFL", + "content": "Todo aquello a lo que te opones te debilita. Todo para lo que eres te empodera.", + "author": "Wayne Dyer", + "tags": [ + "famous-quotes" + ], + "authorId": "CLxflG5QMMjg", + "authorSlug": "wayne-dyer", + "length": 79 + }, + { + "_id": "zDV7RR6Y-wvZ", + "content": "En una controversia, en el instante en que sentimos ira, ya hemos dejado de luchar por la verdad y hemos comenzado a luchar por nosotros mismos.", + "author": "Buddha", + "tags": [ + "famous-quotes" + ], + "authorId": "sUNjshHENA05", + "authorSlug": "buddha", + "length": 144 + }, + { + "_id": "mhBblBxFy-nH", + "content": "El mundo es redondo y el lugar que puede parecer el final tambi\u00e9n puede ser el principio.", + "author": "Ivy Baker Priest", + "tags": [ + "famous-quotes" + ], + "authorId": "CJxFJUe5dF3J", + "authorSlug": "ivy-baker-priest", + "length": 89 + }, + { + "_id": "SPqg3-WqniZ", + "content": "Prefiero arrepentirme de las cosas que he hecho que arrepentirme de las cosas que no he hecho.", + "author": "Lucille Ball", + "tags": [ + "wisdom" + ], + "authorId": "Ub_gH1IJ-HBm", + "authorSlug": "lucille-ball", + "length": 94 + }, + { + "_id": "b1idr5ua4wW", + "content": "Hay m\u00e1s sabidur\u00eda en tu cuerpo que en tu filosof\u00eda m\u00e1s profunda.", + "author": "Friedrich Nietzsche", + "tags": [ + "wisdom" + ], + "authorId": "g-zHV1myc_8Y", + "authorSlug": "friedrich-nietzsche", + "length": 64 + }, + { + "_id": "MLmhf5Scxikl", + "content": "El tiempo permanece lo suficiente para cualquiera que lo use.", + "author": "Leonardo da Vinci", + "tags": [ + "famous-quotes" + ], + "authorId": "v-beNXVk_I9v", + "authorSlug": "leonardo-da-vinci", + "length": 61 + }, + { + "_id": "Aj1hWd83aS", + "content": "Solo los de gran coraz\u00f3n pueden ser verdaderos amigos. Los mezquinos y cobardes nunca pueden saber lo que significa la verdadera amistad.", + "author": "Charles Kingsley", + "tags": [ + "friendship" + ], + "authorId": "eDH_-mE56", + "authorSlug": "charles-kingsley", + "length": 137 + }, + { + "_id": "APsci40ULi", + "content": "La tecnolog\u00eda me da miedo a la muerte. Est\u00e1 dise\u00f1ado por ingenieros para impresionar a otros ingenieros. Y siempre vienen con folletos de instrucciones escritos por ingenieros para otros ingenieros, raz\u00f3n por la cual casi ninguna tecnolog\u00eda funciona.", + "author": "John Cleese", + "tags": [ + "technology" + ], + "authorId": "rp-2AvtbZ", + "authorSlug": "john-cleese", + "length": 250 + }, + { + "_id": "sKRDFZR86R5", + "content": "Nunca veo lo que se ha hecho; S\u00f3lo veo lo que queda por hacer.", + "author": "Marie Curie", + "tags": [ + "famous-quotes" + ], + "authorId": "Ayk4hyEX7Qbu", + "authorSlug": "marie-curie", + "length": 62 + }, + { + "_id": "4gJgNXPzK5", + "content": "Incluso si est\u00e1s en el camino correcto, te atropellar\u00e1n si te quedas ah\u00ed sentado.", + "author": "Will Rogers", + "tags": [ + "wisdom" + ], + "authorId": "7HShv87qgca6", + "authorSlug": "will-rogers", + "length": 81 + }, + { + "_id": "RnCP5T-HzwbJ", + "content": "Si no tuvi\u00e9ramos invierno, la primavera no ser\u00eda tan agradable; si a veces no sabore\u00e1ramos la adversidad, la prosperidad no ser\u00eda tan bienvenida.", + "author": "Anne Bradstreet", + "tags": [ + "famous-quotes" + ], + "authorId": "hFlcETvnSTsM", + "authorSlug": "anne-bradstreet", + "length": 145 + }, + { + "_id": "IQyVmjKCY1", + "content": "Toda la sabidur\u00eda humana se resume en dos palabras; esperar y esperar.", + "author": "Alexandre Dumas", + "tags": [ + "wisdom" + ], + "authorId": "9r41Szdxzw", + "authorSlug": "alexandre-dumas", + "length": 70 + }, + { + "_id": "19XnsDE_kpQq", + "content": "No puedes meterte dos veces en el mismo r\u00edo, porque otras aguas fluyen continuamente.", + "author": "Heraclitus", + "tags": [ + "famous-quotes" + ], + "authorId": "4JthmAKT69gP", + "authorSlug": "heraclitus", + "length": 85 + }, + { + "_id": "kq_R7P1iSIm3", + "content": "El secreto para salir adelante es empezar.", + "author": "Mark Twain", + "tags": [ + "famous-quotes", + "inspirational" + ], + "authorId": "zbADvkP0r05L", + "authorSlug": "mark-twain", + "length": 42 + }, + { + "_id": "4vBDcA9H-kG", + "content": "Ninguna distancia de lugar o lapso de tiempo puede disminuir la amistad de aquellos que est\u00e1n completamente convencidos del valor del otro.", + "author": "Robert Southey", + "tags": [ + "friendship" + ], + "authorId": "PPovMPyVTCuc", + "authorSlug": "robert-southey", + "length": 139 + }, + { + "_id": "AEocdFfGOhyx", + "content": "Lo que vemos depende principalmente de lo que buscamos.", + "author": "John Lubbock", + "tags": [ + "famous-quotes" + ], + "authorId": "UzFWyAKPulk8", + "authorSlug": "john-lubbock", + "length": 55 + }, + { + "_id": "bTpqZkd3K7", + "content": "El conocimiento te har\u00e1 m\u00e1s fuerte. El conocimiento te permitir\u00e1 controlar tu vida. El conocimiento le va a dar la sabidur\u00eda para ense\u00f1ar a sus hijos. El conocimiento es lo que te hace sonre\u00edr ante el desastre.", + "author": "Avery Brooks", + "tags": [ + "wisdom" + ], + "authorId": "oTy9bo88X7", + "authorSlug": "avery-brooks", + "length": 210 + }, + { + "_id": "8OBH14kq2G", + "content": "La pulcritud engendra orden; pero del orden al gusto hay la misma diferencia que del gusto al genio, o del amor a la amistad.", + "author": "Johann Kaspar Lavater", + "tags": [ + "friendship" + ], + "authorId": "zpMINfv_ur", + "authorSlug": "johann-kaspar-lavater", + "length": 125 + }, + { + "_id": "0mvbtxiIrRtQ", + "content": "Cuando dejo ir lo que soy, me convierto en lo que podr\u00eda ser.", + "author": "Laozi", + "tags": [ + "famous-quotes" + ], + "authorId": "qsaptKSHuLDU", + "authorSlug": "laozi", + "length": 61 + }, + { + "_id": "o6XQ_Gzhxg", + "content": "Los amigos de uno son esa parte de la raza humana con la que uno puede ser humano.", + "author": "George Santayana", + "tags": [ + "friendship" + ], + "authorId": "EeYA_JAo0Iix", + "authorSlug": "george-santayana", + "length": 82 + }, + { + "_id": "B9UxMLiqU9H8", + "content": "Cuidado con las oportunidades perdidas; de lo contrario, puede ser demasiado tarde alg\u00fan d\u00eda.", + "author": "Franz Liszt", + "tags": [ + "famous-quotes" + ], + "authorId": "3Ye538voL0N2", + "authorSlug": "franz-liszt", + "length": 93 + }, + { + "_id": "B4VtMmx3gG", + "content": "La sabidur\u00eda es el poder de poner nuestro tiempo y nuestro conocimiento en el uso apropiado.", + "author": "Thomas J. Watson", + "tags": [ + "wisdom" + ], + "authorId": "rDbLO_FIvo", + "authorSlug": "thomas-j-watson", + "length": 92 + }, + { + "_id": "iXtSYIGVbm", + "content": "El fuerte v\u00ednculo de la amistad no siempre es una ecuaci\u00f3n equilibrada; la amistad no siempre se trata de dar y recibir en partes iguales. En cambio, la amistad se basa en un sentimiento de que sabes exactamente qui\u00e9n estar\u00e1 ah\u00ed para ti cuando necesites algo, sin importar qu\u00e9 o cu\u00e1ndo.", + "author": "Simon Sinek", + "tags": [ + "friendship" + ], + "authorId": "cvjhiGNS4", + "authorSlug": "simon-sinek", + "length": 286 + }, + { + "_id": "nv5eWGaFe892", + "content": "Creo que de alguna manera aprendemos qui\u00e9nes somos realmente y luego vivimos con esa decisi\u00f3n.", + "author": "Eleanor Roosevelt", + "tags": [ + "famous-quotes" + ], + "authorId": "1X7NWb1oyd21", + "authorSlug": "eleanor-roosevelt", + "length": 94 + }, + { + "_id": "Fg4uCgQpOYMw", + "content": "Esta es la prueba final de un caballero: su respeto por aquellos que pueden ser de ning\u00fan valor posible para \u00e9l.", + "author": "William Lyon Phelps", + "tags": [ + "famous-quotes" + ], + "authorId": "uEcdD9tO9Xy1", + "authorSlug": "william-lyon-phelps", + "length": 112 + }, + { + "_id": "nkftU-0YuUP6", + "content": "El coraje no es la ausencia de miedo, sino simplemente seguir adelante con dignidad a pesar de ese miedo.", + "author": "Pat Riley", + "tags": [ + "famous-quotes" + ], + "authorId": "JENVe-QuUSP8", + "authorSlug": "pat-riley", + "length": 105 + }, + { + "_id": "Zbd2FOmfMJVJ", + "content": "No hay nada como volver a un lugar que permanece inmutable para encontrar las formas en las que t\u00fa mismo has cambiado.", + "author": "Nelson Mandela", + "tags": [ + "famous-quotes" + ], + "authorId": "ubn8tDLlaqk6", + "authorSlug": "nelson-mandela", + "length": 118 + }, + { + "_id": "l3-XvfRVtd", + "content": "\u00a1Que mi piel, mis tendones y mis huesos se sequen, junto con toda la carne y la sangre de mi cuerpo! \u00a1Le doy la bienvenida! Pero no me mover\u00e9 de este lugar hasta que haya alcanzado la sabidur\u00eda suprema y final.", + "author": "Buddha", + "tags": [ + "wisdom" + ], + "authorId": "sUNjshHENA05", + "authorSlug": "buddha", + "length": 210 + }, + { + "_id": "wkkqY5x5kia3", + "content": "Hay b\u00e1sicamente dos tipos de personas. Personas que logran cosas y personas que afirman haber logrado cosas. El primer grupo est\u00e1 menos concurrido.", + "author": "Mark Twain", + "tags": [ + "famous-quotes" + ], + "authorId": "zbADvkP0r05L", + "authorSlug": "mark-twain", + "length": 147 + }, + { + "_id": "3tXfdExB8jB", + "content": "De error en error uno descubre toda la verdad.", + "author": "Sigmund Freud", + "tags": [ + "famous-quotes" + ], + "authorId": "S2-JbY3NzItd", + "authorSlug": "sigmund-freud", + "length": 46 + }, + { + "_id": "QEJsaQ4DbY-v", + "content": "Soy como una estrella fugaz que finalmente ha encontrado su lugar junto a otra en una hermosa constelaci\u00f3n, donde brillaremos en los cielos para siempre.", + "author": "Amy Tan", + "tags": [ + "famous-quotes" + ], + "authorId": "PP1Z6EiXO-8z", + "authorSlug": "amy-tan", + "length": 153 + }, + { + "_id": "vuGBuD1oaev3", + "content": "No vayas por donde te lleve el camino, ve por donde no hay camino y deja un rastro.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes", + "wisdom" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 83 + }, + { + "_id": "CwRoiaY5uW8", + "content": "Ning\u00fan copo de nieve en una avalancha se siente responsable.", + "author": "Voltaire", + "tags": [ + "famous-quotes" + ], + "authorId": "ZyuVXKFVTZu8", + "authorSlug": "voltaire", + "length": 60 + }, + { + "_id": "GzemxoxHgF2P", + "content": "Lo que importa es el valor que hemos creado en nuestras vidas, las personas a las que hemos hecho felices y cu\u00e1nto hemos crecido como personas.", + "author": "Daisaku Ikeda", + "tags": [ + "famous-quotes" + ], + "authorId": "f4Q5BtDWomhv", + "authorSlug": "daisaku-ikeda", + "length": 143 + }, + { + "_id": "5ujpXxYvGfQp", + "content": "Las arrugas deber\u00edan indicar solamente d\u00f3nde ha habido sonrisas.", + "author": "Mark Twain", + "tags": [ + "famous-quotes" + ], + "authorId": "zbADvkP0r05L", + "authorSlug": "mark-twain", + "length": 64 + }, + { + "_id": "Xof9SNxItD8Y", + "content": "Antes de que puedas inspirar con emoci\u00f3n, debes estar inundado por ti mismo. Antes de que puedas mover sus l\u00e1grimas, las tuyas deben fluir. Para convencerlos, debes creer t\u00fa mismo.", + "author": "Winston Churchill", + "tags": [ + "famous-quotes" + ], + "authorId": "FEM0nF4bj5r7", + "authorSlug": "winston-churchill", + "length": 180 + }, + { + "_id": "RP2z5Ir_xwF2", + "content": "Cuando buscamos descubrir lo mejor en los dem\u00e1s, de alguna manera sacamos lo mejor de nosotros mismos.", + "author": "William Arthur Ward", + "tags": [ + "famous-quotes", + "friendship", + "self-help" + ], + "authorId": "BbtbIJLprBVl", + "authorSlug": "william-arthur-ward", + "length": 102 + }, + { + "_id": "RrK_kU3Fjf0", + "content": "Los jonrones de ayer no ganan los juegos de hoy.", + "author": "Babe Ruth", + "tags": [ + "famous-quotes" + ], + "authorId": "mYsdhXSSb8Ib", + "authorSlug": "babe-ruth", + "length": 48 + }, + { + "_id": "YB-FRt_brC", + "content": "La sabidur\u00eda y la penetraci\u00f3n son el fruto de la experiencia, no las lecciones del retiro y el ocio. Las grandes necesidades provocan grandes virtudes.", + "author": "Abigail Adams", + "tags": [ + "wisdom" + ], + "authorId": "82zk1b45Zn", + "authorSlug": "abigail-adams", + "length": 151 + }, + { + "_id": "RXBrRJcq1Cih", + "content": "Uno debe querer a la gente y confiar en ella si no quiere hacer la vida un l\u00edo.", + "author": "E. M. Forster", + "tags": [ + "famous-quotes" + ], + "authorId": "CTr4ZRc1dWiP", + "authorSlug": "e-m-forster", + "length": 79 + }, + { + "_id": "dyPLKxIFG-Sq", + "content": "El \u00fanico viaje es el interior.", + "author": "Rainer Maria Rilke", + "tags": [ + "famous-quotes" + ], + "authorId": "IyvPT1P373DE", + "authorSlug": "rainer-maria-rilke", + "length": 30 + }, + { + "_id": "rAIJZHn5TH", + "content": "Las diferencias entre amigos no pueden sino reforzar su amistad.", + "author": "Mao Zedong", + "tags": [ + "friendship" + ], + "authorId": "yIXUbkUQAc", + "authorSlug": "mao-zedong", + "length": 64 + }, + { + "_id": "tVqHnTXq3bDN", + "content": "Es una de las bendiciones de los viejos amigos que puedes permitirte ser est\u00fapido con ellos.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes", + "friendship" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 92 + }, + { + "_id": "d1a0cFxEb8Ng", + "content": "En el momento en que uno presta mucha atenci\u00f3n a algo, se convierte en un mundo misterioso, impresionante e indescriptiblemente magn\u00edfico en s\u00ed mismo.", + "author": "Henry Miller", + "tags": [ + "famous-quotes" + ], + "authorId": "baiPlUQWl8I-", + "authorSlug": "henry-miller", + "length": 150 + }, + { + "_id": "A5l8yCGO4BL5", + "content": "Perdonar es elegir amar. Es la primera habilidad del amor abnegado.", + "author": "Mahatma Gandhi", + "tags": [ + "famous-quotes" + ], + "authorId": "4J6_dx73YbT5", + "authorSlug": "mahatma-gandhi", + "length": 67 + }, + { + "_id": "0Cel0Uy3XC", + "content": "Si un hombre no hace nuevas amistades a medida que avanza en la vida, pronto se encontrar\u00e1 solo. Un hombre, se\u00f1or, debe mantener su amistad en constante reparaci\u00f3n.", + "author": "Samuel Johnson", + "tags": [ + "friendship" + ], + "authorId": "Nimgtrtvfbyx", + "authorSlug": "samuel-johnson", + "length": 164 + }, + { + "_id": "U50kYf5u3f4B", + "content": "La pregunta m\u00e1s persistente y urgente de la vida es: '\u00bfQu\u00e9 est\u00e1s haciendo por los dem\u00e1s?'", + "author": "Martin Luther King Jr.", + "tags": [ + "famous-quotes" + ], + "authorId": "Af6UJFdH4IwV", + "authorSlug": "martin-luther-king-jr", + "length": 89 + }, + { + "_id": "TxvV88zUrVi3", + "content": "Guarde silencio la mayor parte del tiempo y hable s\u00f3lo cuando sea necesario, y luego brevemente.", + "author": "Epictetus", + "tags": [ + "famous-quotes" + ], + "authorId": "HZHaUuiyIJPp", + "authorSlug": "epictetus", + "length": 96 + }, + { + "_id": "2OVqy9KVYy3m", + "content": "Nadie nos salva sino nosotros mismos. Nadie puede y nadie debe. Nosotros mismos debemos andar el camino.", + "author": "Buddha", + "tags": [ + "famous-quotes" + ], + "authorId": "sUNjshHENA05", + "authorSlug": "buddha", + "length": 104 + }, + { + "_id": "KfOJkr869PQo", + "content": "Un h\u00e9roe no es m\u00e1s valiente que un hombre com\u00fan, pero es m\u00e1s valiente cinco minutos m\u00e1s.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 88 + }, + { + "_id": "ZxKQ6LZn9nZl", + "content": "El mundo tiene la costumbre de hacerle lugar al hombre cuyas acciones demuestran que sabe ad\u00f3nde va.", + "author": "Napoleon Hill", + "tags": [ + "famous-quotes" + ], + "authorId": "N4h708MyElyG", + "authorSlug": "napoleon-hill", + "length": 100 + }, + { + "_id": "T6AMWsNRE5", + "content": "Cualquier tecnolog\u00eda suficientemente avanzada es equivalente a la magia.", + "author": "Arthur C. Clarke", + "tags": [ + "technology" + ], + "authorId": "1QYR63wh3", + "authorSlug": "arthur-c-clarke", + "length": 72 + }, + { + "_id": "LVmRBE6cytXv", + "content": "La raz\u00f3n y la libre investigaci\u00f3n son los \u00fanicos agentes eficaces contra el error.", + "author": "Thomas Jefferson", + "tags": [ + "famous-quotes" + ], + "authorId": "Zy4xV5ItRxmv", + "authorSlug": "thomas-jefferson", + "length": 82 + }, + { + "_id": "Z5aMw6Z1KFjp", + "content": "Es muy f\u00e1cil perdonar a los dem\u00e1s sus errores; se necesita m\u00e1s coraje para perdonarlos por haber sido testigos de los tuyos.", + "author": "Jessamyn West", + "tags": [ + "famous-quotes" + ], + "authorId": "aMST-Uqfik3g", + "authorSlug": "jessamyn-west", + "length": 124 + }, + { + "_id": "-p4UJJtG2e0g", + "content": "El conocimiento no se basa \u00fanicamente en la verdad, sino tambi\u00e9n en el error.", + "author": "Carl Jung", + "tags": [ + "famous-quotes" + ], + "authorId": "-LYBJJujV7RL", + "authorSlug": "carl-jung", + "length": 77 + }, + { + "_id": "rPhZvCjp1t8J", + "content": "Recuerda que a veces no conseguir lo que quieres es un maravilloso golpe de suerte.", + "author": "Dalai Lama", + "tags": [ + "famous-quotes" + ], + "authorId": "OPVjtVVBVW5h", + "authorSlug": "dalai-lama", + "length": 83 + }, + { + "_id": "VNbPhxpsCQrO", + "content": "Recuerda siempre que no solo tienes el derecho de ser un individuo, tienes la obligaci\u00f3n de serlo.", + "author": "Eleanor Roosevelt", + "tags": [ + "famous-quotes" + ], + "authorId": "1X7NWb1oyd21", + "authorSlug": "eleanor-roosevelt", + "length": 98 + }, + { + "_id": "aeAPqvNG3", + "content": "Es una experiencia com\u00fan que un problema dif\u00edcil por la noche se resuelva por la ma\u00f1ana despu\u00e9s de que el comit\u00e9 de sue\u00f1o haya trabajado en \u00e9l.", + "author": "John Steinbeck", + "tags": [ + "wisdom" + ], + "authorId": "6axtEJVYp2We", + "authorSlug": "john-steinbeck", + "length": 143 + }, + { + "_id": "dMJ9b4iwZ0Lj", + "content": "No cometer errores no est\u00e1 en el poder del hombre; pero de sus errores y equivocaciones los sabios y buenos aprenden sabidur\u00eda para el futuro.", + "author": "Plutarch", + "tags": [ + "famous-quotes", + "wisdom" + ], + "authorId": "fmzBXMuI4lbX", + "authorSlug": "plutarch", + "length": 142 + }, + { + "_id": "9sm_GJbP-2s_", + "content": "Este mundo, despu\u00e9s de toda nuestra ciencia y nuestras ciencias, sigue siendo un milagro; maravilloso, inescrutable, m\u00e1gico y m\u00e1s, a quien lo piense.", + "author": "Thomas Carlyle", + "tags": [ + "famous-quotes" + ], + "authorId": "sTK7Nn46drMi", + "authorSlug": "thomas-carlyle", + "length": 149 + }, + { + "_id": "wIfNy-oDtr", + "content": "La amistad no necesita palabras, es soledad liberada de la angustia de la soledad.", + "author": "Dag Hammarskj\u00f6ld", + "tags": [ + "friendship" + ], + "authorId": "ubzLDheOmG", + "authorSlug": "dag-hammarskjold", + "length": 82 + }, + { + "_id": "m8q1pMkFz_jV", + "content": "Donde quiera que un hombre se vuelva, cualquier cosa que un hombre pueda emprender, siempre terminar\u00e1 volviendo al camino que la naturaleza le ha se\u00f1alado.", + "author": "Johann Wolfgang von Goethe", + "tags": [ + "famous-quotes" + ], + "authorId": "aW1ZR-8LuS28", + "authorSlug": "johann-wolfgang-von-goethe", + "length": 155 + }, + { + "_id": "nBSAX0LazBDt", + "content": "Si A es el \u00e9xito en la vida, entonces A es igual a x m\u00e1s y m\u00e1s z. El trabajo es x; y es juego; y z mantiene la boca cerrada.", + "author": "Albert Einstein", + "tags": [ + "famous-quotes", + "life", + "success" + ], + "authorId": "L76FRuEeGIUJ", + "authorSlug": "albert-einstein", + "length": 124 + }, + { + "_id": "DZA5UWkbv-KJ", + "content": "Si pudi\u00e9ramos ver claramente el milagro de una sola flor, toda nuestra vida cambiar\u00eda.", + "author": "Buddha", + "tags": [ + "famous-quotes" + ], + "authorId": "sUNjshHENA05", + "authorSlug": "buddha", + "length": 86 + }, + { + "_id": "b-zLcfguzkk7", + "content": "Cuando te contentes con ser simplemente t\u00fa mismo y no compares ni compitas, todo el mundo te respetar\u00e1.", + "author": "Laozi", + "tags": [ + "famous-quotes" + ], + "authorId": "qsaptKSHuLDU", + "authorSlug": "laozi", + "length": 103 + }, + { + "_id": "eDuDLZphbw9c", + "content": "La mejor preparaci\u00f3n para el ma\u00f1ana es hacer lo mejor que puedas hoy.", + "author": "H. Jackson Brown Jr.", + "tags": [ + "famous-quotes" + ], + "authorId": "ZShJOYn-QZ5M", + "authorSlug": "h-jackson-brown-jr", + "length": 69 + }, + { + "_id": "5MYjs_eBt5", + "content": "El amor exige infinitamente menos que la amistad.", + "author": "George Jean Nathan", + "tags": [ + "friendship" + ], + "authorId": "SMk7Fb4KTw", + "authorSlug": "george-jean-nathan", + "length": 49 + }, + { + "_id": "kc_i68XUTzm9", + "content": "Si pasas demasiado tiempo pensando en algo, nunca lo har\u00e1s.", + "author": "Bruce Lee", + "tags": [ + "famous-quotes" + ], + "authorId": "raaFe2cXACnG", + "authorSlug": "bruce-lee", + "length": 59 + }, + { + "_id": "gBdWfRIFkxx4", + "content": "El objetivo de la vida es el autodesarrollo. Para realizar perfectamente la propia naturaleza, para eso estamos aqu\u00ed cada uno de nosotros.", + "author": "Oscar Wilde", + "tags": [ + "famous-quotes" + ], + "authorId": "yw5O7wULaKfx", + "authorSlug": "oscar-wilde", + "length": 138 + }, + { + "_id": "rROktmIDga", + "content": "Y cuando se crea el mundo, se crea de tal manera que esos objetos eternos de la amorosa sabidur\u00eda de Dios se vuelven realidades, interactuando entre s\u00ed, relacion\u00e1ndose con Dios en el reino finito.", + "author": "Rowan Williams", + "tags": [ + "wisdom" + ], + "authorId": "k53H3997pN", + "authorSlug": "rowan-williams", + "length": 196 + }, + { + "_id": "395POpXmel", + "content": "La vida no tiene bendici\u00f3n como un amigo prudente.", + "author": "Euripides", + "tags": [ + "friendship" + ], + "authorId": "yVMYpy-GWWFq", + "authorSlug": "euripides", + "length": 50 + }, + { + "_id": "gP3atICYApeI", + "content": "Ning\u00fan pesimista descubri\u00f3 jam\u00e1s los secretos de las estrellas, ni naveg\u00f3 a una tierra inexplorada, ni abri\u00f3 un nuevo cielo al esp\u00edritu humano.", + "author": "Helen Keller", + "tags": [ + "famous-quotes" + ], + "authorId": "pYjZMId1ilhK", + "authorSlug": "helen-keller", + "length": 143 + }, + { + "_id": "7C2TU6MIz9o_", + "content": "No me interesa la edad. Las personas que me dicen su edad son tontas. Eres tan viejo como te sientes.", + "author": "Elizabeth Arden", + "tags": [ + "famous-quotes" + ], + "authorId": "6Z2MjNVjOz8H", + "authorSlug": "elizabeth-arden", + "length": 101 + }, + { + "_id": "EpDrsWX_c6li", + "content": "Cuando las personas son como los dem\u00e1s tienden a gustarse unos a otros.", + "author": "Tony Robbins", + "tags": [ + "famous-quotes" + ], + "authorId": "IkUGwHTcaXs9", + "authorSlug": "tony-robbins", + "length": 71 + }, + { + "_id": "8Lkh3gqcSh", + "content": "Las dificultades aumentan cuanto m\u00e1s nos acercamos a la meta.", + "author": "Johann Wolfgang von Goethe", + "tags": [ + "famous-quotes", + "inspirational" + ], + "authorId": "aW1ZR-8LuS28", + "authorSlug": "johann-wolfgang-von-goethe", + "length": 61 + }, + { + "_id": "3-PoIjz4IDQ", + "content": "En la vida, todas las cosas buenas son dif\u00edciles, pero la sabidur\u00eda es la m\u00e1s dif\u00edcil de conseguir.", + "author": "Lucille Ball", + "tags": [ + "wisdom" + ], + "authorId": "Ub_gH1IJ-HBm", + "authorSlug": "lucille-ball", + "length": 99 + }, + { + "_id": "_k3kxvogAs-6", + "content": "Si tienes conocimiento, deja que otros enciendan sus velas en \u00e9l.", + "author": "Margaret Fuller", + "tags": [ + "famous-quotes" + ], + "authorId": "yxcmeo89-BoQ", + "authorSlug": "margaret-fuller", + "length": 65 + }, + { + "_id": "5_6lVDMuo9IM", + "content": "La felicidad s\u00f3lo puede existir en la aceptaci\u00f3n.", + "author": "George Orwell", + "tags": [ + "famous-quotes" + ], + "authorId": "YyZuhLs2-ki6", + "authorSlug": "george-orwell", + "length": 49 + }, + { + "_id": "NTseDGDXOuo8", + "content": "La vida es realmente simple, pero insistimos en complicarla.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 60 + }, + { + "_id": "mZGMxqlkKn", + "content": "La amistad puede, ya menudo lo hace, convertirse en amor, pero el amor nunca se convierte en amistad.", + "author": "Lord Byron", + "tags": [ + "friendship" + ], + "authorId": "EUjr2jc6nT", + "authorSlug": "lord-byron", + "length": 101 + }, + { + "_id": "0Z8EQaXeVdhX", + "content": "Tenemos que tener un sue\u00f1o si vamos a hacerlo realidad.", + "author": "Walt Disney", + "tags": [ + "famous-quotes" + ], + "authorId": "HzyhMbP15DoD", + "authorSlug": "walt-disney", + "length": 55 + }, + { + "_id": "heFGlWwPZjvX", + "content": "Las promesas son la forma \u00fanicamente humana de ordenar el futuro, haci\u00e9ndolo predecible y confiable en la medida en que esto es humanamente posible.", + "author": "Hannah Arendt", + "tags": [ + "famous-quotes" + ], + "authorId": "2aVt9AdFu1fK", + "authorSlug": "hannah-arendt", + "length": 148 + }, + { + "_id": "g1GZtzlspywZ", + "content": "La mayor\u00eda de las cosas importantes en el mundo han sido logradas por personas que han seguido intent\u00e1ndolo cuando parec\u00eda que no hab\u00eda ninguna esperanza.", + "author": "Dale Carnegie", + "tags": [ + "famous-quotes" + ], + "authorId": "D1RNG5b9TsXN", + "authorSlug": "dale-carnegie", + "length": 154 + }, + { + "_id": "YTqaIDVD0fX3", + "content": "La forma en que nos comunicamos con los dem\u00e1s y con nosotros mismos determina en \u00faltima instancia la calidad de nuestras vidas.", + "author": "Tony Robbins", + "tags": [ + "famous-quotes" + ], + "authorId": "IkUGwHTcaXs9", + "authorSlug": "tony-robbins", + "length": 127 + }, + { + "_id": "xjRJ2oXvhode", + "content": "El tiempo que disfrut\u00f3 desperdiciando no fue desperdiciado.", + "author": "John Lennon", + "tags": [ + "famous-quotes" + ], + "authorId": "vVS5k5Oad9Hy", + "authorSlug": "john-lennon", + "length": 59 + }, + { + "_id": "M1DjUqEQCO-E", + "content": "Nunca agaches la cabeza. Mantenlo siempre en alto. Mira el mundo directamente a los ojos.", + "author": "Helen Keller", + "tags": [ + "famous-quotes" + ], + "authorId": "pYjZMId1ilhK", + "authorSlug": "helen-keller", + "length": 89 + }, + { + "_id": "wdTamcKIF6Oc", + "content": "Todos los logros, todas las riquezas ganadas, tienen su comienzo en una idea.", + "author": "Napoleon Hill", + "tags": [ + "famous-quotes" + ], + "authorId": "N4h708MyElyG", + "authorSlug": "napoleon-hill", + "length": 77 + }, + { + "_id": "vmmay0GtEHcT", + "content": "El pobre no es el que no tiene un centavo, sino el que no tiene un sue\u00f1o.", + "author": "Harry Kemp", + "tags": [ + "famous-quotes" + ], + "authorId": "jFYtDAg5Ott5", + "authorSlug": "harry-kemp", + "length": 73 + }, + { + "_id": "0IP2kpOHSiPj", + "content": "Nunca he sido lastimado por algo que no dije.", + "author": "Calvin Coolidge", + "tags": [ + "famous-quotes" + ], + "authorId": "bUWx0bMUCf8X", + "authorSlug": "calvin-coolidge", + "length": 45 + }, + { + "_id": "FO7XX9krDFzO", + "content": "Todo artista moja su pincel en su propia alma y pinta su propia naturaleza en sus cuadros.", + "author": "Henry Ward Beecher", + "tags": [ + "famous-quotes" + ], + "authorId": "7ARdGK2SnqLv", + "authorSlug": "henry-ward-beecher", + "length": 90 + }, + { + "_id": "5_zuctgLXl8x", + "content": "El camino correcto no siempre es el camino popular y f\u00e1cil. Defender lo correcto cuando es impopular es una verdadera prueba de car\u00e1cter moral.", + "author": "Margaret Chase Smith", + "tags": [ + "famous-quotes" + ], + "authorId": "TtcYr-YE0YpM", + "authorSlug": "margaret-chase-smith", + "length": 143 + }, + { + "_id": "mH_m-Xmw1dk", + "content": "No esperes. El tiempo nunca ser\u00e1 justo.", + "author": "Napoleon Hill", + "tags": [ + "famous-quotes" + ], + "authorId": "N4h708MyElyG", + "authorSlug": "napoleon-hill", + "length": 39 + } +] \ No newline at end of file From 70f87fb25817632ee02dda49c2acfbdf91946d00 Mon Sep 17 00:00:00 2001 From: Alonso Melgar Lopez Date: Mon, 1 Aug 2022 02:37:26 -0500 Subject: [PATCH 06/14] =?UTF-8?q?=E2=9C=85=20Update=20test=20for=20languag?= =?UTF-8?q?e?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_pls_cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_pls_cli.py b/tests/test_pls_cli.py index 1744d66..a404304 100644 --- a/tests/test_pls_cli.py +++ b/tests/test_pls_cli.py @@ -35,7 +35,7 @@ def test_version_command(): @patch('pls_cli.utils.settings.Settings.exists_settings', return_value=False) @patch('pls_cli.utils.settings.Settings.write_settings') def test_first_usage(mock_write_settings, mock_exists_settings): - result = runner.invoke(app, input='test\ny\nY\n') + result = runner.invoke(app, input='test\ny\nY\nES\n') assert result.exit_code == 0 assert 'Hello! What can I call you?: test' in result.stdout assert 'pls callme ' in result.stdout @@ -53,7 +53,7 @@ def test_first_usage(mock_write_settings, mock_exists_settings): in result.stdout ) assert ( - 'If you want to change the language, please use:' + 'If you want to change the language of quotes, please use:' in result.stdout ) From 1fb9a5292069183c9c9985d48d08ea1c82cd398a Mon Sep 17 00:00:00 2001 From: Alonso Melgar Lopez Date: Wed, 3 Aug 2022 00:22:22 -0500 Subject: [PATCH 07/14] =?UTF-8?q?=E2=9C=85=20Update=20dir=20quotes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pls_cli/utils/{en => }/quotes.json | 0 translations/en_quotes.json | 5549 +++++++++++++++++ .../es_quotes.json | 0 3 files changed, 5549 insertions(+) rename pls_cli/utils/{en => }/quotes.json (100%) create mode 100644 translations/en_quotes.json rename pls_cli/utils/es/quotes.json => translations/es_quotes.json (100%) diff --git a/pls_cli/utils/en/quotes.json b/pls_cli/utils/quotes.json similarity index 100% rename from pls_cli/utils/en/quotes.json rename to pls_cli/utils/quotes.json diff --git a/translations/en_quotes.json b/translations/en_quotes.json new file mode 100644 index 0000000..5a6cfeb --- /dev/null +++ b/translations/en_quotes.json @@ -0,0 +1,5549 @@ +[ + { + "_id": "juG0aJTnYxmf", + "content": "The Superior Man is aware of Righteousness, the inferior man is aware of advantage.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 83 + }, + { + "_id": "FMZiiLHfCOc", + "content": "America's freedom of religion, and freedom from religion, offers every wisdom tradition an opportunity to address our soul-deep needs: Christianity, Judaism, Islam, Buddhism, Hinduism, secular humanism, agnosticism and atheism among others.", + "author": "Parker Palmer", + "tags": [ + "wisdom" + ], + "authorId": "XPDojD6THK", + "authorSlug": "parker-palmer", + "length": 240 + }, + { + "_id": "CXJ3rBlnfFa2", + "content": "Myths which are believed in tend to become true.", + "author": "George Orwell", + "tags": [ + "famous-quotes" + ], + "authorId": "YyZuhLs2-ki6", + "authorSlug": "george-orwell", + "length": 48 + }, + { + "_id": "ihnLNFx2ZolZ", + "content": "In all chaos there is a cosmos, in all disorder a secret order.", + "author": "Carl Jung", + "tags": [ + "famous-quotes" + ], + "authorId": "-LYBJJujV7RL", + "authorSlug": "carl-jung", + "length": 63 + }, + { + "_id": "HFT6qcdMVVt", + "content": "Be courteous to all, but intimate with few, and let those few be well tried before you give them your confidence.", + "author": "George Washington", + "tags": [ + "friendship" + ], + "authorId": "e2dM0CnWTjCD", + "authorSlug": "george-washington", + "length": 113 + }, + { + "_id": "r6gpkIboJCzH", + "content": "If you break your neck, if you have nothing to eat, if your house is on fire, then you got a problem. Everything else is inconvenience.", + "author": "Robert Fulghum", + "tags": [ + "famous-quotes" + ], + "authorId": "OMH4P98yJ7YG", + "authorSlug": "robert-fulghum", + "length": 135 + }, + { + "_id": "1BXjOAdiKUXW", + "content": "The past has no power to stop you from being present now. Only your grievance about the past can do that.", + "author": "Eckhart Tolle", + "tags": [ + "famous-quotes" + ], + "authorId": "I6wUbDqsmByX", + "authorSlug": "eckhart-tolle", + "length": 105 + }, + { + "_id": "Z5HhvrGNn3_Y", + "content": "There is nothing happens to any person but what was in his power to go through with.", + "author": "Marcus Aurelius", + "tags": [ + "famous-quotes" + ], + "authorId": "zW_A5fM6XU-v", + "authorSlug": "marcus-aurelius", + "length": 84 + }, + { + "_id": "WDGgxBqNWco9", + "content": "The smallest act of kindness is worth more than the grandest intention.", + "author": "Oscar Wilde", + "tags": [ + "famous-quotes" + ], + "authorId": "yw5O7wULaKfx", + "authorSlug": "oscar-wilde", + "length": 71 + }, + { + "_id": "2hNPcjVsMTb", + "content": "Every problem has a gift for you in its hands.", + "author": "Richard Bach", + "tags": [ + "famous-quotes" + ], + "authorId": "t9lNqDH0TmYo", + "authorSlug": "richard-bach", + "length": 46 + }, + { + "_id": "o8Xc7pO8Y1aD", + "content": "The greatest minds are capable of the greatest vices as well as of the greatest virtues.", + "author": "René Descartes", + "tags": [ + "famous-quotes" + ], + "authorId": "7oQmRTe0VZhD", + "authorSlug": "rene-descartes", + "length": 88 + }, + { + "_id": "T3WzgRWp0RNY", + "content": "The world makes way for the man who knows where he is going.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 60 + }, + { + "_id": "J2QOuZPIiG", + "content": "You are a product of your environment. So choose the environment that will best develop you toward your objective. Analyze your life in terms of its environment. Are the things around you helping you toward success - or are they holding you back?", + "author": "W. Clement Stone", + "tags": [ + "wisdom" + ], + "authorId": "esj6cyXo7w3_", + "authorSlug": "w-clement-stone", + "length": 246 + }, + { + "_id": "ALcsEfDR7FL", + "content": "The cautious seldom err.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 24 + }, + { + "_id": "q3SfzGZd2iGb", + "content": "The most complicated achievements of thought are possible without the assistance of consciousness.", + "author": "Sigmund Freud", + "tags": [ + "famous-quotes" + ], + "authorId": "S2-JbY3NzItd", + "authorSlug": "sigmund-freud", + "length": 98 + }, + { + "_id": "yr4loYMOP15w", + "content": "As we express our gratitude, we must never forget that the highest appreciation is not to utter words, but to live by them.", + "author": "John F. Kennedy", + "tags": [ + "famous-quotes" + ], + "authorId": "hVmL2YCoGCRZ", + "authorSlug": "john-f-kennedy", + "length": 123 + }, + { + "_id": "SjSXV2RqMnq3", + "content": "The greatest way to live with honor in this world is to be what we pretend to be.", + "author": "Socrates", + "tags": [ + "famous-quotes" + ], + "authorId": "C9DlPOiO6CUk", + "authorSlug": "socrates", + "length": 81 + }, + { + "_id": "O_jlFdjUtHPT", + "content": "Every person, all the events of your life are there because you have drawn them there. What you choose to do with them is up to you.", + "author": "Richard Bach", + "tags": [ + "famous-quotes" + ], + "authorId": "t9lNqDH0TmYo", + "authorSlug": "richard-bach", + "length": 132 + }, + { + "_id": "tE2DJstE_-", + "content": "Wisdom begins at the end.", + "author": "Daniel Webster", + "tags": [ + "wisdom" + ], + "authorId": "6MQyJsAQJ0", + "authorSlug": "daniel-webster", + "length": 25 + }, + { + "_id": "6Frokv7EPoui", + "content": "Ignorant men don't know what good they hold in their hands until they've flung it away.", + "author": "Sophocles", + "tags": [ + "famous-quotes" + ], + "authorId": "bBwlN7LI2Jtu", + "authorSlug": "sophocles", + "length": 87 + }, + { + "_id": "LlHX1-JaSX4v", + "content": "However many holy words you read, however many you speak, what good will they do you if you do not act on upon them?", + "author": "Buddha", + "tags": [ + "famous-quotes" + ], + "authorId": "sUNjshHENA05", + "authorSlug": "buddha", + "length": 116 + }, + { + "_id": "dZewn83VJ8", + "content": "Science gives us knowledge, but only philosophy can give us wisdom.", + "author": "Will Durant", + "tags": [ + "wisdom" + ], + "authorId": "ePSTACfg6LJF", + "authorSlug": "will-durant", + "length": 67 + }, + { + "_id": "HQNnn2x2Vc", + "content": "A passion for politics stems usually from an insatiable need, either for power, or for friendship and adulation, or a combination of both.", + "author": "Fawn M. Brodie", + "tags": [ + "friendship", + "politics" + ], + "authorId": "Miy-SXplY_", + "authorSlug": "fawn-m-brodie", + "length": 138 + }, + { + "_id": "yE-5JJkxPMwS", + "content": "Be not angry that you cannot make others as you wish them to be, since you cannot make yourself as you wish to be.", + "author": "Thomas à Kempis", + "tags": [ + "famous-quotes" + ], + "authorId": "dlhcmYIGySaN", + "authorSlug": "thomas-a-kempis", + "length": 114 + }, + { + "_id": "K_JAFGFr7CQ", + "content": "No one can make you feel inferior without your consent.", + "author": "Eleanor Roosevelt", + "tags": [ + "famous-quotes" + ], + "authorId": "1X7NWb1oyd21", + "authorSlug": "eleanor-roosevelt", + "length": 55 + }, + { + "_id": "CFy490n4lo8g", + "content": "Appreciation can make a day, even change a life. Your willingness to put it into words is all that is necessary.", + "author": "Margaret Cousins", + "tags": [ + "famous-quotes" + ], + "authorId": "kGus0J4NngTj", + "authorSlug": "margaret-cousins", + "length": 112 + }, + { + "_id": "puOWR0I5qnC", + "content": "Much wisdom often goes with fewest words.", + "author": "Sophocles", + "tags": [ + "wisdom" + ], + "authorId": "bBwlN7LI2Jtu", + "authorSlug": "sophocles", + "length": 41 + }, + { + "_id": "qdu_n6bzzKdo", + "content": "Joy is the best makeup.", + "author": "Anne Lamott", + "tags": [ + "famous-quotes" + ], + "authorId": "U9sym_5RKQun", + "authorSlug": "anne-lamott", + "length": 23 + }, + { + "_id": "Me8_vxzeboS", + "content": "There never was a good knife made of bad steel.", + "author": "Benjamin Franklin", + "tags": [ + "famous-quotes" + ], + "authorId": "xkvcrqREjoOB", + "authorSlug": "benjamin-franklin", + "length": 47 + }, + { + "_id": "x16CqiTuVRw2", + "content": "I love my past. I love my present. Im not ashamed of what Ive had, and Im not sad because I have it no longer.", + "author": "Colette", + "tags": [ + "famous-quotes" + ], + "authorId": "Yu8OzWEaUynL", + "authorSlug": "colette", + "length": 110 + }, + { + "_id": "z-6ZEcSbP", + "content": "There is a difference between happiness and wisdom: he that thinks himself the happiest man is really so; but he that thinks himself the wisest is generally the greatest fool.", + "author": "Francis Bacon", + "tags": [ + "wisdom" + ], + "authorId": "zWIvsqe0NWrg", + "authorSlug": "francis-bacon", + "length": 175 + }, + { + "_id": "cItDIql9UDZQ", + "content": "To free us from the expectations of others, to give us back to ourselves... there lies the great, singular power of self-respect.", + "author": "Joan Didion", + "tags": [ + "famous-quotes" + ], + "authorId": "igzALEEh5F3J", + "authorSlug": "joan-didion", + "length": 129 + }, + { + "_id": "Ig8FLVp7MUGN", + "content": "The power of intuitive understanding will protect you from harm until the end of your days.", + "author": "Laozi", + "tags": [ + "famous-quotes" + ], + "authorId": "qsaptKSHuLDU", + "authorSlug": "laozi", + "length": 91 + }, + { + "_id": "nm0-EMpYdg", + "content": "Never explain - your friends do not need it and your enemies will not believe you anyway.", + "author": "Elbert Hubbard", + "tags": [ + "friendship" + ], + "authorId": "CBoxna3kOgDk", + "authorSlug": "elbert-hubbard", + "length": 89 + }, + { + "_id": "cfZn_tJRV_", + "content": "Discipline is the bridge between goals and accomplishment.", + "author": "Jim Rohn", + "tags": [ + "wisdom" + ], + "authorId": "y1EtofIFCLDG", + "authorSlug": "jim-rohn", + "length": 58 + }, + { + "_id": "BGwOo6FZq3tH", + "content": "It is not only for what we do that we are held responsible, but also for what we do not do.", + "author": "Molière", + "tags": [ + "famous-quotes" + ], + "authorId": "cnfO1057rjLp", + "authorSlug": "moliere", + "length": 91 + }, + { + "_id": "tSMhyFCDwuQ5", + "content": "All difficult things have their origin in that which is easy, and great things in that which is small.", + "author": "Laozi", + "tags": [ + "famous-quotes" + ], + "authorId": "qsaptKSHuLDU", + "authorSlug": "laozi", + "length": 102 + }, + { + "_id": "tfo24zWoAJ", + "content": "It requires wisdom to understand wisdom: the music is nothing if the audience is deaf.", + "author": "Walter Lippmann", + "tags": [ + "wisdom" + ], + "authorId": "62LoYlpnLBnT", + "authorSlug": "walter-lippmann", + "length": 86 + }, + { + "_id": "cJH-_m1_f0Um", + "content": "So is cheerfulness, or a good temper, the more it is spent, the more remains.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 77 + }, + { + "_id": "1YXmyT1yhWU", + "content": "Trust yourself. You know more than you think you do.", + "author": "Benjamin Spock", + "tags": [ + "famous-quotes" + ], + "authorId": "jolipv2qzign", + "authorSlug": "benjamin-spock", + "length": 52 + }, + { + "_id": "Tb-u26v47VO2", + "content": "Never promise more than you can perform.", + "author": "Publilius Syrus", + "tags": [ + "famous-quotes" + ], + "authorId": "uvj7ffI-Yu4z", + "authorSlug": "publilius-syrus", + "length": 40 + }, + { + "_id": "9rSuCtK9CCZk", + "content": "Formula for success: under promise and over deliver.", + "author": "Tom Peters", + "tags": [ + "famous-quotes" + ], + "authorId": "t77znI1gAwCN", + "authorSlug": "tom-peters", + "length": 52 + }, + { + "_id": "8ZIDZ3CxrJUg", + "content": "The only limit to our realization of tomorrow will be our doubts of today.", + "author": "Franklin D. Roosevelt", + "tags": [ + "famous-quotes" + ], + "authorId": "ejqEsEP8JKVz", + "authorSlug": "franklin-d-roosevelt", + "length": 74 + }, + { + "_id": "zbvj3SIQud", + "content": "I think people who are creative are the luckiest people on earth. I know that there are no shortcuts, but you must keep your faith in something Greater than You, and keep doing what you love. Do what you love, and you will find the way to get it out to the world.", + "author": "Judy Collins", + "tags": [ + "inspirational" + ], + "authorId": "PZLuQR2YR", + "authorSlug": "judy-collins", + "length": 263 + }, + { + "_id": "KBk2VabfrRne", + "content": "The possibilities are numerous once we decide to act and not react.", + "author": "George Bernard Shaw", + "tags": [ + "famous-quotes" + ], + "authorId": "zKfoVjq84t9O", + "authorSlug": "george-bernard-shaw", + "length": 67 + }, + { + "_id": "EGX58vRmwZac", + "content": "It is better to have enough ideas for some of them to be wrong, than to be always right by having no ideas at all.", + "author": "Edward de Bono", + "tags": [ + "famous-quotes" + ], + "authorId": "Q8iYMcQRfSaG", + "authorSlug": "edward-de-bono", + "length": 114 + }, + { + "_id": "Chvu_626SS", + "content": "The most I can do for my friend is simply be his friend.", + "author": "Henry David Thoreau", + "tags": [ + "friendship" + ], + "authorId": "NrthgQlym1Ji", + "authorSlug": "henry-david-thoreau", + "length": 56 + }, + { + "_id": "gWSsNulTG-B", + "content": "Every one in the world ought to do the things for which he is specially adapted. It is the part of wisdom to recognize what each one of us is best fitted for, and it is the part of education to perfect and utilize such predispositions. Because education can direct and aid nature but can never transform her.", + "author": "Maria Montessori", + "tags": [ + "wisdom" + ], + "authorId": "LLK3WHQr-n", + "authorSlug": "maria-montessori", + "length": 308 + }, + { + "_id": "4eekGH2qL80L", + "content": "He who lives in harmony with himself lives in harmony with the world.", + "author": "Marcus Aurelius", + "tags": [ + "famous-quotes" + ], + "authorId": "zW_A5fM6XU-v", + "authorSlug": "marcus-aurelius", + "length": 69 + }, + { + "_id": "q8nzpiYM7R5W", + "content": "The first requisite for success is the ability to apply your physical and mental energies to one problem incessantly without growing weary.", + "author": "Thomas Edison", + "tags": [ + "famous-quotes" + ], + "authorId": "PC4gkJPlknC3", + "authorSlug": "thomas-edison", + "length": 139 + }, + { + "_id": "mnFoWZfga9OZ", + "content": "Go for it now. The future is promised to no one.", + "author": "Wayne Dyer", + "tags": [ + "famous-quotes" + ], + "authorId": "CLxflG5QMMjg", + "authorSlug": "wayne-dyer", + "length": 48 + }, + { + "_id": "oWZdsMNhOx", + "content": "To wear your heart on your sleeve isn't a very good plan; you should wear it inside, where it functions best.", + "author": "Margaret Thatcher", + "tags": [ + "wisdom" + ], + "authorId": "WVe0z8ZowG", + "authorSlug": "margaret-thatcher", + "length": 109 + }, + { + "_id": "eobAW2Ou0", + "content": "You win the victory when you yield to friends.", + "author": "Sophocles", + "tags": [ + "friendship" + ], + "authorId": "bBwlN7LI2Jtu", + "authorSlug": "sophocles", + "length": 46 + }, + { + "_id": "3x87VqS_qvus", + "content": "He that never changes his opinions, never corrects his mistakes, and will never be wiser on the morrow than he is today.", + "author": "Tryon Edwards", + "tags": [ + "famous-quotes" + ], + "authorId": "1MrKaB-moWNI", + "authorSlug": "tryon-edwards", + "length": 120 + }, + { + "_id": "xzOfgffA_i4K", + "content": "Not what we have but what we enjoy constitutes our abundance.", + "author": "Jean Antoine Petit-Senn", + "tags": [ + "famous-quotes" + ], + "authorId": "yN1jsKxqikaP", + "authorSlug": "jean-antoine-petit-senn", + "length": 61 + }, + { + "_id": "47RkLdME26", + "content": "Never tell people how to do things. Tell them what to do and they will surprise you with their ingenuity.", + "author": "George S. Patton", + "tags": [ + "wisdom" + ], + "authorId": "fdSvvuZORmh4", + "authorSlug": "george-s-patton", + "length": 105 + }, + { + "_id": "rypL5kmdIg8", + "content": "A really great talent finds its happiness in execution.", + "author": "Johann Wolfgang von Goethe", + "tags": [ + "famous-quotes", + "happiness" + ], + "authorId": "aW1ZR-8LuS28", + "authorSlug": "johann-wolfgang-von-goethe", + "length": 55 + }, + { + "_id": "gfTHZTAshWP", + "content": "Wisdom comes alone through suffering.", + "author": "Aeschylus", + "tags": [ + "wisdom" + ], + "authorId": "ossJxB6-1", + "authorSlug": "aeschylus", + "length": 37 + }, + { + "_id": "HxaMW05ghs7P", + "content": "Every time you smile at someone, it is an action of love, a gift to that person, a beautiful thing.", + "author": "Mother Teresa", + "tags": [ + "famous-quotes" + ], + "authorId": "y7OXxqCaXKVa", + "authorSlug": "mother-teresa", + "length": 99 + }, + { + "_id": "NrhUkykn4F", + "content": "Marriage: A friendship recognized by the police.", + "author": "Robert Louis Stevenson", + "tags": [ + "friendship" + ], + "authorId": "qKwGWW8zDYtf", + "authorSlug": "robert-louis-stevenson", + "length": 48 + }, + { + "_id": "OHNMF1vCnPFE", + "content": "If I am not for myself, who will be for me? If I am not for others, what am I? And if not now, when?", + "author": "Rabbi Hillel", + "tags": [ + "famous-quotes" + ], + "authorId": "cII2_MfYV9sI", + "authorSlug": "rabbi-hillel", + "length": 100 + }, + { + "_id": "ncgMsMKJiBiN", + "content": "If you aren't going all the way, why go at all?", + "author": "Joe Namath", + "tags": [ + "famous-quotes", + "inspirational" + ], + "authorId": "qHtBDmfzcWY1", + "authorSlug": "joe-namath", + "length": 47 + }, + { + "_id": "em8Skf5_TYmL", + "content": "To go against the dominant thinking of your friends, of most of the people you see every day, is perhaps the most difficult act of heroism you can perform.", + "author": "Theodore H. White", + "tags": [ + "famous-quotes" + ], + "authorId": "K_3C2-eM0XG3", + "authorSlug": "theodore-h-white", + "length": 155 + }, + { + "_id": "_XB2MKPzW7dA", + "content": "Success is not the key to happiness. Happiness is the key to success. If you love what you are doing, you will be successful.", + "author": "Albert Schweitzer", + "tags": [ + "famous-quotes", + "success", + "happiness" + ], + "authorId": "ANT0MUtjmG6O", + "authorSlug": "albert-schweitzer", + "length": 125 + }, + { + "_id": "cOGCuuIf9q_V", + "content": "Always remember that you are absolutely unique. Just like everyone else.", + "author": "Margaret Mead", + "tags": [ + "famous-quotes" + ], + "authorId": "N_2wC_loMyb6", + "authorSlug": "margaret-mead", + "length": 72 + }, + { + "_id": "F3KNJ0FPy", + "content": "If you have the guts to keep making mistakes, your wisdom and intelligence leap forward with huge momentum.", + "author": "Holly Near", + "tags": [ + "wisdom" + ], + "authorId": "aRQvvTVi6J", + "authorSlug": "holly-near", + "length": 107 + }, + { + "_id": "4zLW-um1544g", + "content": "Success in business requires training and discipline and hard work. But if you're not frightened by these things, the opportunities are just as great today as they ever were.", + "author": "David Rockefeller", + "tags": [ + "famous-quotes" + ], + "authorId": "b8CEwzZeccbO", + "authorSlug": "david-rockefeller", + "length": 174 + }, + { + "_id": "RQP0o_Ze99D", + "content": "No man was ever wise by chance.", + "author": "Seneca the Younger", + "tags": [ + "famous-quotes", + "wisdom" + ], + "authorId": "TyeFCuRgEQjD", + "authorSlug": "seneca-the-younger", + "length": 31 + }, + { + "_id": "oKk8MCHpwgsK", + "content": "Nothing ever goes away until it has taught us what we need to know.", + "author": "Pema Chödrön", + "tags": [ + "famous-quotes" + ], + "authorId": "tN_VI2ruKHe1", + "authorSlug": "pema-chodron", + "length": 67 + }, + { + "_id": "44zDEFUKvm", + "content": "The more man meditates upon good thoughts, the better will be his world and the world at large.", + "author": "Confucius", + "tags": [ + "inspirational" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 95 + }, + { + "_id": "xH7XN__m5y", + "content": "We can only learn to love by loving.", + "author": "Iris Murdoch", + "tags": [ + "famous-quotes" + ], + "authorId": "v2Jk1rHcsGne", + "authorSlug": "iris-murdoch", + "length": 36 + }, + { + "_id": "22bmCfi_RKD9", + "content": "The only thing to do with good advice is to pass it on. It is never of any use to oneself.", + "author": "Oscar Wilde", + "tags": [ + "famous-quotes" + ], + "authorId": "yw5O7wULaKfx", + "authorSlug": "oscar-wilde", + "length": 90 + }, + { + "_id": "Hgj3O0h_R0", + "content": "Our shared values define us more than our differences. And acknowledging those shared values can see us through our challenges today if we have the wisdom to trust in them again.", + "author": "John McCain", + "tags": [ + "wisdom" + ], + "authorId": "zZ325SZnbU", + "authorSlug": "john-mc-cain", + "length": 178 + }, + { + "_id": "kbd0ItzHwGdq", + "content": "If you change the way you look at things, the things you look at change.", + "author": "Wayne Dyer", + "tags": [ + "famous-quotes" + ], + "authorId": "CLxflG5QMMjg", + "authorSlug": "wayne-dyer", + "length": 72 + }, + { + "_id": "77ZqNwl8aoR4", + "content": "There are two kinds of failures: those who thought and never did, and those who did and never thought.", + "author": "Laurence J. Peter", + "tags": [ + "famous-quotes" + ], + "authorId": "YQGk6ZEcJXwb", + "authorSlug": "laurence-j-peter", + "length": 102 + }, + { + "_id": "lZ8sFKiGiC", + "content": "If you don't know where you are going, any road will get you there.", + "author": "Lewis Carroll", + "tags": [ + "wisdom" + ], + "authorId": "CAjYjAa7_k", + "authorSlug": "lewis-carroll", + "length": 67 + }, + { + "_id": "dEyIaoXFto_A", + "content": "Happiness is a perfume you cannot pour on others without getting a few drops on yourself.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 89 + }, + { + "_id": "7I1NygyqFe", + "content": "Wisdom is found only in truth.", + "author": "Johann Wolfgang von Goethe", + "tags": [ + "wisdom" + ], + "authorId": "aW1ZR-8LuS28", + "authorSlug": "johann-wolfgang-von-goethe", + "length": 30 + }, + { + "_id": "PYnVkG4UQGH7", + "content": "There is nothing on this earth more to be prized than true friendship.", + "author": "Thomas Aquinas", + "tags": [ + "famous-quotes", + "friendship" + ], + "authorId": "aqllap-WMqA7", + "authorSlug": "thomas-aquinas", + "length": 70 + }, + { + "_id": "RvqpnaFvABIY", + "content": "To get the full value of joy you must have someone to divide it with.", + "author": "Mark Twain", + "tags": [ + "famous-quotes" + ], + "authorId": "zbADvkP0r05L", + "authorSlug": "mark-twain", + "length": 69 + }, + { + "_id": "aNE_rvppMD", + "content": "The art of storytelling is reaching its end because the epic side of truth, wisdom, is dying out.", + "author": "Walter Benjamin", + "tags": [ + "wisdom" + ], + "authorId": "zI76TcGmOQfn", + "authorSlug": "walter-benjamin", + "length": 97 + }, + { + "_id": "ITSWNEMYeJ2", + "content": "Our distrust is very expensive.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 31 + }, + { + "_id": "2wYjTZiTUSgQ", + "content": "The things that one most wants to do are the things that are probably most worth doing.", + "author": "Winifred Holtby", + "tags": [ + "famous-quotes" + ], + "authorId": "yw0APRMe6ccU", + "authorSlug": "winifred-holtby", + "length": 87 + }, + { + "_id": "EgCOqrOa1", + "content": "Learning is the beginning of wealth. Learning is the beginning of health. Learning is the beginning of spirituality. Searching and learning is where the miracle process all begins.", + "author": "Jim Rohn", + "tags": [ + "inspirational" + ], + "authorId": "y1EtofIFCLDG", + "authorSlug": "jim-rohn", + "length": 180 + }, + { + "_id": "e_gTr6YjsaRE", + "content": "First say to yourself what you would be; and then do what you have to do.", + "author": "Epictetus", + "tags": [ + "famous-quotes" + ], + "authorId": "HZHaUuiyIJPp", + "authorSlug": "epictetus", + "length": 73 + }, + { + "_id": "xiz-AuLNow5", + "content": "When you doubt your power, you give power to your doubt.", + "author": "Honoré de Balzac", + "tags": [ + "famous-quotes" + ], + "authorId": "jcH4GH-fD_Lo", + "authorSlug": "honore-de-balzac", + "length": 56 + }, + { + "_id": "0Fu_lJzNXJj1", + "content": "It is not so important to know everything as to appreciate what we learn.", + "author": "Hannah More", + "tags": [ + "famous-quotes" + ], + "authorId": "xCBqa2UdrCeh", + "authorSlug": "hannah-more", + "length": 73 + }, + { + "_id": "BPH3iUjq75e", + "content": "Keep yourself to the sunshine and you cannot see the shadow.", + "author": "Helen Keller", + "tags": [ + "famous-quotes" + ], + "authorId": "pYjZMId1ilhK", + "authorSlug": "helen-keller", + "length": 60 + }, + { + "_id": "UGTlczrORBij", + "content": "Nobody made a greater mistake than he who did nothing because he could do only a little.", + "author": "Edmund Burke", + "tags": [ + "famous-quotes" + ], + "authorId": "obe8upiDrPyc", + "authorSlug": "edmund-burke", + "length": 88 + }, + { + "_id": "__MSA1A1By9u", + "content": "The foolish man seeks happiness in the distance, the wise grows it under his feet.", + "author": "James Oppenheim", + "tags": [ + "famous-quotes" + ], + "authorId": "pY4cjNm7ogoc", + "authorSlug": "james-oppenheim", + "length": 82 + }, + { + "_id": "1fFK-Xgvy5", + "content": "There is no friendship, no love, like that of the parent for the child.", + "author": "Henry Ward Beecher", + "tags": [ + "friendship" + ], + "authorId": "7ARdGK2SnqLv", + "authorSlug": "henry-ward-beecher", + "length": 71 + }, + { + "_id": "999oXJVcS_I_", + "content": "Begin, be bold, and venture to be wise.", + "author": "Horace", + "tags": [ + "famous-quotes" + ], + "authorId": "CzaPXGzUZyyQ", + "authorSlug": "horace", + "length": 39 + }, + { + "_id": "h1Eu15cySGn7", + "content": "A true friend is the most precious of all possessions and the one we take the least thought about acquiring.", + "author": "François de La Rochefoucauld", + "tags": [ + "famous-quotes" + ], + "authorId": "WsdfQEdjyPNN", + "authorSlug": "francois-de-la-rochefoucauld", + "length": 108 + }, + { + "_id": "Fyet-MEuSrkD", + "content": "Our greatness lies not so much in being able to remake the world as being able to remake ourselves.", + "author": "Mahatma Gandhi", + "tags": [ + "famous-quotes" + ], + "authorId": "4J6_dx73YbT5", + "authorSlug": "mahatma-gandhi", + "length": 99 + }, + { + "_id": "fdSsJN4RCf", + "content": "It is impossible to love and to be wise.", + "author": "Francis Bacon", + "tags": [ + "wisdom" + ], + "authorId": "zWIvsqe0NWrg", + "authorSlug": "francis-bacon", + "length": 40 + }, + { + "_id": "q_cFcKHlt5", + "content": "The sincere friends of this world are as ship lights in the stormiest of nights.", + "author": "Giotto", + "tags": [ + "friendship" + ], + "authorId": "HzajC1C73d", + "authorSlug": "giotto", + "length": 80 + }, + { + "_id": "jUzHSANe7yNC", + "content": "He that respects himself is safe from others; he wears a coat of mail that none can pierce.", + "author": "Henry Wadsworth Longfellow", + "tags": [ + "famous-quotes" + ], + "authorId": "YhbRPxv708pj", + "authorSlug": "henry-wadsworth-longfellow", + "length": 91 + }, + { + "_id": "38EIHUXkkhc", + "content": "To bring anything into your life, imagine that it's already there.", + "author": "Richard Bach", + "tags": [ + "famous-quotes" + ], + "authorId": "t9lNqDH0TmYo", + "authorSlug": "richard-bach", + "length": 66 + }, + { + "_id": "kS2H14WhWSor", + "content": "The thought manifests as the word. The word manifests as the deed. The deed develops into habit. And the habit hardens into character.", + "author": "Buddha", + "tags": [ + "famous-quotes" + ], + "authorId": "sUNjshHENA05", + "authorSlug": "buddha", + "length": 134 + }, + { + "_id": "NoaRFCJNzT", + "content": "So much technology, so little talent.", + "author": "Vernor Vinge", + "tags": [ + "technology" + ], + "authorId": "1BW5mPKRg", + "authorSlug": "vernor-vinge", + "length": 37 + }, + { + "_id": "3BOQbdqBbzOd", + "content": "Do not follow where the path may lead. Go, instead, where there is no path and leave a trail.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 93 + }, + { + "_id": "KziYFsZxdD", + "content": "True friendship multiplies the good in life and divides its evils. Strive to have friends, for life without friends is like life on a desert island... to find one real friend in a lifetime is good fortune; to keep him is a blessing.", + "author": "Baltasar Gracián", + "tags": [ + "friendship" + ], + "authorId": "NOw0qSU2RzF5", + "authorSlug": "baltasar-gracian", + "length": 232 + }, + { + "_id": "_PqXIxnDlx", + "content": "Mistakes are the usual bridge between inexperience and wisdom.", + "author": "Phyllis Grissim-Theroux", + "tags": [ + "wisdom" + ], + "authorId": "LAi5Ya70h-", + "authorSlug": "phyllis-grissim-theroux", + "length": 62 + }, + { + "_id": "QZoT0w8MRyc_", + "content": "Those who dare to fail miserably can achieve greatly.", + "author": "John F. Kennedy", + "tags": [ + "famous-quotes" + ], + "authorId": "hVmL2YCoGCRZ", + "authorSlug": "john-f-kennedy", + "length": 53 + }, + { + "_id": "OrbTAJYtKCXr", + "content": "Until you value yourself, you won't value your time. Until you value your time, you won't do anything with it.", + "author": "M. Scott Peck", + "tags": [ + "famous-quotes" + ], + "authorId": "ki-YWDZ-hlDZ", + "authorSlug": "m-scott-peck", + "length": 110 + }, + { + "_id": "mi54WW7d_b", + "content": "The road of excess leads to the palace of wisdom.", + "author": "William Blake", + "tags": [ + "wisdom" + ], + "authorId": "7VD7ORpP-19B", + "authorSlug": "william-blake", + "length": 49 + }, + { + "_id": "_1lzYCBjMDlC", + "content": "When we feel love and kindness toward others, it not only makes others feel loved and cared for, but it helps us also to develop inner happiness and peace.", + "author": "Dalai Lama", + "tags": [ + "famous-quotes" + ], + "authorId": "OPVjtVVBVW5h", + "authorSlug": "dalai-lama", + "length": 155 + }, + { + "_id": "ZKfOV0UwuugV", + "content": "And as we let our own light shine, we unconsciously give other people permission to do the same.", + "author": "Nelson Mandela", + "tags": [ + "famous-quotes" + ], + "authorId": "ubn8tDLlaqk6", + "authorSlug": "nelson-mandela", + "length": 96 + }, + { + "_id": "VCPz7eYRbDs9", + "content": "No act of kindness, no matter how small, is ever wasted.", + "author": "Aesop", + "tags": [ + "famous-quotes" + ], + "authorId": "XYxYtSeixS-o", + "authorSlug": "aesop", + "length": 56 + }, + { + "_id": "0SOLhFe3M9-l", + "content": "We aim above the mark to hit the mark.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 38 + }, + { + "_id": "Xgdo3uU5rey", + "content": "Do something wonderful, people may imitate it.", + "author": "Albert Schweitzer", + "tags": [ + "famous-quotes", + "inspirational" + ], + "authorId": "ANT0MUtjmG6O", + "authorSlug": "albert-schweitzer", + "length": 46 + }, + { + "_id": "xEYjoxqQhRfC", + "content": "A man is great by deeds, not by birth.", + "author": "Chanakya", + "tags": [ + "famous-quotes" + ], + "authorId": "szWyArKJErGq", + "authorSlug": "chanakya", + "length": 38 + }, + { + "_id": "r2EnGdx5HG", + "content": "It has become appallingly obvious that our technology has exceeded our humanity.", + "author": "Albert Einstein", + "tags": [ + "technology" + ], + "authorId": "L76FRuEeGIUJ", + "authorSlug": "albert-einstein", + "length": 80 + }, + { + "_id": "JkGCNZF9ISSN", + "content": "Most of the shadows of life are caused by standing in our own sunshine.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 71 + }, + { + "_id": "pYR1eRWM7yT4", + "content": "Know that although in the eternal scheme of things you are small, you are also unique and irreplaceable, as are all your fellow humans everywhere in the world.", + "author": "Margaret Laurence", + "tags": [ + "famous-quotes" + ], + "authorId": "ZDgdNzHUFajm", + "authorSlug": "margaret-laurence", + "length": 159 + }, + { + "_id": "QGY0TiFjpdj2", + "content": "When I dare to be powerful, to use my strength in the service of my vision, then it becomes less and less important whether I am afraid.", + "author": "Audre Lorde", + "tags": [ + "famous-quotes" + ], + "authorId": "ykLNBe560sqb", + "authorSlug": "audre-lorde", + "length": 136 + }, + { + "_id": "6dj60GUobqhK", + "content": "Think for yourselves and let others enjoy the privilege to do so too.", + "author": "Voltaire", + "tags": [ + "famous-quotes" + ], + "authorId": "ZyuVXKFVTZu8", + "authorSlug": "voltaire", + "length": 69 + }, + { + "_id": "ueyq9zjTg9Rb", + "content": "Every gift from a friend is a wish for your happiness.", + "author": "Richard Bach", + "tags": [ + "famous-quotes" + ], + "authorId": "t9lNqDH0TmYo", + "authorSlug": "richard-bach", + "length": 54 + }, + { + "_id": "5UL7N8Q2QEH1", + "content": "There are two primary choices in life: to accept conditions as they exist, or accept responsibility for changing them.", + "author": "Denis Waitley", + "tags": [ + "famous-quotes" + ], + "authorId": "Ge0tkRMVUicu", + "authorSlug": "denis-waitley", + "length": 118 + }, + { + "_id": "vbTwRyX9uu", + "content": "Genius unrefined resembles a flash of lightning, but wisdom is like the sun.", + "author": "Franz Grillparzer", + "tags": [ + "wisdom" + ], + "authorId": "CxfrvMHSHQ", + "authorSlug": "franz-grillparzer", + "length": 76 + }, + { + "_id": "HQmAwGraUV", + "content": "Tragedy is a tool for the living to gain wisdom, not a guide by which to live.", + "author": "Robert F. Kennedy", + "tags": [ + "wisdom" + ], + "authorId": "1qqH4MEkASdy", + "authorSlug": "robert-f-kennedy", + "length": 78 + }, + { + "_id": "6vrEW1dd1Q", + "content": "He who is taught to live upon little owes more to his father's wisdom than he who has a great deal left him does to his father's care.", + "author": "William C. Menninger", + "tags": [ + "wisdom" + ], + "authorId": "PyQOMX6cxaNs", + "authorSlug": "william-c-menninger", + "length": 134 + }, + { + "_id": "aJ-kdYIolJ8-", + "content": "Accept challenges, so that you may feel the exhilaration of victory.", + "author": "George S. Patton", + "tags": [ + "famous-quotes" + ], + "authorId": "fdSvvuZORmh4", + "authorSlug": "george-s-patton", + "length": 68 + }, + { + "_id": "-0DZUCVFcb", + "content": "Friendship is Love without his wings!", + "author": "Lord Byron", + "tags": [ + "friendship" + ], + "authorId": "EUjr2jc6nT", + "authorSlug": "lord-byron", + "length": 37 + }, + { + "_id": "AUGTBH2V__b", + "content": "True friends stab you in the front.", + "author": "Oscar Wilde", + "tags": [ + "friendship", + "famous-quotes" + ], + "authorId": "yw5O7wULaKfx", + "authorSlug": "oscar-wilde", + "length": 35 + }, + { + "_id": "R7wXqieTTo", + "content": "Value your friendship. Value your relationships.", + "author": "Barbara Bush", + "tags": [ + "friendship" + ], + "authorId": "Qw_ksGjkS8", + "authorSlug": "barbara-bush", + "length": 48 + }, + { + "_id": "ST-c8lhICwVj", + "content": "There is never enough time to do everything, but there is always enough time to do the most important thing.", + "author": "Brian Tracy", + "tags": [ + "famous-quotes" + ], + "authorId": "VC1mZHGb7rAH", + "authorSlug": "brian-tracy", + "length": 108 + }, + { + "_id": "VsarQ0iEgE1", + "content": "Life isn't about finding yourself. Life is about creating yourself.", + "author": "Bernard Shaw", + "tags": [ + "famous-quotes" + ], + "authorId": "gk8iLycW0DFC", + "authorSlug": "bernard-shaw", + "length": 67 + }, + { + "_id": "S5Id5SJmu6Jp", + "content": "No one has a finer command of language than the person who keeps his mouth shut.", + "author": "Sam Rayburn", + "tags": [ + "famous-quotes" + ], + "authorId": "unPacEQP5CiA", + "authorSlug": "sam-rayburn", + "length": 80 + }, + { + "_id": "n1CKSLhX-iSp", + "content": "All that is necessary is to accept the impossible, do without the indispensable, and bear the intolerable.", + "author": "Kathleen Norris", + "tags": [ + "famous-quotes" + ], + "authorId": "B50xTKgH0R4-", + "authorSlug": "kathleen-norris", + "length": 106 + }, + { + "_id": "oAtERLD0yyQR", + "content": "He who knows, does not speak. He who speaks, does not know.", + "author": "Laozi", + "tags": [ + "famous-quotes" + ], + "authorId": "qsaptKSHuLDU", + "authorSlug": "laozi", + "length": 59 + }, + { + "_id": "WQbJJwEFP1l9", + "content": "In the depth of winter, I finally learned that there was within me an invincible summer.", + "author": "Albert Camus", + "tags": [ + "famous-quotes", + "inspirational" + ], + "authorId": "RmuonXrXY44Z", + "authorSlug": "albert-camus", + "length": 88 + }, + { + "_id": "smwaq6O8Hk", + "content": "You can always tell a real friend: when you've made a fool of yourself he doesn't feel you've done a permanent job.", + "author": "Laurence J. Peter", + "tags": [ + "friendship" + ], + "authorId": "YQGk6ZEcJXwb", + "authorSlug": "laurence-j-peter", + "length": 115 + }, + { + "_id": "obE41Svazc", + "content": "True knowledge exists in knowing that you know nothing.", + "author": "Isocrates", + "tags": [ + "wisdom" + ], + "authorId": "6emd99Cst9Cf", + "authorSlug": "isocrates", + "length": 55 + }, + { + "_id": "2a7xKeQ1JWGy", + "content": "To keep the body in good health is a duty... otherwise we shall not be able to keep our mind strong and clear.", + "author": "Buddha", + "tags": [ + "famous-quotes" + ], + "authorId": "sUNjshHENA05", + "authorSlug": "buddha", + "length": 110 + }, + { + "_id": "xwABJFIJQVwW", + "content": "We need to find the courage to say NO to the things and people that are not serving us if we want to rediscover ourselves and live our lives with authenticity.", + "author": "Barbara De Angelis", + "tags": [ + "famous-quotes" + ], + "authorId": "o77X2PrW6mcZ", + "authorSlug": "barbara-de-angelis", + "length": 159 + }, + { + "_id": "XdeBIvTg0D", + "content": "Be the chief but never the lord.", + "author": "Laozi", + "tags": [ + "famous-quotes" + ], + "authorId": "qsaptKSHuLDU", + "authorSlug": "laozi", + "length": 32 + }, + { + "_id": "JfTBllGjt7L", + "content": "Love all, trust a few, do wrong to none.", + "author": "William Shakespeare", + "tags": [ + "famous-quotes" + ], + "authorId": "5F2Uwpllj", + "authorSlug": "william-shakespeare", + "length": 40 + }, + { + "_id": "OSaopvW0IUd", + "content": "The more you know yourself, the more you forgive yourself.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 58 + }, + { + "_id": "nx2M9kL0EgcI", + "content": "Do good by stealth, and blush to find it fame.", + "author": "Alexander Pope", + "tags": [ + "famous-quotes" + ], + "authorId": "_gz-cfmqA1mr", + "authorSlug": "alexander-pope", + "length": 46 + }, + { + "_id": "3E7C0r4EhlHT", + "content": "Build a better mousetrap and the world will beat a path to your door.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 69 + }, + { + "_id": "z-hDjBf4spF-", + "content": "Make the most of yourself, for that is all there is of you.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 59 + }, + { + "_id": "r8LdcYbz3s_", + "content": "In wisdom gathered over time I have found that every experience is a form of exploration.", + "author": "Ansel Adams", + "tags": [ + "wisdom" + ], + "authorId": "4ejQsV_Lu2", + "authorSlug": "ansel-adams", + "length": 89 + }, + { + "_id": "dO8CMrZCBgBw", + "content": "Chance is always powerful. Let your hook be always cast; in the pool where you least expect it, there will be a fish.", + "author": "Ovid", + "tags": [ + "famous-quotes" + ], + "authorId": "f9utPohz0fgH", + "authorSlug": "ovid", + "length": 117 + }, + { + "_id": "Vs-4YEGn", + "content": "I can, therefore I am.", + "author": "Simone Weil", + "tags": [ + "inspirational" + ], + "authorId": "bUP0cHEuKQBn", + "authorSlug": "simone-weil", + "length": 22 + }, + { + "_id": "A1JTIXKBd-S", + "content": "The only real valuable thing is intuition.", + "author": "Albert Einstein", + "tags": [ + "famous-quotes" + ], + "authorId": "L76FRuEeGIUJ", + "authorSlug": "albert-einstein", + "length": 42 + }, + { + "_id": "N9BhgsYxSz", + "content": "Some people go to priests; others to poetry; I to my friends.", + "author": "Virginia Woolf", + "tags": [ + "friendship" + ], + "authorId": "_ITh8zk9Aj", + "authorSlug": "virginia-woolf", + "length": 61 + }, + { + "_id": "OSF3eMB6sZaP", + "content": "Liberty, taking the word in its concrete sense, consists in the ability to choose.", + "author": "Simone Weil", + "tags": [ + "famous-quotes" + ], + "authorId": "bUP0cHEuKQBn", + "authorSlug": "simone-weil", + "length": 82 + }, + { + "_id": "uXHzy3qRhoCy", + "content": "If we are not fully ourselves, truly in the present moment, we miss everything.", + "author": "Thích Nhất Hạnh", + "tags": [ + "famous-quotes" + ], + "authorId": "N0pHADD097gY", + "authorSlug": "thich-nhất-hạnh", + "length": 79 + }, + { + "_id": "N3YI0c4c6TR", + "content": "I allow my intuition to lead my path.", + "author": "Manuel Puig", + "tags": [ + "famous-quotes" + ], + "authorId": "UJel-JAtoHj1", + "authorSlug": "manuel-puig", + "length": 37 + }, + { + "_id": "6c2h-AtqMj6d", + "content": "You can stand tall without standing on someone. You can be a victor without having victims.", + "author": "Harriet Woods", + "tags": [ + "famous-quotes" + ], + "authorId": "3lL0AlxRBSU_", + "authorSlug": "harriet-woods", + "length": 91 + }, + { + "_id": "puEMvYGsD", + "content": "Loyalty and friendship, which is to me the same, created all the wealth that I've ever thought I'd have.", + "author": "Ernie Banks", + "tags": [ + "friendship" + ], + "authorId": "Chx-QR-kwO", + "authorSlug": "ernie-banks", + "length": 104 + }, + { + "_id": "z56LpsUqHr", + "content": "Wisdom is oftentimes nearer when we stoop than when we soar.", + "author": "William Wordsworth", + "tags": [ + "wisdom" + ], + "authorId": "pcN62RXd7Z", + "authorSlug": "william-wordsworth", + "length": 60 + }, + { + "_id": "_ZVJWv9HJsBe", + "content": "Whoever is happy will make others happy, too.", + "author": "Mark Twain", + "tags": [ + "famous-quotes" + ], + "authorId": "zbADvkP0r05L", + "authorSlug": "mark-twain", + "length": 45 + }, + { + "_id": "ARKzsqVpFY", + "content": "Two persons cannot long be friends if they cannot forgive each other's little failings.", + "author": "Jean de La Bruyère", + "tags": [ + "friendship" + ], + "authorId": "X28vkua13m", + "authorSlug": "jean-de-la-bruyere", + "length": 87 + }, + { + "_id": "je7UytrRlH-0", + "content": "The supreme art of war is to subdue the enemy without fighting.", + "author": "Sun Tzu", + "tags": [ + "famous-quotes" + ], + "authorId": "G-QcoRJkxKHQ", + "authorSlug": "sun-tzu", + "length": 63 + }, + { + "_id": "m29XGLtQho", + "content": "Programs must be written for people to read, and only incidentally for machines to execute.", + "author": "Hal Abelson", + "tags": [ + "technology" + ], + "authorId": "pPc8J2hf_", + "authorSlug": "hal-abelson", + "length": 91 + }, + { + "_id": "JjBqM4t-sxsr", + "content": "Wise men talk because they have something to say; fools, because they have to say something.", + "author": "Plato", + "tags": [ + "famous-quotes" + ], + "authorId": "VtJS8G9y5FL1", + "authorSlug": "plato", + "length": 92 + }, + { + "_id": "K1iJC1T4pDf", + "content": "I believe that we are fundamentally the same and have the same basic potential.", + "author": "Dalai Lama", + "tags": [ + "famous-quotes" + ], + "authorId": "OPVjtVVBVW5h", + "authorSlug": "dalai-lama", + "length": 79 + }, + { + "_id": "Rp9oE96Hqv9j", + "content": "Cherish your visions and your dreams as they are the children of your soul; the blueprints of your ultimate achievements.", + "author": "Napoleon Hill", + "tags": [ + "famous-quotes" + ], + "authorId": "N4h708MyElyG", + "authorSlug": "napoleon-hill", + "length": 121 + }, + { + "_id": "Mv26be7c-4_i", + "content": "Everything that irritates us about others can lead us to a better understanding of ourselves.", + "author": "Carl Jung", + "tags": [ + "famous-quotes" + ], + "authorId": "-LYBJJujV7RL", + "authorSlug": "carl-jung", + "length": 93 + }, + { + "_id": "w_JEQv9o4sF", + "content": "The truest wisdom is a resolute determination.", + "author": "Napoleon", + "tags": [ + "famous-quotes", + "wisdom" + ], + "authorId": "xlnMchFC2VJG", + "authorSlug": "napoleon", + "length": 46 + }, + { + "_id": "xD83G0bc53Gp", + "content": "All men have a sweetness in their life. That is what helps them go on. It is towards that they turn when they feel too worn out.", + "author": "Albert Camus", + "tags": [ + "famous-quotes" + ], + "authorId": "RmuonXrXY44Z", + "authorSlug": "albert-camus", + "length": 128 + }, + { + "_id": "xqpuo_rjf_1g", + "content": "To dare is to lose ones footing momentarily. To not dare is to lose oneself.", + "author": "Søren Kierkegaard", + "tags": [ + "famous-quotes" + ], + "authorId": "ZEGr5G7ktW1L", + "authorSlug": "soren-kierkegaard", + "length": 76 + }, + { + "_id": "gXJa2hBwIpVh", + "content": "Arriving at one point is the starting point to another.", + "author": "John Dewey", + "tags": [ + "famous-quotes" + ], + "authorId": "_C0q1b52VOtH", + "authorSlug": "john-dewey", + "length": 55 + }, + { + "_id": "9knYf-nVYu10", + "content": "The least of things with a meaning is worth more in life than the greatest of things without it.", + "author": "Carl Jung", + "tags": [ + "famous-quotes" + ], + "authorId": "-LYBJJujV7RL", + "authorSlug": "carl-jung", + "length": 96 + }, + { + "_id": "i5NVHAIzPDWa", + "content": "The awareness of our own strength makes us modest.", + "author": "Paul Cézanne", + "tags": [ + "famous-quotes" + ], + "authorId": "SU_Z9xGuikYn", + "authorSlug": "paul-cezanne", + "length": 50 + }, + { + "_id": "-LwlAMmYmOG", + "content": "Kind words do not cost much. Yet they accomplish much.", + "author": "Blaise Pascal", + "tags": [ + "famous-quotes" + ], + "authorId": "RzEwhF8861WC", + "authorSlug": "blaise-pascal", + "length": 54 + }, + { + "_id": "WsswXPIbtq1p", + "content": "To hell with circumstances; I create opportunities.", + "author": "Bruce Lee", + "tags": [ + "famous-quotes" + ], + "authorId": "raaFe2cXACnG", + "authorSlug": "bruce-lee", + "length": 51 + }, + { + "_id": "nFRdjQdGL4v5", + "content": "Love is never lost. If not reciprocated, it will flow back and soften and purify the heart.", + "author": "Washington Irving", + "tags": [ + "famous-quotes" + ], + "authorId": "NTzdD9ZDCzOR", + "authorSlug": "washington-irving", + "length": 91 + }, + { + "_id": "UNkrqEJixcvb", + "content": "You must welcome change as the rule but not as your ruler.", + "author": "Denis Waitley", + "tags": [ + "famous-quotes" + ], + "authorId": "Ge0tkRMVUicu", + "authorSlug": "denis-waitley", + "length": 58 + }, + { + "_id": "tSVLiDTGay4S", + "content": "Love cures people - both the ones who give it and the ones who receive it.", + "author": "Karl Menninger", + "tags": [ + "famous-quotes" + ], + "authorId": "Cq01vUii_wxS", + "authorSlug": "karl-menninger", + "length": 74 + }, + { + "_id": "qaVA31y0GA1Q", + "content": "Opportunity often comes disguised in the form of misfortune, or temporary defeat.", + "author": "Napoleon Hill", + "tags": [ + "famous-quotes" + ], + "authorId": "N4h708MyElyG", + "authorSlug": "napoleon-hill", + "length": 81 + }, + { + "_id": "5xt93w4ql_UM", + "content": "Never idealize others. They will never live up to your expectations.", + "author": "Leo Buscaglia", + "tags": [ + "famous-quotes" + ], + "authorId": "XVzZKXv06YQG", + "authorSlug": "leo-buscaglia", + "length": 68 + }, + { + "_id": "WuHLOLFI2uKy", + "content": "To be aware of a single shortcoming in oneself is more useful than to be aware of a thousand in someone else.", + "author": "Dalai Lama", + "tags": [ + "famous-quotes" + ], + "authorId": "OPVjtVVBVW5h", + "authorSlug": "dalai-lama", + "length": 109 + }, + { + "_id": "UQ2TjZ5IIDSR", + "content": "Anyone who doesn't take truth seriously in small matters cannot be trusted in large ones either.", + "author": "Albert Einstein", + "tags": [ + "famous-quotes" + ], + "authorId": "L76FRuEeGIUJ", + "authorSlug": "albert-einstein", + "length": 96 + }, + { + "_id": "bhseVu9PSh1I", + "content": "Accept the things to which fate binds you, and love the people with whom fate brings you together, but do so with all your heart.", + "author": "Marcus Aurelius", + "tags": [ + "famous-quotes" + ], + "authorId": "zW_A5fM6XU-v", + "authorSlug": "marcus-aurelius", + "length": 129 + }, + { + "_id": "JqusXYQEGNPC", + "content": "Do you want to know who you are? Don't ask. Act! Action will delineate and define you.", + "author": "Thomas Jefferson", + "tags": [ + "famous-quotes" + ], + "authorId": "Zy4xV5ItRxmv", + "authorSlug": "thomas-jefferson", + "length": 86 + }, + { + "_id": "bkL1a4IExc", + "content": "Motivation is the art of getting people to do what you want them to do because they want to do it.", + "author": "Dwight D. Eisenhower", + "tags": [ + "inspirational" + ], + "authorId": "JSoEc_6dY", + "authorSlug": "dwight-d-eisenhower", + "length": 98 + }, + { + "_id": "x6LCvKtrXx", + "content": "All love that has not friendship for its base, is like a mansion built upon the sand.", + "author": "Ella Wheeler Wilcox", + "tags": [ + "friendship", + "love" + ], + "authorId": "uKzj7T5Huj", + "authorSlug": "ella-wheeler-wilcox", + "length": 85 + }, + { + "_id": "mjKwHGRjIE", + "content": "The more you like yourself, the less you are like anyone else, which makes you unique.", + "author": "Walt Disney", + "tags": [ + "wisdom" + ], + "authorId": "HzyhMbP15DoD", + "authorSlug": "walt-disney", + "length": 86 + }, + { + "_id": "S47CRwtgyIsp", + "content": "Constant kindness can accomplish much. As the sun makes ice melt, kindness causes misunderstanding, mistrust, and hostility to evaporate.", + "author": "Albert Schweitzer", + "tags": [ + "famous-quotes" + ], + "authorId": "ANT0MUtjmG6O", + "authorSlug": "albert-schweitzer", + "length": 137 + }, + { + "_id": "oM0UB2sH4t", + "author": "William Shakespeare", + "content": "Action is eloquence!", + "tags": [ + "literature", + "famous-quotes" + ], + "authorId": "5F2Uwpllj", + "authorSlug": "william-shakespeare", + "length": 20 + }, + { + "_id": "305CvwuKqye", + "content": "The heart has its reasons which reason knows not of.", + "author": "Blaise Pascal", + "tags": [ + "famous-quotes" + ], + "authorId": "RzEwhF8861WC", + "authorSlug": "blaise-pascal", + "length": 52 + }, + { + "_id": "yZ1f2VZoK93Z", + "content": "Good people are good because they've come to wisdom through failure. We get very little wisdom from success, you know.", + "author": "William Saroyan", + "tags": [ + "famous-quotes" + ], + "authorId": "5-_LwDOxI_Fb", + "authorSlug": "william-saroyan", + "length": 118 + }, + { + "_id": "SDhP8UAmtD09", + "content": "If you're walking down the right path and you're willing to keep walking, eventually you'll make progress.", + "author": "Barack Obama", + "tags": [ + "famous-quotes" + ], + "authorId": "Xt2CsBHup4NB", + "authorSlug": "barack-obama", + "length": 106 + }, + { + "_id": "xDhw8-7y3p", + "content": "Do not wait; the time will never be 'just right.' Start where you stand, and work with whatever tools you may have at your command, and better tools will be found as you go along.", + "author": "George Herbert", + "tags": [ + "inspirational" + ], + "authorId": "6VObium64", + "authorSlug": "george-herbert", + "length": 179 + }, + { + "_id": "KJhB_lkgrbPa", + "content": "It is better to understand a little than to misunderstand a lot.", + "author": "Anatole France", + "tags": [ + "famous-quotes" + ], + "authorId": "anpE1ceNi3xv", + "authorSlug": "anatole-france", + "length": 64 + }, + { + "_id": "yCY2q20UK4Uf", + "content": "Let us sacrifice our today so that our children can have a better tomorrow.", + "author": "A. P. J. Abdul Kalam", + "tags": [ + "famous-quotes", + "inspirational" + ], + "authorId": "Bblz8Knp6-ZB", + "authorSlug": "a-p-j-abdul-kalam", + "length": 75 + }, + { + "_id": "yBn9DgK3vf", + "content": "A youth, when at home, should be filial and, abroad, respectful to his elders. He should be earnest and truthful. He should overflow in love to all and cultivate the friendship of the good. When he has time and opportunity, after the performance of these things, he should employ them in polite studies.", + "author": "Confucius", + "tags": [ + "friendship" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 303 + }, + { + "_id": "gZavCRsLqcse", + "content": "I love you the more in that I believe you had liked me for my own sake and for nothing else.", + "author": "John Keats", + "tags": [ + "famous-quotes" + ], + "authorId": "mXQPMe-Kg_wJ", + "authorSlug": "john-keats", + "length": 92 + }, + { + "_id": "auaOSkmWy91", + "content": "Read as you taste fruit or savor wine, or enjoy friendship, love or life.", + "author": "George Herbert", + "tags": [ + "friendship" + ], + "authorId": "6VObium64", + "authorSlug": "george-herbert", + "length": 73 + }, + { + "_id": "D6Yr5I9ikXXc", + "content": "If you do what you've always done, you'll get what youve always gotten.", + "author": "Tony Robbins", + "tags": [ + "famous-quotes" + ], + "authorId": "IkUGwHTcaXs9", + "authorSlug": "tony-robbins", + "length": 71 + }, + { + "_id": "OCgCMtjcY3HJ", + "content": "Respect should be earned by actions, and not acquired by years.", + "author": "Frank Lloyd Wright", + "tags": [ + "famous-quotes" + ], + "authorId": "U3a52-LjQPgz", + "authorSlug": "frank-lloyd-wright", + "length": 63 + }, + { + "_id": "JP0Z6kpYem0y", + "content": "Bodily exercise, when compulsory, does no harm to the body; but knowledge which is acquired under compulsion obtains no hold on the mind.", + "author": "Plato", + "tags": [ + "famous-quotes" + ], + "authorId": "VtJS8G9y5FL1", + "authorSlug": "plato", + "length": 137 + }, + { + "_id": "_6z2BhrSP8hw", + "content": "Do not be too timid and squeamish about your reactions. All life is an experiment. The more experiments you make the better.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 124 + }, + { + "_id": "DiIyvrMPCZUK", + "content": "The universe is full of magical things, patiently waiting for our wits to grow sharper.", + "author": "Eden Phillpotts", + "tags": [ + "famous-quotes" + ], + "authorId": "qaLujpsc9zLA", + "authorSlug": "eden-phillpotts", + "length": 87 + }, + { + "_id": "4zV5Pz4HES", + "content": "Where is the Life we have lost in living? Where is the wisdom we have lost in knowledge? Where is the knowledge we have lost in information?", + "author": "George Eliot", + "tags": [ + "wisdom" + ], + "authorId": "MRCvek-GcKNk", + "authorSlug": "george-eliot", + "length": 140 + }, + { + "_id": "qGMGUH1ric", + "content": "Friendship is always a sweet responsibility, never an opportunity.", + "author": "Kahlil Gibran", + "tags": [ + "friendship" + ], + "authorId": "h05GYnKzckM3", + "authorSlug": "kahlil-gibran", + "length": 66 + }, + { + "_id": "QLHIDLCkdjB", + "content": "The winds and waves are always on the side of the ablest navigators.", + "author": "Edward Gibbon", + "tags": [ + "famous-quotes" + ], + "authorId": "YT9gVcO1Iwl9", + "authorSlug": "edward-gibbon", + "length": 68 + }, + { + "_id": "kvTitxhuKqUw", + "content": "There is only one success - to be able to spend your life in your own way.", + "author": "Christopher Morley", + "tags": [ + "famous-quotes" + ], + "authorId": "SWPwu5PcQUso", + "authorSlug": "christopher-morley", + "length": 74 + }, + { + "_id": "5eTiZJCTAy9B", + "content": "Whoso loves, believes the impossible.", + "author": "Elizabeth Browning", + "tags": [ + "famous-quotes" + ], + "authorId": "9gFTpOXrxt8c", + "authorSlug": "elizabeth-browning", + "length": 37 + }, + { + "_id": "hLCOLhZE_92V", + "content": "Reality is merely an illusion, albeit a very persistent one.", + "author": "Albert Einstein", + "tags": [ + "famous-quotes", + "science", + "wisdom" + ], + "authorId": "L76FRuEeGIUJ", + "authorSlug": "albert-einstein", + "length": 60 + }, + { + "_id": "MONDu5bf8JmU", + "content": "If you love life, don't waste time, for time is what life is made up of.", + "author": "Bruce Lee", + "tags": [ + "famous-quotes" + ], + "authorId": "raaFe2cXACnG", + "authorSlug": "bruce-lee", + "length": 72 + }, + { + "_id": "IyF7fIZIc3XX", + "content": "The most difficult thing is the decision to act, the rest is merely tenacity. The fears are paper tigers. You can do anything you decide to do. You can act to change and control your life; and the procedure, the process is its own reward.", + "author": "Amelia Earhart", + "tags": [ + "famous-quotes" + ], + "authorId": "by3TkPSn9iVA", + "authorSlug": "amelia-earhart", + "length": 238 + }, + { + "_id": "iLP7-hx1ktyO", + "content": "Do what you can. Want what you have. Be who you are.", + "author": "Forrest Church", + "tags": [ + "famous-quotes" + ], + "authorId": "NvKBMv_KbtVs", + "authorSlug": "forrest-church", + "length": 52 + }, + { + "_id": "wPJ_Mb4EjPlE", + "content": "Mind is everything: muscle, pieces of rubber. All that I am, I am because of my mind.", + "author": "Paavo Nurmi", + "tags": [ + "famous-quotes" + ], + "authorId": "SckF0U8Iy85M", + "authorSlug": "paavo-nurmi", + "length": 85 + }, + { + "_id": "QtuKHLeFEBK5", + "content": "We come to love not by finding a perfect person, but by learning to see an imperfect person perfectly.", + "author": "Sam Keen", + "tags": [ + "famous-quotes" + ], + "authorId": "hWxSyExpHl40", + "authorSlug": "sam-keen", + "length": 102 + }, + { + "_id": "-Hqy06gxrO", + "content": "A tree is known by its fruit; a man by his deeds. A good deed is never lost; he who sows courtesy reaps friendship, and he who plants kindness gathers love.", + "author": "Basil of Caesarea", + "tags": [ + "wisdom", + "friendship" + ], + "authorId": "6bnXdruCW", + "authorSlug": "basil-of-caesarea", + "length": 156 + }, + { + "_id": "r5SEZsvbKwTw", + "content": "What is new in the world? Nothing. What is old in the world? Nothing. Everything has always been and will always be.", + "author": "Sai Baba", + "tags": [ + "famous-quotes" + ], + "authorId": "ZuwCV8XgXVtt", + "authorSlug": "sai-baba", + "length": 116 + }, + { + "_id": "6aKJM5st-C", + "content": "It is more shameful to distrust our friends than to be deceived by them.", + "author": "Confucius", + "tags": [ + "friendship", + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 72 + }, + { + "_id": "P2UE04MWtcme", + "content": "Everything has beauty, but not everyone sees it.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 48 + }, + { + "_id": "bcAbPetiKzd", + "content": "Learn from yesterday, live for today, hope for tomorrow.", + "author": "Albert Einstein", + "tags": [ + "famous-quotes", + "inspirational" + ], + "authorId": "L76FRuEeGIUJ", + "authorSlug": "albert-einstein", + "length": 56 + }, + { + "_id": "2tzuQm94r9D", + "content": "He who talks more is sooner exhausted.", + "author": "Laozi", + "tags": [ + "famous-quotes" + ], + "authorId": "qsaptKSHuLDU", + "authorSlug": "laozi", + "length": 38 + }, + { + "_id": "hhDqMdHw5w", + "content": "If there is such a thing as a good marriage, it is because it resembles friendship rather than love.", + "author": "Michel de Montaigne", + "tags": [ + "friendship", + "love" + ], + "authorId": "B2lKC8XK8Dh7", + "authorSlug": "michel-de-montaigne", + "length": 100 + }, + { + "_id": "lnt4f9WI2nt", + "content": "If a man does his best, what else is there?", + "author": "George S. Patton", + "tags": [ + "famous-quotes" + ], + "authorId": "fdSvvuZORmh4", + "authorSlug": "george-s-patton", + "length": 43 + }, + { + "_id": "WjEYIJ2XWpE5", + "content": "Fine words and an insinuating appearance are seldom associated with true virtue", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 79 + }, + { + "_id": "EEdhZ7MQ8", + "content": "Your talent is God's gift to you. What you do with it is your gift back to God.", + "author": "Leo Buscaglia", + "tags": [ + "inspirational" + ], + "authorId": "XVzZKXv06YQG", + "authorSlug": "leo-buscaglia", + "length": 79 + }, + { + "_id": "jTzIvr-aog", + "content": "Quick decisions are unsafe decisions.", + "author": "Sophocles", + "tags": [ + "wisdom" + ], + "authorId": "bBwlN7LI2Jtu", + "authorSlug": "sophocles", + "length": 37 + }, + { + "_id": "_0Xe3v-BJjUx", + "content": "To fly as fast as thought, you must begin by knowing that you have already arrived.", + "author": "Richard Bach", + "tags": [ + "famous-quotes" + ], + "authorId": "t9lNqDH0TmYo", + "authorSlug": "richard-bach", + "length": 83 + }, + { + "_id": "rWlO2ihzqhk", + "content": "Better be ignorant of a matter than half know it.", + "author": "Publilius Syrus", + "tags": [ + "famous-quotes" + ], + "authorId": "uvj7ffI-Yu4z", + "authorSlug": "publilius-syrus", + "length": 49 + }, + { + "_id": "Ckh_FdZYHyf", + "content": "I destroy my enemies when I make them my friends.", + "author": "Abraham Lincoln", + "tags": [ + "famous-quotes", + "history", + "politics", + "friendship" + ], + "authorId": "8k75S1ntV9GW", + "authorSlug": "abraham-lincoln", + "length": 49 + }, + { + "_id": "7Gy2Y5Zxuzh", + "content": "Autumn is a second spring when every leaf is a flower.", + "author": "Albert Camus", + "tags": [ + "famous-quotes", + "nature" + ], + "authorId": "RmuonXrXY44Z", + "authorSlug": "albert-camus", + "length": 54 + }, + { + "_id": "oG014O92mM", + "content": "Life is a learning experience, only if you learn.", + "author": "Yogi Berra", + "tags": [ + "famous-quotes" + ], + "authorId": "-HVEQO7Ru6d_", + "authorSlug": "yogi-berra", + "length": 49 + }, + { + "_id": "3v53-XiBvtQK", + "content": "Happiness is when what you think, what you say, and what you do are in harmony.", + "author": "Mahatma Gandhi", + "tags": [ + "famous-quotes" + ], + "authorId": "4J6_dx73YbT5", + "authorSlug": "mahatma-gandhi", + "length": 79 + }, + { + "_id": "OaGsXXzLiBqf", + "content": "Without passion man is a mere latent force and possibility, like the flint which awaits the shock of the iron before it can give forth its spark.", + "author": "Henri-Frédéric Amiel", + "tags": [ + "famous-quotes" + ], + "authorId": "AwZcCJD8ICBi", + "authorSlug": "henri-frederic-amiel", + "length": 145 + }, + { + "_id": "a9C880IWYfsD", + "content": "Your mind will answer most questions if you learn to relax and wait for the answer.", + "author": "William Burroughs", + "tags": [ + "famous-quotes" + ], + "authorId": "UFjVKUUywWBZ", + "authorSlug": "william-burroughs", + "length": 83 + }, + { + "_id": "X6UDrdk4ZIk", + "content": "Pure, holy simplicity confounds all the wisdom of this world and the wisdom of the flesh.", + "author": "Francis of Assisi", + "tags": [ + "wisdom" + ], + "authorId": "axdVU-ILRg-V", + "authorSlug": "francis-of-assisi", + "length": 89 + }, + { + "_id": "rc2Yx_x_X0qD", + "content": "The less effort, the faster and more powerful you will be.", + "author": "Bruce Lee", + "tags": [ + "famous-quotes" + ], + "authorId": "raaFe2cXACnG", + "authorSlug": "bruce-lee", + "length": 58 + }, + { + "_id": "e1n5aMOunl1g", + "content": "If I know what love is, it is because of you.", + "author": "Hermann Hesse", + "tags": [ + "famous-quotes" + ], + "authorId": "plI0y2ZLokNn", + "authorSlug": "hermann-hesse", + "length": 45 + }, + { + "_id": "hXmMutk9Y8Nd", + "content": "Life is not a problem to be solved, but a reality to be experienced.", + "author": "Søren Kierkegaard", + "tags": [ + "famous-quotes" + ], + "authorId": "ZEGr5G7ktW1L", + "authorSlug": "soren-kierkegaard", + "length": 68 + }, + { + "_id": "RFbQKIDffV", + "content": "I decided that it was not wisdom that enabled poets to write their poetry, but a kind of instinct or inspiration, such as you find in seers and prophets who deliver all their sublime messages without knowing in the least what they mean.", + "author": "Isocrates", + "tags": [ + "wisdom" + ], + "authorId": "6emd99Cst9Cf", + "authorSlug": "isocrates", + "length": 236 + }, + { + "_id": "DNjQty5jeU", + "content": "Communications tools don’t get socially interesting until they get technologically boring.", + "author": "Clay Shirky", + "tags": [ + "technology" + ], + "authorId": "Y3mgXKqW-", + "authorSlug": "clay-shirky", + "length": 90 + }, + { + "_id": "2i4ILvPHXsgJ", + "content": "If you accept the expectations of others, especially negative ones, then you never will change the outcome.", + "author": "Michael Jordan", + "tags": [ + "famous-quotes" + ], + "authorId": "XU7cPmNoohKd", + "authorSlug": "michael-jordan", + "length": 107 + }, + { + "_id": "uqRZV8skVN", + "content": "The way you see people is the way you treat them, and the way you treat them is what they become.", + "author": "Johann Wolfgang von Goethe", + "tags": [ + "wisdom" + ], + "authorId": "aW1ZR-8LuS28", + "authorSlug": "johann-wolfgang-von-goethe", + "length": 97 + }, + { + "_id": "ZR3wECF-tFj", + "content": "He is able who thinks he is able.", + "author": "Buddha", + "tags": [ + "famous-quotes" + ], + "authorId": "sUNjshHENA05", + "authorSlug": "buddha", + "length": 33 + }, + { + "_id": "ZP4Osu902G-r", + "content": "The only real mistake is the one from which we learn nothing.", + "author": "John Powell", + "tags": [ + "famous-quotes" + ], + "authorId": "N5zjr1qxROEY", + "authorSlug": "john-powell", + "length": 61 + }, + { + "_id": "gZSiJPLyt_zX", + "content": "There is only one corner of the universe you can be certain of improving, and that's your own self.", + "author": "Aldous Huxley", + "tags": [ + "famous-quotes", + "inspirational" + ], + "authorId": "9B-Gz0CukKAX", + "authorSlug": "aldous-huxley", + "length": 99 + }, + { + "_id": "pt90_r-76Lj5", + "content": "All children are artists. The problem is how to remain an artist once he grows up.", + "author": "Pablo Picasso", + "tags": [ + "famous-quotes" + ], + "authorId": "atthH9QDwIJB", + "authorSlug": "pablo-picasso", + "length": 82 + }, + { + "_id": "7hfEG8Iv86", + "content": "Friendship is the marriage of the soul, and this marriage is liable to divorce.", + "author": "Voltaire", + "tags": [ + "friendship" + ], + "authorId": "ZyuVXKFVTZu8", + "authorSlug": "voltaire", + "length": 79 + }, + { + "_id": "L5sDM2UaWlBt", + "content": "The pain passes, but the beauty remains.", + "author": "Pierre-Auguste Renoir", + "tags": [ + "famous-quotes" + ], + "authorId": "wuP9CCCc0AtJ", + "authorSlug": "pierre-auguste-renoir", + "length": 40 + }, + { + "_id": "U8B6iFEz1V7", + "content": "An ant on the move does more than a dozing ox", + "author": "Laozi", + "tags": [ + "famous-quotes" + ], + "authorId": "qsaptKSHuLDU", + "authorSlug": "laozi", + "length": 45 + }, + { + "_id": "k8oFtw9mQpi", + "content": "Loss is nothing else but change,and change is Natures delight.", + "author": "Marcus Aurelius", + "tags": [ + "famous-quotes" + ], + "authorId": "zW_A5fM6XU-v", + "authorSlug": "marcus-aurelius", + "length": 62 + }, + { + "_id": "O91gdjzOjLa6", + "content": "Listen to what you know instead of what you fear.", + "author": "Richard Bach", + "tags": [ + "famous-quotes" + ], + "authorId": "t9lNqDH0TmYo", + "authorSlug": "richard-bach", + "length": 49 + }, + { + "_id": "KaIFTRaBv59T", + "content": "Always seek out the seed of triumph in every adversity.", + "author": "Og Mandino", + "tags": [ + "famous-quotes", + "wisdom" + ], + "authorId": "xcLBIo1fbkkh", + "authorSlug": "og-mandino", + "length": 55 + }, + { + "_id": "Wxf1mhZ7ipPU", + "content": "Men in general judge more from appearances than from reality. All men have eyes, but few have the gift of penetration.", + "author": "Niccolò Machiavelli", + "tags": [ + "famous-quotes" + ], + "authorId": "VKXFr-ptJb7Q", + "authorSlug": "niccolo-machiavelli", + "length": 118 + }, + { + "_id": "_WiuNkQC_E_B", + "content": "Thought is the blossom; language the bud; action the fruit behind it.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 69 + }, + { + "_id": "D-KuPZEq59LD", + "content": "The place to improve the world is first in one's own heart and head and hands.", + "author": "Robert M. Pirsig", + "tags": [ + "famous-quotes" + ], + "authorId": "kahQz7ulPX1A", + "authorSlug": "robert-m-pirsig", + "length": 78 + }, + { + "_id": "CPhGOJeapNYZ", + "content": "To be tested is good. The challenged life may be the best therapist.", + "author": "Gail Sheehy", + "tags": [ + "famous-quotes" + ], + "authorId": "XUX3C8oS06Ul", + "authorSlug": "gail-sheehy", + "length": 68 + }, + { + "_id": "bmKMocxtR7bJ", + "content": "Your sacred space is where you can find yourself again and again.", + "author": "Joseph Campbell", + "tags": [ + "famous-quotes", + "wisdom" + ], + "authorId": "XGIdt8L_MfeP", + "authorSlug": "joseph-campbell", + "length": 65 + }, + { + "_id": "P77hDIkrjYP", + "content": "Study the past, if you would divine the future.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 47 + }, + { + "_id": "uxtOnAdYE7Wn", + "content": "Four steps to achievement: Plan purposefully. Prepare prayerfully. Proceed positively. Pursue persistently.", + "author": "William Arthur Ward", + "tags": [ + "famous-quotes" + ], + "authorId": "BbtbIJLprBVl", + "authorSlug": "william-arthur-ward", + "length": 107 + }, + { + "_id": "5ewQ54oqW1HS", + "content": "It is not the possession of truth, but the success which attends the seeking after it, that enriches the seeker and brings happiness to him.", + "author": "Max Planck", + "tags": [ + "famous-quotes" + ], + "authorId": "ZK_-AtwrrSOs", + "authorSlug": "max-planck", + "length": 140 + }, + { + "_id": "_dfC0aL_AGD4", + "content": "Great ideas often receive violent opposition from mediocre minds.", + "author": "Albert Einstein", + "tags": [ + "famous-quotes", + "technology" + ], + "authorId": "L76FRuEeGIUJ", + "authorSlug": "albert-einstein", + "length": 65 + }, + { + "_id": "GJxkg5rxv0tw", + "content": "Man is not sum of what he has already, but rather the sum of what he does not yet have, of what he could have.", + "author": "Jean-Paul Sartre", + "tags": [ + "famous-quotes" + ], + "authorId": "JDgQh4oi5vVt", + "authorSlug": "jean-paul-sartre", + "length": 110 + }, + { + "_id": "lEjcF-a2-Z5w", + "content": "Sincerity is the way of Heaven. The attainment of sincerity is the way of men.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 78 + }, + { + "_id": "5V7Gw25dIjvc", + "content": "Happiness is not something ready made. It comes from your own actions.", + "author": "Dalai Lama", + "tags": [ + "famous-quotes" + ], + "authorId": "OPVjtVVBVW5h", + "authorSlug": "dalai-lama", + "length": 70 + }, + { + "_id": "HTn2Q6e3AYr", + "content": "If you wish to be a writer, write.", + "author": "Epictetus", + "tags": [ + "famous-quotes" + ], + "authorId": "HZHaUuiyIJPp", + "authorSlug": "epictetus", + "length": 34 + }, + { + "_id": "UnmE__TaKI", + "content": "In action a great heart is the chief qualification. In work, a great head.", + "author": "Arthur Schopenhauer", + "tags": [ + "wisdom" + ], + "authorId": "SZV21yHaj-Po", + "authorSlug": "arthur-schopenhauer", + "length": 74 + }, + { + "_id": "5mqeP6Q3hWIz", + "content": "I find hope in the darkest of days, and focus in the brightest. I do not judge the universe.", + "author": "Dalai Lama", + "tags": [ + "famous-quotes" + ], + "authorId": "OPVjtVVBVW5h", + "authorSlug": "dalai-lama", + "length": 92 + }, + { + "_id": "dnatcNZd_hIB", + "content": "The greatest danger for most of us is not that our aim is too high and we miss it, but that it is too low and we reach it.", + "author": "Michelangelo", + "tags": [ + "famous-quotes" + ], + "authorId": "pik1wvig1y8U", + "authorSlug": "michelangelo", + "length": 122 + }, + { + "_id": "Ls62KqLuousc", + "content": "We are all inclined to judge ourselves by our ideals; others, by their acts.", + "author": "Harold Nicolson", + "tags": [ + "famous-quotes" + ], + "authorId": "cfKFCzivTtqS", + "authorSlug": "harold-nicolson", + "length": 76 + }, + { + "_id": "_hJS3LX4Qz", + "content": "Technology has to be invented or adopted.", + "author": "Jared Diamond", + "tags": [ + "technology" + ], + "authorId": "jrYQ70dujQ", + "authorSlug": "jared-diamond", + "length": 41 + }, + { + "_id": "UyuJSYkjSwwX", + "content": "Kind words can be short and easy to speak, but their echoes are truly endless.", + "author": "Mother Teresa", + "tags": [ + "famous-quotes" + ], + "authorId": "y7OXxqCaXKVa", + "authorSlug": "mother-teresa", + "length": 78 + }, + { + "_id": "Zhr3mv7HgY4u", + "content": "Your vision will become clear only when you look into your heart. Who looks outside, dreams. Who looks inside, awakens.", + "author": "Carl Jung", + "tags": [ + "famous-quotes" + ], + "authorId": "-LYBJJujV7RL", + "authorSlug": "carl-jung", + "length": 119 + }, + { + "_id": "0dCkJZJYZa75", + "content": "When the solution is simple, God is answering.", + "author": "Albert Einstein", + "tags": [ + "famous-quotes", + "religion" + ], + "authorId": "L76FRuEeGIUJ", + "authorSlug": "albert-einstein", + "length": 46 + }, + { + "_id": "0zPVpv3bI", + "content": "You can't cross the sea merely by standing and staring at the water.", + "author": "Rabindranath Tagore", + "tags": [ + "inspirational" + ], + "authorId": "FYm0s5rHORUu", + "authorSlug": "rabindranath-tagore", + "length": 68 + }, + { + "_id": "aAHoOxRG8pTE", + "content": "An idea that is developed and put into action is more important than an idea that exists only as an idea.", + "author": "Buddha", + "tags": [ + "famous-quotes" + ], + "authorId": "sUNjshHENA05", + "authorSlug": "buddha", + "length": 105 + }, + { + "_id": "WSpdlKZYCP", + "content": "Technology… the knack of so arranging the world that we don’t have to experience it.", + "author": "Max Frisch", + "tags": [ + "technology" + ], + "authorId": "Q1jb5vE0Z", + "authorSlug": "max-frisch", + "length": 84 + }, + { + "_id": "C5_AURs6v6", + "content": "Friendship is the source of the greatest pleasures, and without friends even the most agreeable pursuits become tedious.", + "author": "Thomas Aquinas", + "tags": [ + "friendship" + ], + "authorId": "aqllap-WMqA7", + "authorSlug": "thomas-aquinas", + "length": 120 + }, + { + "_id": "UYpi0ue4EwbH", + "content": "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.", + "author": "Marie Curie", + "tags": [ + "famous-quotes" + ], + "authorId": "Ayk4hyEX7Qbu", + "authorSlug": "marie-curie", + "length": 123 + }, + { + "_id": "JqHe3XeUkv", + "content": "One's philosophy is not best expressed in words; it is expressed in the choices one makes... and the choices we make are ultimately our responsibility.", + "author": "Eleanor Roosevelt", + "tags": [ + "wisdom" + ], + "authorId": "1X7NWb1oyd21", + "authorSlug": "eleanor-roosevelt", + "length": 151 + }, + { + "_id": "clw722gWp4m", + "content": "The invariable mark of wisdom is to see the miraculous in the common.", + "author": "Ralph Waldo Emerson", + "tags": [ + "wisdom" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 69 + }, + { + "_id": "ptXvSKlkU4E7", + "content": "Many of life's failures are people who did not realize how close they were to success when they gave up.", + "author": "Thomas Edison", + "tags": [ + "famous-quotes" + ], + "authorId": "PC4gkJPlknC3", + "authorSlug": "thomas-edison", + "length": 104 + }, + { + "_id": "uUMvpp64j2oS", + "content": "To give ones self earnestly to the duties due to men, and, while respecting spiritual beings, to keep aloof from them, may be called wisdom.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 140 + }, + { + "_id": "Dq9hDqahfYjZ", + "content": "The smallest flower is a thought, a life answering to some feature of the Great Whole, of whom they have a persistent intuition.", + "author": "Honoré de Balzac", + "tags": [ + "famous-quotes" + ], + "authorId": "jcH4GH-fD_Lo", + "authorSlug": "honore-de-balzac", + "length": 128 + }, + { + "_id": "kTmtHqeUMESD", + "content": "In all things of nature there is something of the marvelous.", + "author": "Aristotle", + "tags": [ + "famous-quotes" + ], + "authorId": "Z8j-PYl90GLF", + "authorSlug": "aristotle", + "length": 60 + }, + { + "_id": "sTma0kWPt2", + "content": "Friendship, like credit, is highest when it is not used.", + "author": "Elbert Hubbard", + "tags": [ + "friendship" + ], + "authorId": "CBoxna3kOgDk", + "authorSlug": "elbert-hubbard", + "length": 56 + }, + { + "_id": "CF7uqSGvDt", + "content": "Know what's important and what isn't. Have the wisdom to know the right thing to do, the integrity to do it, the character to stand up to those who don't, and the courage to stop those who won't.", + "author": "Mark Goulston", + "tags": [ + "wisdom" + ], + "authorId": "0WD9wxpVJN", + "authorSlug": "mark-goulston", + "length": 195 + }, + { + "_id": "9hIehvX23pvr", + "content": "There is no charm equal to tenderness of heart.", + "author": "Jane Austen", + "tags": [ + "famous-quotes" + ], + "authorId": "43J5NV_BwtPN", + "authorSlug": "jane-austen", + "length": 47 + }, + { + "_id": "JyWzVBrhCC", + "content": "We don't receive wisdom; we must discover it for ourselves after a journey that no one can take for us or spare us.", + "author": "Marcel Proust", + "tags": [ + "wisdom" + ], + "authorId": "Fz5WQF7BjdJg", + "authorSlug": "marcel-proust", + "length": 115 + }, + { + "_id": "E9rnk2e0az", + "content": "It always seems impossible until it's done.", + "author": "Nelson Mandela", + "tags": [ + "inspirational" + ], + "authorId": "ubn8tDLlaqk6", + "authorSlug": "nelson-mandela", + "length": 43 + }, + { + "_id": "4iwVD9jYPBp", + "content": "Well done is better than well said.", + "author": "Benjamin Franklin", + "tags": [ + "famous-quotes" + ], + "authorId": "xkvcrqREjoOB", + "authorSlug": "benjamin-franklin", + "length": 35 + }, + { + "_id": "Wxg76F8ly83k", + "content": "Lose an hour in the morning, and you will spend all day looking for it.", + "author": "Richard Whately", + "tags": [ + "famous-quotes" + ], + "authorId": "woIOC2CwRwXE", + "authorSlug": "richard-whately", + "length": 71 + }, + { + "_id": "ZqHAX7IvZk", + "content": "If you want to go east, don't go west.", + "author": "Ramakrishna", + "tags": [ + "wisdom" + ], + "authorId": "ndMmFugJSl", + "authorSlug": "ramakrishna", + "length": 38 + }, + { + "_id": "vpHGlmeIu3Oz", + "content": "We never understand how little we need in this world until we know the loss of it.", + "author": "J. M. Barrie", + "tags": [ + "famous-quotes", + "wisdom" + ], + "authorId": "5PJN9vn8epVR", + "authorSlug": "j-m-barrie", + "length": 82 + }, + { + "_id": "vkR90rDh-ZSA", + "content": "Hope arouses, as nothing else can arouse, a passion for the possible.", + "author": "William Sloane Coffin", + "tags": [ + "famous-quotes" + ], + "authorId": "-yyCeRZpAZLI", + "authorSlug": "william-sloane-coffin", + "length": 69 + }, + { + "_id": "x8zoyRtfIPRg", + "content": "I will prepare and some day my chance will come.", + "author": "Abraham Lincoln", + "tags": [ + "famous-quotes", + "inspirational" + ], + "authorId": "8k75S1ntV9GW", + "authorSlug": "abraham-lincoln", + "length": 48 + }, + { + "_id": "UG8slERojHSm", + "content": "We make a living by what we get, but we make a life by what we give.", + "author": "Winston Churchill", + "tags": [ + "famous-quotes" + ], + "authorId": "FEM0nF4bj5r7", + "authorSlug": "winston-churchill", + "length": 68 + }, + { + "_id": "CPwqIPvFW_", + "content": "I define friendship as a bond that transcends all barriers. When you are ready to expect anything and everything from friends, good, bad or ugly... that's what I call true friendship.", + "author": "Harbhajan Singh", + "tags": [ + "friendship" + ], + "authorId": "BS1P-Cx9G", + "authorSlug": "harbhajan-singh", + "length": 183 + }, + { + "_id": "MJmapSmIK3", + "content": "The more sand that has escaped from the hourglass of our life, the clearer we should see through it.", + "author": "Jean-Paul Sartre", + "tags": [ + "wisdom" + ], + "authorId": "JDgQh4oi5vVt", + "authorSlug": "jean-paul-sartre", + "length": 100 + }, + { + "_id": "Z_9VClTWUcSv", + "content": "Trust only movement. Life happens at the level of events, not of words. Trust movement.", + "author": "Alfred Adler", + "tags": [ + "famous-quotes", + "life" + ], + "authorId": "tNaHUH10_lky", + "authorSlug": "alfred-adler", + "length": 87 + }, + { + "_id": "eoqYvztdD6Xo", + "content": "You cannot travel the path until you have become the path itself.", + "author": "Buddha", + "tags": [ + "famous-quotes" + ], + "authorId": "sUNjshHENA05", + "authorSlug": "buddha", + "length": 65 + }, + { + "_id": "u3yMrJpE9TSf", + "content": "Of course there is no formula for success except perhaps an unconditional acceptance of life and what it brings.", + "author": "Arthur Rubinstein", + "tags": [ + "famous-quotes" + ], + "authorId": "KKoxEah_YUax", + "authorSlug": "arthur-rubinstein", + "length": 112 + }, + { + "_id": "PCE3W7VuJfnu", + "content": "There is nothing so useless as doing efficiently that which should not be done at all.", + "author": "Peter Drucker", + "tags": [ + "famous-quotes" + ], + "authorId": "01aQwjpXclCh", + "authorSlug": "peter-drucker", + "length": 86 + }, + { + "_id": "PTVGpNzPj2ip", + "content": "Im not in this world to live up to your expectations and you're not in this world to live up to mine.", + "author": "Bruce Lee", + "tags": [ + "famous-quotes" + ], + "authorId": "raaFe2cXACnG", + "authorSlug": "bruce-lee", + "length": 101 + }, + { + "_id": "hwA4bNHgJPCa", + "content": "Impossibilities are merely things which we have not yet learned.", + "author": "Charles W. Chesnutt", + "tags": [ + "famous-quotes" + ], + "authorId": "ATQjES-_ebWe", + "authorSlug": "charles-w-chesnutt", + "length": 64 + }, + { + "_id": "GnTIVgh6A0KW", + "content": "Work while you have the light. You are responsible for the talent that has been entrusted to you.", + "author": "Henri-Frédéric Amiel", + "tags": [ + "famous-quotes" + ], + "authorId": "AwZcCJD8ICBi", + "authorSlug": "henri-frederic-amiel", + "length": 97 + }, + { + "_id": "I6Dxu4p7VBt", + "content": "To fly, we have to have resistance.", + "author": "Maya Lin", + "tags": [ + "famous-quotes" + ], + "authorId": "lySRln7fv5Tr", + "authorSlug": "maya-lin", + "length": 35 + }, + { + "_id": "WJ5c36Guag1", + "content": "I will give you a definition of a proud man: he is a man who has neither vanity nor wisdom one filled with hatreds cannot be vain, neither can he be wise.", + "author": "John Keats", + "tags": [ + "wisdom" + ], + "authorId": "mXQPMe-Kg_wJ", + "authorSlug": "john-keats", + "length": 154 + }, + { + "_id": "GwbIPJqtzp", + "content": "Wisdom has never made a bigot, but learning has.", + "author": "Josh Billings", + "tags": [ + "wisdom" + ], + "authorId": "OIytiShDXY", + "authorSlug": "josh-billings", + "length": 48 + }, + { + "_id": "TLfamqFncI8p", + "content": "There are no failures. Just experiences and your reactions to them.", + "author": "Tom Krause", + "tags": [ + "famous-quotes" + ], + "authorId": "qhAZivyJJPzu", + "authorSlug": "tom-krause", + "length": 67 + }, + { + "_id": "1YubdPwZ3e", + "content": "It is good even for old men to learn wisdom.", + "author": "Aeschylus", + "tags": [ + "wisdom" + ], + "authorId": "ossJxB6-1", + "authorSlug": "aeschylus", + "length": 44 + }, + { + "_id": "fjzdxv7x2mJd", + "content": "For every failure, there's an alternative course of action. You just have to find it. When you come to a roadblock, take a detour.", + "author": "Mary Kay Ash", + "tags": [ + "famous-quotes" + ], + "authorId": "I0bbus5BtlYr", + "authorSlug": "mary-kay-ash", + "length": 130 + }, + { + "_id": "Z_czr8xado", + "content": "Logic is the beginning of wisdom, not the end.", + "author": "Leonard Nimoy", + "tags": [ + "wisdom" + ], + "authorId": "WTcob-0b_G", + "authorSlug": "leonard-nimoy", + "length": 46 + }, + { + "_id": "0PnL1GPc2muX", + "content": "The greatest good you can do for another is not just share your riches, but reveal to them their own.", + "author": "Benjamin Disraeli", + "tags": [ + "famous-quotes" + ], + "authorId": "xAJjt7yV9kyd", + "authorSlug": "benjamin-disraeli", + "length": 101 + }, + { + "_id": "u5VbhYCVo5Jz", + "content": "I cannot give you the formula for success, but I can give you the formula for failure: which is: Try to please everybody.", + "author": "Herbert Bayard Swope", + "tags": [ + "famous-quotes" + ], + "authorId": "n4zQiBQc-Ifw", + "authorSlug": "herbert-bayard-swope", + "length": 121 + }, + { + "_id": "BsZbjg9hrAVI", + "content": "If you seek truth you will not seek victory by dishonourable means, and if you find truth you will become invincible.", + "author": "Epictetus", + "tags": [ + "famous-quotes" + ], + "authorId": "HZHaUuiyIJPp", + "authorSlug": "epictetus", + "length": 117 + }, + { + "_id": "c6xalG3uXL4n", + "content": "Imagination is the living power and prime agent of all human perception.", + "author": "Samuel Taylor Coleridge", + "tags": [ + "famous-quotes" + ], + "authorId": "LAOTQVvhPNFp", + "authorSlug": "samuel-taylor-coleridge", + "length": 72 + }, + { + "_id": "Q0q53LrtbHm0", + "content": "Those that know, do. Those that understand, teach.", + "author": "Aristotle", + "tags": [ + "famous-quotes" + ], + "authorId": "Z8j-PYl90GLF", + "authorSlug": "aristotle", + "length": 50 + }, + { + "_id": "ComoDwgAEY2", + "content": "Good timber does not grow with ease; the stronger the wind, the stronger the trees.", + "author": "J. Willard Marriott", + "tags": [ + "famous-quotes" + ], + "authorId": "v7osO_Koh9Ik", + "authorSlug": "j-willard-marriott", + "length": 83 + }, + { + "_id": "Dqqwo96Tximg", + "content": "A man may fulfil the object of his existence by asking a question he cannot answer, and attempting a task he cannot achieve.", + "author": "Oliver Wendell Holmes Jr.", + "tags": [ + "famous-quotes" + ], + "authorId": "qa_R4Oc97JXq", + "authorSlug": "oliver-wendell-holmes-jr", + "length": 124 + }, + { + "_id": "V7HF0nCuOodn", + "content": "Gratitude makes sense of our past, brings peace for today, and creates a vision for tomorrow.", + "author": "Melody Beattie", + "tags": [ + "famous-quotes" + ], + "authorId": "_rCUwICbu1j2", + "authorSlug": "melody-beattie", + "length": 93 + }, + { + "_id": "ISX_zfx8abzc", + "content": "There is no duty we so underrate as the duty of being happy. By being happy we sow anonymous benefits upon the world.", + "author": "Robert Louis Stevenson", + "tags": [ + "famous-quotes" + ], + "authorId": "qKwGWW8zDYtf", + "authorSlug": "robert-louis-stevenson", + "length": 117 + }, + { + "_id": "6Kl3UT6ULk", + "content": "Wisdom, compassion, and courage are the three universally recognized moral qualities of men.", + "author": "Confucius", + "tags": [ + "wisdom" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 92 + }, + { + "_id": "0FJtHaraIRKe", + "content": "We shall never know all the good that a simple smile can do.", + "author": "Mother Teresa", + "tags": [ + "famous-quotes" + ], + "authorId": "y7OXxqCaXKVa", + "authorSlug": "mother-teresa", + "length": 60 + }, + { + "_id": "h3vqfIeuhcho", + "content": "The best thing in every noble dream is the dreamer...", + "author": "Moncure D. Conway", + "tags": [ + "famous-quotes" + ], + "authorId": "ZpPm6ZTW9GLu", + "authorSlug": "moncure-d-conway", + "length": 53 + }, + { + "_id": "hUUF65Y82g7", + "content": "Life shrinks or expands in proportion to one's courage.", + "author": "Anaïs Nin", + "tags": [ + "famous-quotes" + ], + "authorId": "MMvH-cw49Y9t", + "authorSlug": "anais-nin", + "length": 55 + }, + { + "_id": "y1RIkUSWFpl", + "content": "The greatest remedy for anger is delay.", + "author": "Seneca the Younger", + "tags": [ + "famous-quotes" + ], + "authorId": "TyeFCuRgEQjD", + "authorSlug": "seneca-the-younger", + "length": 39 + }, + { + "_id": "ehBmRJ9WwXKK", + "content": "A garden is always a series of losses set against a few triumphs, like life itself.", + "author": "May Sarton", + "tags": [ + "famous-quotes" + ], + "authorId": "aLFrwqpJQ9zs", + "authorSlug": "may-sarton", + "length": 83 + }, + { + "_id": "t7STDz8m6QIp", + "content": "The wisest men follow their own direction.", + "author": "Euripides", + "tags": [ + "famous-quotes" + ], + "authorId": "yVMYpy-GWWFq", + "authorSlug": "euripides", + "length": 42 + }, + { + "_id": "lvcJukDLhxz3", + "content": "The difference between what we do and what we are capable of doing would suffice to solve most of the worlds problems.", + "author": "Mahatma Gandhi", + "tags": [ + "famous-quotes" + ], + "authorId": "4J6_dx73YbT5", + "authorSlug": "mahatma-gandhi", + "length": 118 + }, + { + "_id": "COOYD278-JAr", + "content": "The superior man is modest in his speech, but exceeds in his actions.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 69 + }, + { + "_id": "XQKtTxtLnshu", + "content": "Change will not come if we wait for some other person or some other time. We are the ones we've been waiting for. We are the change that we seek.", + "author": "Barack Obama", + "tags": [ + "famous-quotes" + ], + "authorId": "Xt2CsBHup4NB", + "authorSlug": "barack-obama", + "length": 145 + }, + { + "_id": "IxrwsheO2w6", + "content": "Wherever you go, go with all your heart.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 40 + }, + { + "_id": "g4URs5hS3Taq", + "content": "A life spent making mistakes is not only more honourable, but more useful than a life spent doing nothing.", + "author": "George Bernard Shaw", + "tags": [ + "famous-quotes" + ], + "authorId": "zKfoVjq84t9O", + "authorSlug": "george-bernard-shaw", + "length": 106 + }, + { + "_id": "IROEi_B-5kj", + "content": "If you set out to be liked, you would be prepared to compromise on anything at any time, and you would achieve nothing.", + "author": "Margaret Thatcher", + "tags": [ + "wisdom" + ], + "authorId": "WVe0z8ZowG", + "authorSlug": "margaret-thatcher", + "length": 119 + }, + { + "_id": "t3KpUGU3apks", + "content": "Be like the flower, turn your face to the sun.", + "author": "Kahlil Gibran", + "tags": [ + "famous-quotes" + ], + "authorId": "h05GYnKzckM3", + "authorSlug": "kahlil-gibran", + "length": 46 + }, + { + "_id": "N6l6bDDcBP", + "content": "Friendship multiplies the good of life and divides the evil.", + "author": "Baltasar Gracián", + "tags": [ + "friendship" + ], + "authorId": "NOw0qSU2RzF5", + "authorSlug": "baltasar-gracian", + "length": 60 + }, + { + "_id": "SQxIxT9EoucK", + "content": "Kindness is the golden chain by which society is bound together.", + "author": "Johann Wolfgang von Goethe", + "tags": [ + "famous-quotes" + ], + "authorId": "aW1ZR-8LuS28", + "authorSlug": "johann-wolfgang-von-goethe", + "length": 64 + }, + { + "_id": "ay74-DkPYiOq", + "content": "Sometimes your joy is the source of your smile, but sometimes your smile can be the source of your joy.", + "author": "Thích Nhất Hạnh", + "tags": [ + "famous-quotes" + ], + "authorId": "N0pHADD097gY", + "authorSlug": "thich-nhất-hạnh", + "length": 103 + }, + { + "_id": "amF1FDsLD6", + "content": "A friend is someone who gives you total freedom to be yourself.", + "author": "Jim Morrison", + "tags": [ + "friendship" + ], + "authorId": "Rt3UK3h72", + "authorSlug": "jim-morrison", + "length": 63 + }, + { + "_id": "eWtR9nXnZ", + "content": "Do the difficult things while they are easy and do the great things while they are small. A journey of a thousand miles must begin with a single step.", + "author": "Laozi", + "tags": [ + "inspirational" + ], + "authorId": "qsaptKSHuLDU", + "authorSlug": "laozi", + "length": 150 + }, + { + "_id": "VHFFYD5KcXN6", + "content": "I have done my best: that is about all the philosophy of living one needs.", + "author": "Lin Yutang", + "tags": [ + "famous-quotes" + ], + "authorId": "99cr5SHT23eb", + "authorSlug": "lin-yutang", + "length": 74 + }, + { + "_id": "oQnbzQ_W0gJS", + "content": "Never mistake motion for action.", + "author": "Ernest Hemingway", + "tags": [ + "famous-quotes" + ], + "authorId": "QEUcQP7NFqk7", + "authorSlug": "ernest-hemingway", + "length": 32 + }, + { + "_id": "8IyWC1hl--Je", + "content": "You, yourself, as much as anybody in the entire universe, deserve your love and affection.", + "author": "Buddha", + "tags": [ + "famous-quotes" + ], + "authorId": "sUNjshHENA05", + "authorSlug": "buddha", + "length": 90 + }, + { + "_id": "8TXdurkixxgm", + "content": "Ask yourself the secret of your success. Listen to your answer, and practice it.", + "author": "Richard Bach", + "tags": [ + "famous-quotes" + ], + "authorId": "t9lNqDH0TmYo", + "authorSlug": "richard-bach", + "length": 80 + }, + { + "_id": "-ZfnGHueyp", + "content": "Give me a lever long enough and a fulcrum on which to place it, and I shall move the world.", + "author": "Archimedes", + "tags": [ + "wisdom" + ], + "authorId": "vKwA_aAsd", + "authorSlug": "archimedes", + "length": 91 + }, + { + "_id": "NN3kZRTt4V", + "content": "Holy wisdom confounds Satan and all his wickednesses.", + "author": "Francis of Assisi", + "tags": [ + "wisdom" + ], + "authorId": "axdVU-ILRg-V", + "authorSlug": "francis-of-assisi", + "length": 53 + }, + { + "_id": "0I3MzxBI2Cyo", + "content": "Life is a succession of lessons, which must be lived to be understood.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 70 + }, + { + "_id": "x4gbVTU0f3TW", + "content": "The only limit to your impact is your imagination and commitment.", + "author": "Tony Robbins", + "tags": [ + "famous-quotes" + ], + "authorId": "IkUGwHTcaXs9", + "authorSlug": "tony-robbins", + "length": 65 + }, + { + "_id": "R80GBolDfAev", + "content": "Life is like a sewer. What you get out of it depends on what you put into it.", + "author": "Tom Lehrer", + "tags": [ + "famous-quotes" + ], + "authorId": "Gfzo6r8aTiV0", + "authorSlug": "tom-lehrer", + "length": 77 + }, + { + "_id": "D_S3tmLBb8", + "content": "A man must be big enough to admit his mistakes, smart enough to profit from them, and strong enough to correct them.", + "author": "John C. Maxwell", + "tags": [ + "wisdom" + ], + "authorId": "kq5XYblNhYOH", + "authorSlug": "john-c-maxwell", + "length": 116 + }, + { + "_id": "p8BRVIq75p-D", + "content": "If you have made mistakes, there is always another chance for you. You may have a fresh start any moment you choose.", + "author": "Mary Pickford", + "tags": [ + "famous-quotes" + ], + "authorId": "9bUEqH8C5ewT", + "authorSlug": "mary-pickford", + "length": 116 + }, + { + "_id": "ahrACwvb84Z4", + "content": "I want you to be everything that's you, deep at the center of your being.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 73 + }, + { + "_id": "-DUavsjRcctX", + "content": "Can you imagine what I would do if I could do all I can?", + "author": "Sun Tzu", + "tags": [ + "famous-quotes" + ], + "authorId": "G-QcoRJkxKHQ", + "authorSlug": "sun-tzu", + "length": 56 + }, + { + "_id": "MFFCMyuycWf", + "content": "May our hearts garden of awakening bloom with hundreds of flowers.", + "author": "Thích Nhất Hạnh", + "tags": [ + "famous-quotes" + ], + "authorId": "N0pHADD097gY", + "authorSlug": "thich-nhất-hạnh", + "length": 66 + }, + { + "_id": "u80cGRXHeCeH", + "content": "When you see a good person, think of becoming like him. When you see someone not so good, reflect on your own weak points.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 122 + }, + { + "_id": "qgRPI2mMJRZv", + "content": "A man who doesn't trust himself can never really trust anyone else.", + "author": "Jean François Paul de Gondi", + "tags": [ + "famous-quotes" + ], + "authorId": "Ch_fdSLdPZCo", + "authorSlug": "jean-francois-paul-de-gondi", + "length": 67 + }, + { + "_id": "H_FnIEJXHrGU", + "content": "When you dance, your purpose is not to get to a certain place on the floor. It's to enjoy each step along the way.", + "author": "Wayne Dyer", + "tags": [ + "famous-quotes" + ], + "authorId": "CLxflG5QMMjg", + "authorSlug": "wayne-dyer", + "length": 114 + }, + { + "_id": "AKE0_H6LR05G", + "content": "Our lives are a sum total of the choices we have made.", + "author": "Wayne Dyer", + "tags": [ + "famous-quotes" + ], + "authorId": "CLxflG5QMMjg", + "authorSlug": "wayne-dyer", + "length": 54 + }, + { + "_id": "eJ2Odi1UbNvj", + "content": "It is on our failures that we base a new and different and better success.", + "author": "Havelock Ellis", + "tags": [ + "famous-quotes" + ], + "authorId": "sZYcfd1P_aHz", + "authorSlug": "havelock-ellis", + "length": 74 + }, + { + "_id": "gO2rEcTrwLo7", + "content": "When fate hands us a lemon, lets try to make lemonade.", + "author": "Dale Carnegie", + "tags": [ + "famous-quotes" + ], + "authorId": "D1RNG5b9TsXN", + "authorSlug": "dale-carnegie", + "length": 54 + }, + { + "_id": "FO4v4ZdByU", + "content": "A man cannot be said to succeed in this life who does not satisfy one friend.", + "author": "Henry David Thoreau", + "tags": [ + "friendship" + ], + "authorId": "NrthgQlym1Ji", + "authorSlug": "henry-david-thoreau", + "length": 77 + }, + { + "_id": "3Jk60HlbZFu9", + "content": "Every great dream begins with a dreamer. Always remember, you have within you the strength, the patience, and the passion to reach for the stars to change the world.", + "author": "Harriet Tubman", + "tags": [ + "famous-quotes" + ], + "authorId": "_z5JX-jIyYsz", + "authorSlug": "harriet-tubman", + "length": 165 + }, + { + "_id": "0lnHVeiNr0un", + "content": "They must often change, who would be constant in happiness or wisdom.", + "author": "Confucius", + "tags": [ + "famous-quotes", + "wisdom" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 69 + }, + { + "_id": "Ov1F2nueFuMN", + "content": "Silence is a source of great strength.", + "author": "Laozi", + "tags": [ + "famous-quotes" + ], + "authorId": "qsaptKSHuLDU", + "authorSlug": "laozi", + "length": 38 + }, + { + "_id": "Aya0eLpghjxG", + "content": "The purpose of learning is growth, and our minds, unlike our bodies, can continue growing as we continue to live.", + "author": "Mortimer J. Adler", + "tags": [ + "famous-quotes" + ], + "authorId": "tjrclR27CkGm", + "authorSlug": "mortimer-j-adler", + "length": 113 + }, + { + "_id": "Qkl55U0twCr", + "content": "Don't cry because it's over. Smile because it happened.", + "author": "Dr. Seuss", + "tags": [ + "famous-quotes" + ], + "authorId": "oHmf28pJEUHo", + "authorSlug": "dr-seuss", + "length": 55 + }, + { + "_id": "p3WMuYECz33S", + "content": "The meaning I picked, the one that changed my life: Overcome fear, behold wonder.", + "author": "Richard Bach", + "tags": [ + "famous-quotes" + ], + "authorId": "t9lNqDH0TmYo", + "authorSlug": "richard-bach", + "length": 81 + }, + { + "_id": "yzPY72AXGkD", + "content": "The cause is hidden. The effect is visible to all.", + "author": "Ovid", + "tags": [ + "famous-quotes" + ], + "authorId": "f9utPohz0fgH", + "authorSlug": "ovid", + "length": 50 + }, + { + "_id": "fAyIjkZePx", + "content": "He who learns must suffer. And even in our sleep pain that cannot forget falls drop by drop upon the heart, and in our own despair, against our will, comes wisdom to us by the awful grace of God.", + "author": "Aeschylus", + "tags": [ + "wisdom" + ], + "authorId": "ossJxB6-1", + "authorSlug": "aeschylus", + "length": 195 + }, + { + "_id": "PnQ8g2gz_sY2", + "content": "I never worry about action, but only inaction.", + "author": "Winston Churchill", + "tags": [ + "famous-quotes" + ], + "authorId": "FEM0nF4bj5r7", + "authorSlug": "winston-churchill", + "length": 46 + }, + { + "_id": "SBqsC7DOKoC0", + "content": "At the center of your being you have the answer; you know who you are and you know what you want.", + "author": "Laozi", + "tags": [ + "famous-quotes" + ], + "authorId": "qsaptKSHuLDU", + "authorSlug": "laozi", + "length": 97 + }, + { + "_id": "ykXP-CFk_G", + "content": "If you're trying to achieve, there will be roadblocks. I've had them; everybody has had them. But obstacles don't have to stop you. If you run into a wall, don't turn around and give up. Figure out how to climb it, go through it, or work around it.", + "author": "Michael Jordan", + "tags": [ + "wisdom", + "inspirational" + ], + "authorId": "XU7cPmNoohKd", + "authorSlug": "michael-jordan", + "length": 248 + }, + { + "_id": "5lsIG8ZCgvy4", + "content": "You will not be punished for your anger, you will be punished by your anger.", + "author": "Buddha", + "tags": [ + "famous-quotes" + ], + "authorId": "sUNjshHENA05", + "authorSlug": "buddha", + "length": 76 + }, + { + "_id": "NcBJY-YJ58W", + "content": "Problems are only opportunities with thorns on them.", + "author": "Hugh Miller", + "tags": [ + "famous-quotes" + ], + "authorId": "ZYuzRDdhCJIh", + "authorSlug": "hugh-miller", + "length": 52 + }, + { + "_id": "oyagVQRGL7", + "content": "Forgiveness is that subtle thread that binds both love and friendship. Without forgiveness, you may not even have a child one day.", + "author": "George Foreman", + "tags": [ + "friendship" + ], + "authorId": "3RxG2j5eRN", + "authorSlug": "george-foreman", + "length": 130 + }, + { + "_id": "NQwosr41uhx0", + "content": "We cannot do everything at once, but we can do something at once.", + "author": "Calvin Coolidge", + "tags": [ + "famous-quotes" + ], + "authorId": "bUWx0bMUCf8X", + "authorSlug": "calvin-coolidge", + "length": 65 + }, + { + "_id": "BLQOsYJz2jn1", + "content": "Consider that not only do negative thoughts and emotions destroy our experience of peace, they also undermine our health.", + "author": "Dalai Lama", + "tags": [ + "famous-quotes" + ], + "authorId": "OPVjtVVBVW5h", + "authorSlug": "dalai-lama", + "length": 121 + }, + { + "_id": "OawbCWOFWi", + "content": "The doorstep to the temple of wisdom is a knowledge of our own ignorance.", + "author": "Benjamin Franklin", + "tags": [ + "wisdom" + ], + "authorId": "xkvcrqREjoOB", + "authorSlug": "benjamin-franklin", + "length": 73 + }, + { + "_id": "eulsh4ijgp", + "content": "He is no fool who gives what he cannot keep to gain what he cannot lose.", + "author": "Jim Elliot", + "tags": [ + "wisdom" + ], + "authorId": "wlnB5ark0s", + "authorSlug": "jim-elliot", + "length": 72 + }, + { + "_id": "I8UvAqPYmS", + "content": "Between saying and doing, many a pair of shoes is worn out.", + "author": "Iris Murdoch", + "tags": [ + "wisdom" + ], + "authorId": "v2Jk1rHcsGne", + "authorSlug": "iris-murdoch", + "length": 59 + }, + { + "_id": "AJB3CSbvVFm", + "content": "If the shoe doesn't fit, must we change the foot?", + "author": "Gloria Steinem", + "tags": [ + "famous-quotes" + ], + "authorId": "6T6dO1lyfHYK", + "authorSlug": "gloria-steinem", + "length": 49 + }, + { + "_id": "yOGaxdDvToGD", + "content": "When you come to the end of your rope, tie a knot and hang on.", + "author": "Franklin D. Roosevelt", + "tags": [ + "famous-quotes" + ], + "authorId": "ejqEsEP8JKVz", + "authorSlug": "franklin-d-roosevelt", + "length": 62 + }, + { + "_id": "1RmEkIqT9Cyn", + "content": "Nothing is at last sacred but the integrity of your own mind.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 61 + }, + { + "_id": "_mOXeW2AnSF", + "content": "One today is worth two tomorrows.", + "author": "Benjamin Franklin", + "tags": [ + "famous-quotes" + ], + "authorId": "xkvcrqREjoOB", + "authorSlug": "benjamin-franklin", + "length": 33 + }, + { + "_id": "GhOSPuEiMn", + "content": "All of our technology is completely unnecessary to a happy life.", + "author": "Tom Hodgkinson", + "tags": [ + "technology" + ], + "authorId": "mkjqOol8P-", + "authorSlug": "tom-hodgkinson", + "length": 64 + }, + { + "_id": "-wz9LjinT4y9", + "content": "It is fatal to enter any war without the will to win it.", + "author": "Douglas MacArthur", + "tags": [ + "famous-quotes" + ], + "authorId": "xquqK-EhBty5", + "authorSlug": "douglas-mac-arthur", + "length": 56 + }, + { + "_id": "y7YpPYyHzK6", + "content": "Absence makes the heart grow fonder.", + "author": "Thomas Haynes Bayly", + "tags": [ + "famous-quotes" + ], + "authorId": "z0LsGNVaG28E", + "authorSlug": "thomas-haynes-bayly", + "length": 36 + }, + { + "_id": "XlBqWMF7hx5z", + "content": "When you judge another, you do not define them, you define yourself.", + "author": "Wayne Dyer", + "tags": [ + "famous-quotes" + ], + "authorId": "CLxflG5QMMjg", + "authorSlug": "wayne-dyer", + "length": 68 + }, + { + "_id": "3qJt6fZmCanr", + "content": "Setting an example is not the main means of influencing another, it is the only means.", + "author": "Albert Einstein", + "tags": [ + "famous-quotes" + ], + "authorId": "L76FRuEeGIUJ", + "authorSlug": "albert-einstein", + "length": 86 + }, + { + "_id": "gwQJOur7lHXd", + "content": "Always be mindful of the kindness and not the faults of others.", + "author": "Buddha", + "tags": [ + "famous-quotes" + ], + "authorId": "sUNjshHENA05", + "authorSlug": "buddha", + "length": 63 + }, + { + "_id": "HuuK4BGIf2", + "content": "Never reach out your hand unless you're willing to extend an arm.", + "author": "Pope Paul VI", + "tags": [ + "wisdom" + ], + "authorId": "lZLSkbMoC0", + "authorSlug": "pope-paul-vi", + "length": 65 + }, + { + "_id": "UXR4urX1Deim", + "content": "It's important to know that words don't move mountains. Work, exacting work moves mountains.", + "author": "Danilo Dolci", + "tags": [ + "famous-quotes" + ], + "authorId": "H9V0Xl8JL5Ui", + "authorSlug": "danilo-dolci", + "length": 92 + }, + { + "_id": "lO_ELfmBRTMq", + "content": "You must do the things you think you cannot do.", + "author": "Eleanor Roosevelt", + "tags": [ + "famous-quotes" + ], + "authorId": "1X7NWb1oyd21", + "authorSlug": "eleanor-roosevelt", + "length": 47 + }, + { + "_id": "Yk5zlxPAS_M7", + "content": "I hear and I forget. I see and I remember. I do and I understand.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 65 + }, + { + "_id": "VPGzjvTJI7Uj", + "content": "All fixed set patterns are incapable of adaptability or pliability. The truth is outside of all fixed patterns.", + "author": "Bruce Lee", + "tags": [ + "famous-quotes" + ], + "authorId": "raaFe2cXACnG", + "authorSlug": "bruce-lee", + "length": 111 + }, + { + "_id": "WD1Icqr-7J", + "content": "True happiness arises, in the first place, from the enjoyment of one's self, and in the next, from the friendship and conversation of a few select companions.", + "author": "Joseph Addison", + "tags": [ + "friendship" + ], + "authorId": "Ra04vOONY8", + "authorSlug": "joseph-addison", + "length": 158 + }, + { + "_id": "4AZF5nEIPN9", + "content": "To succeed, we must first believe that we can.", + "author": "Michael Korda", + "tags": [ + "famous-quotes" + ], + "authorId": "YXZuWxcWpZDE", + "authorSlug": "michael-korda", + "length": 46 + }, + { + "_id": "t7L2YkK_2QWr", + "content": "As you think, so shall you become.", + "author": "Bruce Lee", + "tags": [ + "famous-quotes" + ], + "authorId": "raaFe2cXACnG", + "authorSlug": "bruce-lee", + "length": 34 + }, + { + "_id": "fXCc-Adzx2i5", + "content": "The only real failure in life is not to be true to the best one knows.", + "author": "Buddha", + "tags": [ + "famous-quotes" + ], + "authorId": "sUNjshHENA05", + "authorSlug": "buddha", + "length": 70 + }, + { + "_id": "2LmdIfvSmBlD", + "content": "Before you put on a frown, make absolutely sure there are no smiles available.", + "author": "James M. Beggs", + "tags": [ + "famous-quotes" + ], + "authorId": "gyl8VUOxfm2W", + "authorSlug": "james-m-beggs", + "length": 78 + }, + { + "_id": "JBJV1OZ3ARcw", + "content": "I have no special talent. I am only passionately curious.", + "author": "Albert Einstein", + "tags": [ + "famous-quotes" + ], + "authorId": "L76FRuEeGIUJ", + "authorSlug": "albert-einstein", + "length": 57 + }, + { + "_id": "f1aZRYvKb7Ga", + "content": "You have to do your own growing no matter how tall your grandfather was.", + "author": "Abraham Lincoln", + "tags": [ + "famous-quotes", + "life", + "wisdom" + ], + "authorId": "8k75S1ntV9GW", + "authorSlug": "abraham-lincoln", + "length": 72 + }, + { + "_id": "Y_UmXWJD0al", + "content": "Life is movement-we breathe, we eat, we walk, we move!", + "author": "John Pierrakos", + "tags": [ + "famous-quotes" + ], + "authorId": "Sk1xgdhktB-8", + "authorSlug": "john-pierrakos", + "length": 54 + }, + { + "_id": "y1yjB7RbU_Aq", + "content": "Small opportunities are often the beginning of great enterprises.", + "author": "Demosthenes", + "tags": [ + "famous-quotes" + ], + "authorId": "j63fSK3zuMaj", + "authorSlug": "demosthenes", + "length": 65 + }, + { + "_id": "CrSk004mchGX", + "content": "What you do not want done to yourself, do not do to others.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 59 + }, + { + "_id": "IPv8r6n1dC", + "content": "The smallest deed is better than the greatest intention.", + "author": "John Burroughs", + "tags": [ + "wisdom" + ], + "authorId": "7mJtbQOga9", + "authorSlug": "john-burroughs", + "length": 56 + }, + { + "_id": "TdIyDe0XX542", + "content": "Learning without reflection is a waste, reflection without learning is dangerous.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 81 + }, + { + "_id": "kYh28vSUa2CE", + "content": "Successful people ask better questions, and as a result, they get better answers.", + "author": "Tony Robbins", + "tags": [ + "famous-quotes" + ], + "authorId": "IkUGwHTcaXs9", + "authorSlug": "tony-robbins", + "length": 81 + }, + { + "_id": "1crYPFXZKUuv", + "content": "Blessed is the man who expects nothing, for he shall never be disappointed.", + "author": "Alexander Pope", + "tags": [ + "famous-quotes" + ], + "authorId": "_gz-cfmqA1mr", + "authorSlug": "alexander-pope", + "length": 75 + }, + { + "_id": "4XsKZeLAUwZ6", + "content": "Be not afraid of greatness: some are born great, some achieve greatness, and some have greatness thrust upon them.", + "author": "William Shakespeare", + "tags": [ + "famous-quotes" + ], + "authorId": "5F2Uwpllj", + "authorSlug": "william-shakespeare", + "length": 114 + }, + { + "_id": "XxIfXFcublTz", + "content": "Be faithful in small things because it is in them that your strength lies.", + "author": "Mother Teresa", + "tags": [ + "famous-quotes" + ], + "authorId": "y7OXxqCaXKVa", + "authorSlug": "mother-teresa", + "length": 74 + }, + { + "_id": "c2crwHSzalPu", + "content": "Difficulties are meant to rouse, not discourage. The human spirit is to grow strong by conflict.", + "author": "William Ellery Channing", + "tags": [ + "famous-quotes", + "inspirational", + "power-quotes" + ], + "authorId": "gli4tf73TPql", + "authorSlug": "william-ellery-channing", + "length": 96 + }, + { + "_id": "82Ucdsd1amiC", + "content": "Anybody can make history. Only a great man can write it.", + "author": "Oscar Wilde", + "tags": [ + "famous-quotes" + ], + "authorId": "yw5O7wULaKfx", + "authorSlug": "oscar-wilde", + "length": 56 + }, + { + "_id": "iCcV8TjAAZ71", + "content": "Doing what you love is the cornerstone of having abundance in your life.", + "author": "Wayne Dyer", + "tags": [ + "famous-quotes" + ], + "authorId": "CLxflG5QMMjg", + "authorSlug": "wayne-dyer", + "length": 72 + }, + { + "_id": "hSxHK-iwap5", + "content": "No alibi will save you from accepting the responsibility.", + "author": "Napoleon Hill", + "tags": [ + "famous-quotes" + ], + "authorId": "N4h708MyElyG", + "authorSlug": "napoleon-hill", + "length": 57 + }, + { + "_id": "a7lEejDkHdFL", + "content": "Everything you are against weakens you. Everything you are for empowers you.", + "author": "Wayne Dyer", + "tags": [ + "famous-quotes" + ], + "authorId": "CLxflG5QMMjg", + "authorSlug": "wayne-dyer", + "length": 76 + }, + { + "_id": "zDV7RR6Y-wvZ", + "content": "In a controversy the instant we feel anger we have already ceased striving for the truth, and have begun striving for ourselves.", + "author": "Buddha", + "tags": [ + "famous-quotes" + ], + "authorId": "sUNjshHENA05", + "authorSlug": "buddha", + "length": 128 + }, + { + "_id": "mhBblBxFy-nH", + "content": "The world is round and the place which may seem like the end may also be the beginning.", + "author": "Ivy Baker Priest", + "tags": [ + "famous-quotes" + ], + "authorId": "CJxFJUe5dF3J", + "authorSlug": "ivy-baker-priest", + "length": 87 + }, + { + "_id": "SPqg3-WqniZ", + "content": "I'd rather regret the things I've done than regret the things I haven't done.", + "author": "Lucille Ball", + "tags": [ + "wisdom" + ], + "authorId": "Ub_gH1IJ-HBm", + "authorSlug": "lucille-ball", + "length": 77 + }, + { + "_id": "b1idr5ua4wW", + "content": "There is more wisdom in your body than in your deepest philosophy.", + "author": "Friedrich Nietzsche", + "tags": [ + "wisdom" + ], + "authorId": "g-zHV1myc_8Y", + "authorSlug": "friedrich-nietzsche", + "length": 66 + }, + { + "_id": "MLmhf5Scxikl", + "content": "Time stays long enough for anyone who will use it.", + "author": "Leonardo da Vinci", + "tags": [ + "famous-quotes" + ], + "authorId": "v-beNXVk_I9v", + "authorSlug": "leonardo-da-vinci", + "length": 50 + }, + { + "_id": "Aj1hWd83aS", + "content": "It is only the great hearted who can be true friends. The mean and cowardly, Can never know what true friendship means.", + "author": "Charles Kingsley", + "tags": [ + "friendship" + ], + "authorId": "eDH_-mE56", + "authorSlug": "charles-kingsley", + "length": 119 + }, + { + "_id": "APsci40ULi", + "content": "Technology frightens me to death. It’s designed by engineers to impress other engineers. And they always come with instruction booklets that are written by engineers for other engineers — which is why almost no technology ever works.", + "author": "John Cleese", + "tags": [ + "technology" + ], + "authorId": "rp-2AvtbZ", + "authorSlug": "john-cleese", + "length": 233 + }, + { + "_id": "sKRDFZR86R5", + "content": "I never see what has been done; I only see what remains to be done.", + "author": "Marie Curie", + "tags": [ + "famous-quotes" + ], + "authorId": "Ayk4hyEX7Qbu", + "authorSlug": "marie-curie", + "length": 67 + }, + { + "_id": "4gJgNXPzK5", + "content": "Even if you're on the right track, you'll get run over if you just sit there.", + "author": "Will Rogers", + "tags": [ + "wisdom" + ], + "authorId": "7HShv87qgca6", + "authorSlug": "will-rogers", + "length": 77 + }, + { + "_id": "RnCP5T-HzwbJ", + "content": "If we had no winter, the spring would not be so pleasant; if we did not sometimes taste of adversity, prosperity would not be so welcome.", + "author": "Anne Bradstreet", + "tags": [ + "famous-quotes" + ], + "authorId": "hFlcETvnSTsM", + "authorSlug": "anne-bradstreet", + "length": 137 + }, + { + "_id": "IQyVmjKCY1", + "content": "All human wisdom is summed up in two words; wait and hope.", + "author": "Alexandre Dumas", + "tags": [ + "wisdom" + ], + "authorId": "9r41Szdxzw", + "authorSlug": "alexandre-dumas", + "length": 58 + }, + { + "_id": "19XnsDE_kpQq", + "content": "You cannot step twice into the same river, for other waters are continually flowing in.", + "author": "Heraclitus", + "tags": [ + "famous-quotes" + ], + "authorId": "4JthmAKT69gP", + "authorSlug": "heraclitus", + "length": 87 + }, + { + "_id": "kq_R7P1iSIm3", + "content": "The secret of getting ahead is getting started.", + "author": "Mark Twain", + "tags": [ + "famous-quotes", + "inspirational" + ], + "authorId": "zbADvkP0r05L", + "authorSlug": "mark-twain", + "length": 47 + }, + { + "_id": "4vBDcA9H-kG", + "content": "No distance of place or lapse of time can lessen the friendship of those who are thoroughly persuaded of each other's worth.", + "author": "Robert Southey", + "tags": [ + "friendship" + ], + "authorId": "PPovMPyVTCuc", + "authorSlug": "robert-southey", + "length": 124 + }, + { + "_id": "AEocdFfGOhyx", + "content": "What we see depends mainly on what we look for.", + "author": "John Lubbock", + "tags": [ + "famous-quotes" + ], + "authorId": "UzFWyAKPulk8", + "authorSlug": "john-lubbock", + "length": 47 + }, + { + "_id": "bTpqZkd3K7", + "content": "Knowledge is going to make you stronger. Knowledge is going to let you control your life. Knowledge is going to give you the wisdom to teach their children. Knowledge is the thing that makes you smile in the face of disaster.", + "author": "Avery Brooks", + "tags": [ + "wisdom" + ], + "authorId": "oTy9bo88X7", + "authorSlug": "avery-brooks", + "length": 225 + }, + { + "_id": "8OBH14kq2G", + "content": "Neatness begets order; but from order to taste there is the same difference as from taste to genius, or from love to friendship.", + "author": "Johann Kaspar Lavater", + "tags": [ + "friendship" + ], + "authorId": "zpMINfv_ur", + "authorSlug": "johann-kaspar-lavater", + "length": 128 + }, + { + "_id": "0mvbtxiIrRtQ", + "content": "When I let go of what I am, I become what I might be.", + "author": "Laozi", + "tags": [ + "famous-quotes" + ], + "authorId": "qsaptKSHuLDU", + "authorSlug": "laozi", + "length": 53 + }, + { + "_id": "o6XQ_Gzhxg", + "content": "One's friends are that part of the human race with which one can be human.", + "author": "George Santayana", + "tags": [ + "friendship" + ], + "authorId": "EeYA_JAo0Iix", + "authorSlug": "george-santayana", + "length": 74 + }, + { + "_id": "B9UxMLiqU9H8", + "content": "Beware of missing chances; otherwise it may be altogether too late some day.", + "author": "Franz Liszt", + "tags": [ + "famous-quotes" + ], + "authorId": "3Ye538voL0N2", + "authorSlug": "franz-liszt", + "length": 76 + }, + { + "_id": "B4VtMmx3gG", + "content": "Wisdom is the power to put our time and our knowledge to the proper use.", + "author": "Thomas J. Watson", + "tags": [ + "wisdom" + ], + "authorId": "rDbLO_FIvo", + "authorSlug": "thomas-j-watson", + "length": 72 + }, + { + "_id": "iXtSYIGVbm", + "content": "The strong bond of friendship is not always a balanced equation; friendship is not always about giving and taking in equal shares. Instead, friendship is grounded in a feeling that you know exactly who will be there for you when you need something, no matter what or when.", + "author": "Simon Sinek", + "tags": [ + "friendship" + ], + "authorId": "cvjhiGNS4", + "authorSlug": "simon-sinek", + "length": 272 + }, + { + "_id": "nv5eWGaFe892", + "content": "I think somehow we learn who we really are and then live with that decision.", + "author": "Eleanor Roosevelt", + "tags": [ + "famous-quotes" + ], + "authorId": "1X7NWb1oyd21", + "authorSlug": "eleanor-roosevelt", + "length": 76 + }, + { + "_id": "Fg4uCgQpOYMw", + "content": "This is the final test of a gentleman: his respect for those who can be of no possible value to him.", + "author": "William Lyon Phelps", + "tags": [ + "famous-quotes" + ], + "authorId": "uEcdD9tO9Xy1", + "authorSlug": "william-lyon-phelps", + "length": 100 + }, + { + "_id": "nkftU-0YuUP6", + "content": "Courage is not the absence of fear, but simply moving on with dignity despite that fear.", + "author": "Pat Riley", + "tags": [ + "famous-quotes" + ], + "authorId": "JENVe-QuUSP8", + "authorSlug": "pat-riley", + "length": 88 + }, + { + "_id": "Zbd2FOmfMJVJ", + "content": "There is nothing like returning to a place that remains unchanged to find the ways in which you yourself have altered.", + "author": "Nelson Mandela", + "tags": [ + "famous-quotes" + ], + "authorId": "ubn8tDLlaqk6", + "authorSlug": "nelson-mandela", + "length": 118 + }, + { + "_id": "l3-XvfRVtd", + "content": "Let my skin and sinews and bones dry up, together with all the flesh and blood of my body! I welcome it! But I will not move from this spot until I have attained the supreme and final wisdom.", + "author": "Buddha", + "tags": [ + "wisdom" + ], + "authorId": "sUNjshHENA05", + "authorSlug": "buddha", + "length": 191 + }, + { + "_id": "wkkqY5x5kia3", + "content": "There are basically two types of people. People who accomplish things, and people who claim to have accomplished things. The first group is less crowded.", + "author": "Mark Twain", + "tags": [ + "famous-quotes" + ], + "authorId": "zbADvkP0r05L", + "authorSlug": "mark-twain", + "length": 153 + }, + { + "_id": "3tXfdExB8jB", + "content": "From error to error one discovers the entire truth.", + "author": "Sigmund Freud", + "tags": [ + "famous-quotes" + ], + "authorId": "S2-JbY3NzItd", + "authorSlug": "sigmund-freud", + "length": 51 + }, + { + "_id": "QEJsaQ4DbY-v", + "content": "I am like a falling star who has finally found her place next to another in a lovely constellation, where we will sparkle in the heavens forever.", + "author": "Amy Tan", + "tags": [ + "famous-quotes" + ], + "authorId": "PP1Z6EiXO-8z", + "authorSlug": "amy-tan", + "length": 145 + }, + { + "_id": "vuGBuD1oaev3", + "content": "Do not go where the path may lead, go instead where there is no path and leave a trail.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes", + "wisdom" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 87 + }, + { + "_id": "CwRoiaY5uW8", + "content": "No snowflake in an avalanche ever feels responsible.", + "author": "Voltaire", + "tags": [ + "famous-quotes" + ], + "authorId": "ZyuVXKFVTZu8", + "authorSlug": "voltaire", + "length": 52 + }, + { + "_id": "GzemxoxHgF2P", + "content": "What matters is the value we've created in our lives, the people we've made happy and how much we've grown as people.", + "author": "Daisaku Ikeda", + "tags": [ + "famous-quotes" + ], + "authorId": "f4Q5BtDWomhv", + "authorSlug": "daisaku-ikeda", + "length": 117 + }, + { + "_id": "5ujpXxYvGfQp", + "content": "Wrinkles should merely indicate where smiles have been.", + "author": "Mark Twain", + "tags": [ + "famous-quotes" + ], + "authorId": "zbADvkP0r05L", + "authorSlug": "mark-twain", + "length": 55 + }, + { + "_id": "Xof9SNxItD8Y", + "content": "Before you can inspire with emotion, you must be swamped with it yourself. Before you can move their tears, your own must flow. To convince them, you must yourself believe.", + "author": "Winston Churchill", + "tags": [ + "famous-quotes" + ], + "authorId": "FEM0nF4bj5r7", + "authorSlug": "winston-churchill", + "length": 172 + }, + { + "_id": "RP2z5Ir_xwF2", + "content": "When we seek to discover the best in others, we somehow bring out the best in ourselves.", + "author": "William Arthur Ward", + "tags": [ + "famous-quotes", + "friendship", + "self-help" + ], + "authorId": "BbtbIJLprBVl", + "authorSlug": "william-arthur-ward", + "length": 88 + }, + { + "_id": "RrK_kU3Fjf0", + "content": "Yesterdays home runs don't win today's games.", + "author": "Babe Ruth", + "tags": [ + "famous-quotes" + ], + "authorId": "mYsdhXSSb8Ib", + "authorSlug": "babe-ruth", + "length": 45 + }, + { + "_id": "YB-FRt_brC", + "content": "Wisdom and penetration are the fruit of experience, not the lessons of retirement and leisure. Great necessities call out great virtues.", + "author": "Abigail Adams", + "tags": [ + "wisdom" + ], + "authorId": "82zk1b45Zn", + "authorSlug": "abigail-adams", + "length": 136 + }, + { + "_id": "RXBrRJcq1Cih", + "content": "One must be fond of people and trust them if one is not to make a mess of life.", + "author": "E. M. Forster", + "tags": [ + "famous-quotes" + ], + "authorId": "CTr4ZRc1dWiP", + "authorSlug": "e-m-forster", + "length": 79 + }, + { + "_id": "dyPLKxIFG-Sq", + "content": "The only journey is the one within.", + "author": "Rainer Maria Rilke", + "tags": [ + "famous-quotes" + ], + "authorId": "IyvPT1P373DE", + "authorSlug": "rainer-maria-rilke", + "length": 35 + }, + { + "_id": "rAIJZHn5TH", + "content": "The differences between friends cannot but reinforce their friendship.", + "author": "Mao Zedong", + "tags": [ + "friendship" + ], + "authorId": "yIXUbkUQAc", + "authorSlug": "mao-zedong", + "length": 70 + }, + { + "_id": "tVqHnTXq3bDN", + "content": "It is one of the blessings of old friends that you can afford to be stupid with them.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes", + "friendship" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 85 + }, + { + "_id": "d1a0cFxEb8Ng", + "content": "The moment one gives close attention to anything, it becomes a mysterious, awesome, indescribably magnificent world in itself.", + "author": "Henry Miller", + "tags": [ + "famous-quotes" + ], + "authorId": "baiPlUQWl8I-", + "authorSlug": "henry-miller", + "length": 126 + }, + { + "_id": "A5l8yCGO4BL5", + "content": "Forgiveness is choosing to love. It is the first skill of self-giving love.", + "author": "Mahatma Gandhi", + "tags": [ + "famous-quotes" + ], + "authorId": "4J6_dx73YbT5", + "authorSlug": "mahatma-gandhi", + "length": 75 + }, + { + "_id": "0Cel0Uy3XC", + "content": "If a man does not make new acquaintances as he advances through life, he will soon find himself left alone. A man, sir, should keep his friendship in a constant repair.", + "author": "Samuel Johnson", + "tags": [ + "friendship" + ], + "authorId": "Nimgtrtvfbyx", + "authorSlug": "samuel-johnson", + "length": 168 + }, + { + "_id": "U50kYf5u3f4B", + "content": "Life's most persistent and urgent question is, 'What are you doing for others?'", + "author": "Martin Luther King Jr.", + "tags": [ + "famous-quotes" + ], + "authorId": "Af6UJFdH4IwV", + "authorSlug": "martin-luther-king-jr", + "length": 79 + }, + { + "_id": "TxvV88zUrVi3", + "content": "Keep silence for the most part, and speak only when you must, and then briefly.", + "author": "Epictetus", + "tags": [ + "famous-quotes" + ], + "authorId": "HZHaUuiyIJPp", + "authorSlug": "epictetus", + "length": 79 + }, + { + "_id": "2OVqy9KVYy3m", + "content": "No one saves us but ourselves. No one can and no one may. We ourselves must walk the path.", + "author": "Buddha", + "tags": [ + "famous-quotes" + ], + "authorId": "sUNjshHENA05", + "authorSlug": "buddha", + "length": 90 + }, + { + "_id": "KfOJkr869PQo", + "content": "A hero is no braver than an ordinary man, but he is braver five minutes longer.", + "author": "Ralph Waldo Emerson", + "tags": [ + "famous-quotes" + ], + "authorId": "xEVEeQ7m4KQT", + "authorSlug": "ralph-waldo-emerson", + "length": 79 + }, + { + "_id": "ZxKQ6LZn9nZl", + "content": "The world has the habit of making room for the man whose actions show that he knows where he is going.", + "author": "Napoleon Hill", + "tags": [ + "famous-quotes" + ], + "authorId": "N4h708MyElyG", + "authorSlug": "napoleon-hill", + "length": 102 + }, + { + "_id": "T6AMWsNRE5", + "content": "Any sufficiently advanced technology is equivalent to magic.", + "author": "Arthur C. Clarke", + "tags": [ + "technology" + ], + "authorId": "1QYR63wh3", + "authorSlug": "arthur-c-clarke", + "length": 60 + }, + { + "_id": "LVmRBE6cytXv", + "content": "Reason and free inquiry are the only effectual agents against error.", + "author": "Thomas Jefferson", + "tags": [ + "famous-quotes" + ], + "authorId": "Zy4xV5ItRxmv", + "authorSlug": "thomas-jefferson", + "length": 68 + }, + { + "_id": "Z5aMw6Z1KFjp", + "content": "It is very easy to forgive others their mistakes; it takes more grit to forgive them for having witnessed your own.", + "author": "Jessamyn West", + "tags": [ + "famous-quotes" + ], + "authorId": "aMST-Uqfik3g", + "authorSlug": "jessamyn-west", + "length": 115 + }, + { + "_id": "-p4UJJtG2e0g", + "content": "Knowledge rests not upon truth alone, but upon error also.", + "author": "Carl Jung", + "tags": [ + "famous-quotes" + ], + "authorId": "-LYBJJujV7RL", + "authorSlug": "carl-jung", + "length": 58 + }, + { + "_id": "rPhZvCjp1t8J", + "content": "Remember that sometimes not getting what you want is a wonderful stroke of luck.", + "author": "Dalai Lama", + "tags": [ + "famous-quotes" + ], + "authorId": "OPVjtVVBVW5h", + "authorSlug": "dalai-lama", + "length": 80 + }, + { + "_id": "VNbPhxpsCQrO", + "content": "Remember always that you not only have the right to be an individual, you have an obligation to be one.", + "author": "Eleanor Roosevelt", + "tags": [ + "famous-quotes" + ], + "authorId": "1X7NWb1oyd21", + "authorSlug": "eleanor-roosevelt", + "length": 103 + }, + { + "_id": "aeAPqvNG3", + "content": "It is a common experience that a problem difficult at night is resolved in the morning after the committee of sleep has worked on it.", + "author": "John Steinbeck", + "tags": [ + "wisdom" + ], + "authorId": "6axtEJVYp2We", + "authorSlug": "john-steinbeck", + "length": 133 + }, + { + "_id": "dMJ9b4iwZ0Lj", + "content": "To make no mistakes is not in the power of man; but from their errors and mistakes the wise and good learn wisdom for the future.", + "author": "Plutarch", + "tags": [ + "famous-quotes", + "wisdom" + ], + "authorId": "fmzBXMuI4lbX", + "authorSlug": "plutarch", + "length": 129 + }, + { + "_id": "9sm_GJbP-2s_", + "content": "This world, after all our science and sciences, is still a miracle; wonderful, inscrutable, magical and more, to whosoever will think of it.", + "author": "Thomas Carlyle", + "tags": [ + "famous-quotes" + ], + "authorId": "sTK7Nn46drMi", + "authorSlug": "thomas-carlyle", + "length": 140 + }, + { + "_id": "wIfNy-oDtr", + "content": "Friendship needs no words - it is solitude delivered from the anguish of loneliness.", + "author": "Dag Hammarskjöld", + "tags": [ + "friendship" + ], + "authorId": "ubzLDheOmG", + "authorSlug": "dag-hammarskjold", + "length": 84 + }, + { + "_id": "m8q1pMkFz_jV", + "content": "Wherever a man may happen to turn, whatever a man may undertake, he will always end up by returning to the path which nature has marked out for him.", + "author": "Johann Wolfgang von Goethe", + "tags": [ + "famous-quotes" + ], + "authorId": "aW1ZR-8LuS28", + "authorSlug": "johann-wolfgang-von-goethe", + "length": 148 + }, + { + "_id": "nBSAX0LazBDt", + "content": "If A is success in life, then A equals x plus y plus z. Work is x; y is play; and z is keeping your mouth shut.", + "author": "Albert Einstein", + "tags": [ + "famous-quotes", + "life", + "success" + ], + "authorId": "L76FRuEeGIUJ", + "authorSlug": "albert-einstein", + "length": 111 + }, + { + "_id": "DZA5UWkbv-KJ", + "content": "If we could see the miracle of a single flower clearly, our whole life would change.", + "author": "Buddha", + "tags": [ + "famous-quotes" + ], + "authorId": "sUNjshHENA05", + "authorSlug": "buddha", + "length": 84 + }, + { + "_id": "b-zLcfguzkk7", + "content": "When you are content to be simply yourself and don't compare or compete, everybody will respect you.", + "author": "Laozi", + "tags": [ + "famous-quotes" + ], + "authorId": "qsaptKSHuLDU", + "authorSlug": "laozi", + "length": 100 + }, + { + "_id": "eDuDLZphbw9c", + "content": "The best preparation for tomorrow is doing your best today.", + "author": "H. Jackson Brown Jr.", + "tags": [ + "famous-quotes" + ], + "authorId": "ZShJOYn-QZ5M", + "authorSlug": "h-jackson-brown-jr", + "length": 59 + }, + { + "_id": "5MYjs_eBt5", + "content": "Love demands infinitely less than friendship.", + "author": "George Jean Nathan", + "tags": [ + "friendship" + ], + "authorId": "SMk7Fb4KTw", + "authorSlug": "george-jean-nathan", + "length": 45 + }, + { + "_id": "kc_i68XUTzm9", + "content": "If you spend too much time thinking about a thing, you'll never get it done.", + "author": "Bruce Lee", + "tags": [ + "famous-quotes" + ], + "authorId": "raaFe2cXACnG", + "authorSlug": "bruce-lee", + "length": 76 + }, + { + "_id": "gBdWfRIFkxx4", + "content": "The aim of life is self-development. To realize ones nature perfectly - that is what each of us is here for.", + "author": "Oscar Wilde", + "tags": [ + "famous-quotes" + ], + "authorId": "yw5O7wULaKfx", + "authorSlug": "oscar-wilde", + "length": 108 + }, + { + "_id": "rROktmIDga", + "content": "And when the world is created, it is created in such a way that those eternal objects of God's loving wisdom become actualities - interacting with one another, relating to God in the finite realm.", + "author": "Rowan Williams", + "tags": [ + "wisdom" + ], + "authorId": "k53H3997pN", + "authorSlug": "rowan-williams", + "length": 196 + }, + { + "_id": "395POpXmel", + "content": "Life has no blessing like a prudent friend.", + "author": "Euripides", + "tags": [ + "friendship" + ], + "authorId": "yVMYpy-GWWFq", + "authorSlug": "euripides", + "length": 43 + }, + { + "_id": "gP3atICYApeI", + "content": "No pessimist ever discovered the secrets of the stars, or sailed to an uncharted land, or opened a new heaven to the human spirit.", + "author": "Helen Keller", + "tags": [ + "famous-quotes" + ], + "authorId": "pYjZMId1ilhK", + "authorSlug": "helen-keller", + "length": 130 + }, + { + "_id": "7C2TU6MIz9o_", + "content": "I'm not interested in age. People who tell me their age are silly. You're as old as you feel.", + "author": "Elizabeth Arden", + "tags": [ + "famous-quotes" + ], + "authorId": "6Z2MjNVjOz8H", + "authorSlug": "elizabeth-arden", + "length": 93 + }, + { + "_id": "EpDrsWX_c6li", + "content": "When people are like each other they tend to like each other.", + "author": "Tony Robbins", + "tags": [ + "famous-quotes" + ], + "authorId": "IkUGwHTcaXs9", + "authorSlug": "tony-robbins", + "length": 61 + }, + { + "_id": "8Lkh3gqcSh", + "content": "Difficulties increase the nearer we get to the goal.", + "author": "Johann Wolfgang von Goethe", + "tags": [ + "famous-quotes", + "inspirational" + ], + "authorId": "aW1ZR-8LuS28", + "authorSlug": "johann-wolfgang-von-goethe", + "length": 52 + }, + { + "_id": "3-PoIjz4IDQ", + "content": "In life, all good things come hard, but wisdom is the hardest to come by.", + "author": "Lucille Ball", + "tags": [ + "wisdom" + ], + "authorId": "Ub_gH1IJ-HBm", + "authorSlug": "lucille-ball", + "length": 73 + }, + { + "_id": "_k3kxvogAs-6", + "content": "If you have knowledge, let others light their candles in it.", + "author": "Margaret Fuller", + "tags": [ + "famous-quotes" + ], + "authorId": "yxcmeo89-BoQ", + "authorSlug": "margaret-fuller", + "length": 60 + }, + { + "_id": "5_6lVDMuo9IM", + "content": "Happiness can exist only in acceptance.", + "author": "George Orwell", + "tags": [ + "famous-quotes" + ], + "authorId": "YyZuhLs2-ki6", + "authorSlug": "george-orwell", + "length": 39 + }, + { + "_id": "NTseDGDXOuo8", + "content": "Life is really simple, but we insist on making it complicated.", + "author": "Confucius", + "tags": [ + "famous-quotes" + ], + "authorId": "ropvZKOXYhLr", + "authorSlug": "confucius", + "length": 62 + }, + { + "_id": "mZGMxqlkKn", + "content": "Friendship may, and often does, grow into love, but love never subsides into friendship.", + "author": "Lord Byron", + "tags": [ + "friendship" + ], + "authorId": "EUjr2jc6nT", + "authorSlug": "lord-byron", + "length": 88 + }, + { + "_id": "0Z8EQaXeVdhX", + "content": "Weve got to have a dream if we are going to make a dream come true.", + "author": "Walt Disney", + "tags": [ + "famous-quotes" + ], + "authorId": "HzyhMbP15DoD", + "authorSlug": "walt-disney", + "length": 67 + }, + { + "_id": "heFGlWwPZjvX", + "content": "Promises are the uniquely human way of ordering the future, making it predictable and reliable to the extent that this is humanly possible.", + "author": "Hannah Arendt", + "tags": [ + "famous-quotes" + ], + "authorId": "2aVt9AdFu1fK", + "authorSlug": "hannah-arendt", + "length": 139 + }, + { + "_id": "g1GZtzlspywZ", + "content": "Most of the important things in the world have been accomplished by people who have kept on trying when there seemed to be no hope at all.", + "author": "Dale Carnegie", + "tags": [ + "famous-quotes" + ], + "authorId": "D1RNG5b9TsXN", + "authorSlug": "dale-carnegie", + "length": 138 + }, + { + "_id": "YTqaIDVD0fX3", + "content": "The way we communicate with others and with ourselves ultimately determines the quality of our lives.", + "author": "Tony Robbins", + "tags": [ + "famous-quotes" + ], + "authorId": "IkUGwHTcaXs9", + "authorSlug": "tony-robbins", + "length": 101 + }, + { + "_id": "xjRJ2oXvhode", + "content": "Time you enjoyed wasting was not wasted.", + "author": "John Lennon", + "tags": [ + "famous-quotes" + ], + "authorId": "vVS5k5Oad9Hy", + "authorSlug": "john-lennon", + "length": 40 + }, + { + "_id": "M1DjUqEQCO-E", + "content": "Never bend your head. Always hold it high. Look the world right in the eye.", + "author": "Helen Keller", + "tags": [ + "famous-quotes" + ], + "authorId": "pYjZMId1ilhK", + "authorSlug": "helen-keller", + "length": 75 + }, + { + "_id": "wdTamcKIF6Oc", + "content": "All achievements, all earned riches, have their beginning in an idea.", + "author": "Napoleon Hill", + "tags": [ + "famous-quotes" + ], + "authorId": "N4h708MyElyG", + "authorSlug": "napoleon-hill", + "length": 69 + }, + { + "_id": "vmmay0GtEHcT", + "content": "The poor man is not he who is without a cent, but he who is without a dream.", + "author": "Harry Kemp", + "tags": [ + "famous-quotes" + ], + "authorId": "jFYtDAg5Ott5", + "authorSlug": "harry-kemp", + "length": 76 + }, + { + "_id": "0IP2kpOHSiPj", + "content": "I have never been hurt by anything I didn't say.", + "author": "Calvin Coolidge", + "tags": [ + "famous-quotes" + ], + "authorId": "bUWx0bMUCf8X", + "authorSlug": "calvin-coolidge", + "length": 48 + }, + { + "_id": "FO7XX9krDFzO", + "content": "Every artist dips his brush in his own soul, and paints his own nature into his pictures.", + "author": "Henry Ward Beecher", + "tags": [ + "famous-quotes" + ], + "authorId": "7ARdGK2SnqLv", + "authorSlug": "henry-ward-beecher", + "length": 89 + }, + { + "_id": "5_zuctgLXl8x", + "content": "The right way is not always the popular and easy way. Standing for right when it is unpopular is a true test of moral character.", + "author": "Margaret Chase Smith", + "tags": [ + "famous-quotes" + ], + "authorId": "TtcYr-YE0YpM", + "authorSlug": "margaret-chase-smith", + "length": 128 + }, + { + "_id": "mH_m-Xmw1dk", + "content": "Don't wait. The time will never be just right.", + "author": "Napoleon Hill", + "tags": [ + "famous-quotes" + ], + "authorId": "N4h708MyElyG", + "authorSlug": "napoleon-hill", + "length": 46 + } +] \ No newline at end of file diff --git a/pls_cli/utils/es/quotes.json b/translations/es_quotes.json similarity index 100% rename from pls_cli/utils/es/quotes.json rename to translations/es_quotes.json From 63ade95b7f6f9fc3a25ae03b4510e1771752cd31 Mon Sep 17 00:00:00 2001 From: Alonso Melgar Lopez Date: Wed, 3 Aug 2022 21:49:38 -0500 Subject: [PATCH 08/14] =?UTF-8?q?=E2=9C=85=20Update=20read=20quotes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pls_cli/utils/quotes.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pls_cli/utils/quotes.py b/pls_cli/utils/quotes.py index 0ff0ef3..0a13ec1 100644 --- a/pls_cli/utils/quotes.py +++ b/pls_cli/utils/quotes.py @@ -3,12 +3,14 @@ import random -def get_rand_quote(lang: str): +def get_rand_quote(): __location__ = os.path.realpath( os.path.join(os.getcwd(), os.path.dirname(__file__)) ) with open( - os.path.join(__location__, f'{lang}/quotes.json'), 'r', encoding='utf-8' + os.path.join(__location__, f'quotes.json'), + 'r', + encoding='utf-8', ) as quotes_file: list_of_quotes = json.load(quotes_file) return random.choice(list_of_quotes) From 13036fd514d3338e14599be7947ca1a6145dd7b9 Mon Sep 17 00:00:00 2001 From: Alonso Melgar Lopez Date: Wed, 3 Aug 2022 21:50:26 -0500 Subject: [PATCH 09/14] =?UTF-8?q?=E2=9C=A8=20Add=20function=20to=20get=20a?= =?UTF-8?q?ctual=20list=20of=20lenguage?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pls_cli/utils/settings.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pls_cli/utils/settings.py b/pls_cli/utils/settings.py index d4b210b..1a9dbd4 100644 --- a/pls_cli/utils/settings.py +++ b/pls_cli/utils/settings.py @@ -57,7 +57,11 @@ def show_quotes(self) -> bool: return self.get_settings().get('show_quotes', True) def get_language(self) -> str: - return self.get_settings().get('language', '') + return self.get_settings().get('language', 'en') + + def get_list_language(self) -> dict: + list_language = {'en': 'English', 'es': 'Spanish'} + return list_language def all_tasks_done(self) -> bool: return all(task.get('done', '') for task in self.get_tasks()) From 61866e13843edfbe568af334b5e0566f2130e4cf Mon Sep 17 00:00:00 2001 From: Alonso Melgar Lopez Date: Wed, 3 Aug 2022 21:51:24 -0500 Subject: [PATCH 10/14] =?UTF-8?q?=E2=9C=85=20Update=20commond=20to=20=20to?= =?UTF-8?q?=20Choose=20lenguage?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pls_cli/please.py | 77 ++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 66 insertions(+), 11 deletions(-) diff --git a/pls_cli/please.py b/pls_cli/please.py index 208bf92..17290cb 100644 --- a/pls_cli/please.py +++ b/pls_cli/please.py @@ -130,20 +130,69 @@ def quotes(show: bool = True) -> None: style=insert_or_delete_text_style, ) + @app.command('language', rich_help_panel='Utils and Configs') def language(lang: str) -> None: """Choose language 🛩️""" settings = Settings().get_settings() - settings['language'] = lang - Settings().write_settings(settings) - center_print( + list_language = Settings().get_list_language() + if lang.lower() in list(list_language.keys()): + if settings['language'] == lang: + pass + else: + settings['language'] = lang + Settings().write_settings(settings) + # Here function Dowload quotes + + center_print( Rule( 'Thanks for letting me know that!', style=insert_or_delete_line_style, ), style=insert_or_delete_text_style, + ) + else: + center_print( + Rule( + 'Wrong option!', + style=insert_or_delete_line_style, + ), + style=insert_or_delete_text_style, + ) + code_markdown = Markdown( + """ + pls list-language + """ + ) + + center_print( + 'If you want to list the language of quotes, please use:', + style='red', + ) + console.print(code_markdown) + +@app.command('list-language', rich_help_panel='Utils and Configs') +def list_language() -> None: + """List language options 💬""" + list_language = Settings().get_list_language() + + task_table = Table( + header_style=table_header_style, + style=table_header_style, + box=box.SIMPLE_HEAVY, ) + task_table.add_column('language', justify='center') + task_table.add_column('', justify='center') + + for command, language in list_language.items(): + + command = f'{command}' + language = f'{language}' + + task_table.add_row(command, language) + center_print(task_table) + @app.command('tasks', short_help='Show all Tasks :open_book:') @app.command(short_help='[s]Show all Tasks :open_book:[/]', deprecated=True) @@ -462,10 +511,6 @@ def setup() -> None: typer.style('Do you want show quotes? (Y/n)', fg=typer.colors.CYAN) ) - show_language = typer.prompt( - typer.style('Choose the language of quotes (en, es)', fg=typer.colors.CYAN) - ).lower() - code_markdown = Markdown( """ pls callme @@ -511,6 +556,19 @@ def setup() -> None: ) console.print(code_markdown) + code_markdown = Markdown( + """ + pls list-language + """ + ) + + center_print( + 'If you want to list the language of quotes, please use:', + style='red', + ) + console.print(code_markdown) + + center_print( 'To apply the changes restart the terminal or use this command:', style='red', @@ -533,10 +591,7 @@ def setup() -> None: else: settings['show_quotes'] = True - if show_language in ('en', 'es'): - settings['language'] = show_language - else: - settings['language'] = 'en' + settings['language'] = 'en' settings['tasks'] = [] Settings().write_settings(settings) From ba981e6e0ba0fc60c70899a943d2d433ea887ec1 Mon Sep 17 00:00:00 2001 From: Alonso Melgar Lopez Date: Wed, 3 Aug 2022 22:08:08 -0500 Subject: [PATCH 11/14] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20Refactor=20code?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pls_cli/please.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/pls_cli/please.py b/pls_cli/please.py index 17290cb..8742bbc 100644 --- a/pls_cli/please.py +++ b/pls_cli/please.py @@ -142,16 +142,16 @@ def language(lang: str) -> None: else: settings['language'] = lang Settings().write_settings(settings) - # Here function Dowload quotes - + # Here function Dowload quotes + center_print( - Rule( - 'Thanks for letting me know that!', - style=insert_or_delete_line_style, - ), - style=insert_or_delete_text_style, + Rule( + 'Thanks for letting me know that!', + style=insert_or_delete_line_style, + ), + style=insert_or_delete_text_style, ) - else: + else: center_print( Rule( 'Wrong option!', @@ -160,7 +160,7 @@ def language(lang: str) -> None: style=insert_or_delete_text_style, ) code_markdown = Markdown( - """ + """ pls list-language """ ) @@ -171,6 +171,7 @@ def language(lang: str) -> None: ) console.print(code_markdown) + @app.command('list-language', rich_help_panel='Utils and Configs') def list_language() -> None: """List language options 💬""" @@ -186,7 +187,7 @@ def list_language() -> None: task_table.add_column('', justify='center') for command, language in list_language.items(): - + command = f'{command}' language = f'{language}' @@ -568,7 +569,6 @@ def setup() -> None: ) console.print(code_markdown) - center_print( 'To apply the changes restart the terminal or use this command:', style='red', From 047120c9836af36bbf97bb36c642525f0b400040 Mon Sep 17 00:00:00 2001 From: Alonso Melgar Lopez Date: Wed, 3 Aug 2022 22:26:44 -0500 Subject: [PATCH 12/14] =?UTF-8?q?=F0=9F=90=9B=20Fix=20bug=20unexpected=20k?= =?UTF-8?q?eyword=20argument?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pls_cli/please.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pls_cli/please.py b/pls_cli/please.py index 8742bbc..3c2ec80 100644 --- a/pls_cli/please.py +++ b/pls_cli/please.py @@ -612,12 +612,11 @@ def show(ctx: typer.Context) -> None: if Settings().exists_settings(): date_now = datetime.datetime.now() user_name = Settings().get_name() - language = Settings().get_language() header_greetings = f'[{header_greetings_style}] Hello {user_name}! It\'s {date_now.strftime("%d %b | %I:%M %p")}[/]' center_print( Rule(header_greetings, style=header_greetings_style) ) - quote = get_rand_quote(lang=language) + quote = get_rand_quote() if Settings().show_quotes(): center_print( f'[{quote_style}]"{quote["content"]}"[/]', wrap=True From c2ac056b09b702ae103168f8e7fbbe0448cac4c5 Mon Sep 17 00:00:00 2001 From: Alonso Melgar Lopez Date: Wed, 21 Sep 2022 23:56:34 -0500 Subject: [PATCH 13/14] =?UTF-8?q?=E2=9C=A8=20Update=20command=20to=20choos?= =?UTF-8?q?e=20the=20language=20of=20quotes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pls_cli/please.py | 78 +++++++++++---------------------------- pls_cli/utils/settings.py | 6 +-- 2 files changed, 22 insertions(+), 62 deletions(-) diff --git a/pls_cli/please.py b/pls_cli/please.py index 3c2ec80..df000be 100644 --- a/pls_cli/please.py +++ b/pls_cli/please.py @@ -5,6 +5,7 @@ from typing import Union import typer +from enum import Enum from rich import box from rich.align import Align from rich.console import Console, RenderableType @@ -131,69 +132,32 @@ def quotes(show: bool = True) -> None: ) -@app.command('language', rich_help_panel='Utils and Configs') -def language(lang: str) -> None: +class language(str, Enum): + english = "english" + spanish = "spanish" + + +@app.command("language", rich_help_panel="Utils and Configs") +def language( + lang: language = typer.Option(language.english, case_sensitive=False) +) -> None: """Choose language 🛩️""" settings = Settings().get_settings() - list_language = Settings().get_list_language() - if lang.lower() in list(list_language.keys()): - if settings['language'] == lang: - pass - else: - settings['language'] = lang - Settings().write_settings(settings) - # Here function Dowload quotes - - center_print( - Rule( - 'Thanks for letting me know that!', - style=insert_or_delete_line_style, - ), - style=insert_or_delete_text_style, - ) + if settings["language"] == lang: + pass else: - center_print( - Rule( - 'Wrong option!', - style=insert_or_delete_line_style, - ), - style=insert_or_delete_text_style, - ) - code_markdown = Markdown( - """ - pls list-language - """ - ) - - center_print( - 'If you want to list the language of quotes, please use:', - style='red', - ) - console.print(code_markdown) - - -@app.command('list-language', rich_help_panel='Utils and Configs') -def list_language() -> None: - """List language options 💬""" - list_language = Settings().get_list_language() + settings["language"] = lang + Settings().write_settings(settings) + # Here function Dowload quotes - task_table = Table( - header_style=table_header_style, - style=table_header_style, - box=box.SIMPLE_HEAVY, + center_print( + Rule( + "Thanks for letting me know that!", + style=insert_or_delete_line_style, + ), + style=insert_or_delete_text_style, ) - task_table.add_column('language', justify='center') - task_table.add_column('', justify='center') - - for command, language in list_language.items(): - - command = f'{command}' - language = f'{language}' - - task_table.add_row(command, language) - center_print(task_table) - @app.command('tasks', short_help='Show all Tasks :open_book:') @app.command(short_help='[s]Show all Tasks :open_book:[/]', deprecated=True) diff --git a/pls_cli/utils/settings.py b/pls_cli/utils/settings.py index 1a9dbd4..4f0406e 100644 --- a/pls_cli/utils/settings.py +++ b/pls_cli/utils/settings.py @@ -57,11 +57,7 @@ def show_quotes(self) -> bool: return self.get_settings().get('show_quotes', True) def get_language(self) -> str: - return self.get_settings().get('language', 'en') - - def get_list_language(self) -> dict: - list_language = {'en': 'English', 'es': 'Spanish'} - return list_language + return self.get_settings().get('language', 'english') def all_tasks_done(self) -> bool: return all(task.get('done', '') for task in self.get_tasks()) From 01d98c2f109e54cee58cc8f201efb8384aafea38 Mon Sep 17 00:00:00 2001 From: Alonso Melgar Lopez Date: Thu, 22 Sep 2022 00:18:38 -0500 Subject: [PATCH 14/14] =?UTF-8?q?=E2=9C=A8=20Update=20command=20to=20choos?= =?UTF-8?q?e=20the=20language=20of=20quotes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pls_cli/please.py | 46 +++++++++++++++++++++++----------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/pls_cli/please.py b/pls_cli/please.py index df000be..3e08588 100644 --- a/pls_cli/please.py +++ b/pls_cli/please.py @@ -144,19 +144,31 @@ def language( """Choose language 🛩️""" settings = Settings().get_settings() if settings["language"] == lang: - pass + center_print( + Rule( + f"Current language is: {lang}", + style=insert_or_delete_line_style, + ), + style=insert_or_delete_text_style, + ) else: settings["language"] = lang Settings().write_settings(settings) # Here function Dowload quotes - - center_print( - Rule( - "Thanks for letting me know that!", - style=insert_or_delete_line_style, - ), - style=insert_or_delete_text_style, - ) + center_print( + Rule( + "Thanks for letting me know that!", + style=insert_or_delete_line_style, + ), + style=insert_or_delete_text_style, + ) + center_print( + Rule( + f"Current language is: {lang}", + style=insert_or_delete_line_style, + ), + style=insert_or_delete_text_style, + ) @app.command('tasks', short_help='Show all Tasks :open_book:') @@ -511,7 +523,7 @@ def setup() -> None: code_markdown = Markdown( """ - pls language + pls language --lang """ ) @@ -521,18 +533,6 @@ def setup() -> None: ) console.print(code_markdown) - code_markdown = Markdown( - """ - pls list-language - """ - ) - - center_print( - 'If you want to list the language of quotes, please use:', - style='red', - ) - console.print(code_markdown) - center_print( 'To apply the changes restart the terminal or use this command:', style='red', @@ -555,7 +555,7 @@ def setup() -> None: else: settings['show_quotes'] = True - settings['language'] = 'en' + settings['language'] = 'english' settings['tasks'] = [] Settings().write_settings(settings)