From d0b856c64bf4f9ad4c6c551e572416de7a3d2066 Mon Sep 17 00:00:00 2001 From: Rudis Muiznieks Date: Thu, 7 Apr 2022 19:41:00 -0500 Subject: [PATCH] added bash and tmux configs --- herbstluftwm/ellison/autostart | 95 +- shell/bashrc | 16 + shell/bashrc.d/01-common.sh | 43 + shell/bashrc.d/02-plugin-config.sh | 21 + shell/bashrc.d/03-functions.sh | 29 + shell/bashrc.d/04-prompt.sh | 69 + shell/bashrc.d/99-load-tmux.sh | 20 + shell/quotes.json | 6570 ++++++++++++++++++++++++++++ shell/tmux.conf | 33 + 9 files changed, 6834 insertions(+), 62 deletions(-) create mode 100644 shell/bashrc create mode 100644 shell/bashrc.d/01-common.sh create mode 100644 shell/bashrc.d/02-plugin-config.sh create mode 100644 shell/bashrc.d/03-functions.sh create mode 100644 shell/bashrc.d/04-prompt.sh create mode 100644 shell/bashrc.d/99-load-tmux.sh create mode 100644 shell/quotes.json create mode 100644 shell/tmux.conf diff --git a/herbstluftwm/ellison/autostart b/herbstluftwm/ellison/autostart index 3933a02..e2b654f 100755 --- a/herbstluftwm/ellison/autostart +++ b/herbstluftwm/ellison/autostart @@ -8,68 +8,8 @@ hc() { hc emit_hook reload -if hc silent new_attr bool my_picom_is_running; then - picom -b -fi - -xsetroot -solid "#080808" -cursor_name left_ptr & -feh --bg-fill ~/.config/herbstluftwm/wallpaper.jpg - -# remove all existing keybindings -hc keyunbind --all -hc set default_frame_layout max -hc set_layout max - -# keybindings -Mod=Mod4 # Use the super key as the main modifier - -hc keybind $Mod-Shift-q quit -hc keybind $Mod-Control-r reload -hc keybind $Mod-Shift-c close -hc keybind $Mod-Return spawn st -hc keybind $Mod-Control-Return spawn qutebrowser -hc keybind Print spawn flameshot gui - -hc keybind XF86AudioRaiseVolume spawn sh -c "pamixer -i 5; pamixer --get-volume >> \"$xobpipe\"; $refresh_panel" -hc keybind XF86AudioLowerVolume spawn sh -c "pamixer -d 5; pamixer --get-volume >> \"$xobpipe\"; $refresh_panel" -hc keybind XF86AudioMute spawn sh -c "pamixer -t; pamixer --get-volume-human | sed 's/muted/0/' >> \"$xobpipe\"; $refresh_panel" -hc keybind XF86Launch7 spawn sh -c "sleep 0.15 && xdotool keydown ctrl key w keyup ctrl" - -# basic movement in tiling and floating mode -# focusing clients -hc keybind $Mod-Left focus left -hc keybind $Mod-Down focus down -hc keybind $Mod-Up focus up -hc keybind $Mod-Right focus right - -# moving clients in tiling and floating mode -hc keybind $Mod-Shift-Left shift left -hc keybind $Mod-Shift-Down shift down -hc keybind $Mod-Shift-Up shift up -hc keybind $Mod-Shift-Right shift right - -# layouting -hc keybind $Mod-f fullscreen toggle -hc keybind $Mod-Shift-f set_attr clients.focus.floating toggle -# The following cycles through the available layouts within a frame, but skips -# layouts, if the layout change wouldn't affect the actual window positions. -# I.e. if there are two windows within a frame, the grid layout is skipped. -hc keybind $Mod-space or , and . compare tags.focus.curframe_wcount = 2 . cycle_layout +1 vertical horizontal max vertical grid , cycle_layout +1 - -# mouse -hc mouseunbind --all -hc set focus_follows_mouse true -hc set focus_follows_monitor_boundaries true -hc mousebind $Mod-Button1 move -hc mousebind $Mod-Button3 resize - -# focus -hc keybind $Mod-BackSpace cycle_monitor -hc keybind $Mod-Tab cycle_all +1 -hc keybind $Mod-Shift-Tab cycle_all -1 -hc keybind $Mod-Alt-Tab jumpto urgent - # theme +hc lock hc attr theme.tiling.reset 1 hc attr theme.floating.reset 1 hc set always_show_frame on @@ -95,6 +35,38 @@ hc set frame_normal_opacity 1 hc set frame_bg_active_color '#0000000000' hc set snap_distance 0 hc set snap_gap 0 +hc unlock + +if hc silent new_attr bool my_picom_is_running; then + picom -b +fi + +xsetroot -solid "#080808" -cursor_name left_ptr & +feh --bg-fill ~/.config/herbstluftwm/wallpaper.jpg + +# remove all existing keybindings +hc keyunbind --all +hc set default_frame_layout max +hc set_layout max + +# keybindings +Mod=Mod4 # Use the super key as the main modifier + +hc keybind $Mod-Alt-q quit +hc keybind $Mod-Alt-r reload +hc keybind $Mod-Alt-Tab cycle_all +1 +hc keybind $Mod-Control-c close + +hc keybind XF86AudioRaiseVolume spawn sh -c "pamixer -i 5; pamixer --get-volume >> \"$xobpipe\"; $refresh_panel" +hc keybind XF86AudioLowerVolume spawn sh -c "pamixer -d 5; pamixer --get-volume >> \"$xobpipe\"; $refresh_panel" +hc keybind XF86AudioMute spawn sh -c "pamixer -t; pamixer --get-volume-human | sed 's/muted/0/' >> \"$xobpipe\"; $refresh_panel" + +# mouse +hc mouseunbind --all +hc set focus_follows_mouse true +hc set focus_follows_monitor_boundaries true +#hc mousebind $Mod-Button1 move +#hc mousebind $Mod-Button3 resize # rules hc unrule -F @@ -107,7 +79,6 @@ hc rule floatplacement=smart hc rule windowtype~'_NET_WM_WINDOW_TYPE_(DIALOG|UTILITY|SPLASH)' floating=on hc rule windowtype='_NET_WM_WINDOW_TYPE_DIALOG' focus=on hc rule windowtype~'_NET_WM_WINDOW_TYPE_(NOTIFICATION|DOCK|DESKTOP)' manage=off -hc rule class='nvim-zen' fullscreen=on hc set tree_style '╾│ ├└╼─┐' diff --git a/shell/bashrc b/shell/bashrc new file mode 100644 index 0000000..0c04f13 --- /dev/null +++ b/shell/bashrc @@ -0,0 +1,16 @@ +#!/usr/bin/env bash +# +# ~/.bashrc +# +# If not running interactively, don't do anything +[[ $- != *i* ]] && return + +# If x is available and we're not in it, start it +if [ -z "$DISPLAY" ] && [ -x "$(command -v startx)" ]; then + startx +else + # source shared config + for shared in ~/skynet/shell/bashrc.d/*.sh; do + source "$shared" + done +fi diff --git a/shell/bashrc.d/01-common.sh b/shell/bashrc.d/01-common.sh new file mode 100644 index 0000000..80080f4 --- /dev/null +++ b/shell/bashrc.d/01-common.sh @@ -0,0 +1,43 @@ +set -o vi +shopt -s histappend +shopt -s cmdhist +HISTSIZE=1000000 +HISTFILESIZE=1000000 +HISTCONTROL=ignoreboth +HISTIGNORE='ls:history' +HISTTIMEFORMAT='%F %T ' + +export TERM_ITALICS=true + +eval $(perl -I ~/perl5/lib/perl5/ -Mlocal::lib) + +export PATH=$PATH:~/skynet/bin:~/node/node_modules/.bin:~/.local/bin:~/go/bin:~/.dotnet:~/.dotnet/tools:~/.cargo/bin:~/.luarocks/bin + +export EDITOR=vim +export PAGER=bat +export BROWSER=qutebrowser +export BAT_THEME='Wombat' +export DOTNET_ROOT=~/.dotnet +export ANDROID_EMULATOR_USE_SYSTEM_LIBS=1 + +alias ls='exa --icons' +alias cat='bat' +alias flatpak='flatpak --user' +alias cd..='cd ..' +alias j='goto' +alias jqize="jq -R -r '. as \$line | try fromjson catch \$line'" +alias jcurl="curl -H 'Content-Type: application/json' -H 'Accept: application/json'" +alias gitlog='git log --oneline --graph' +alias gitpush='git push origin $(git rev-parse --abbrev-ref HEAD)' +alias watchsync='watch grep -e Dirty: -e Writeback: /proc/meminfo' +alias psgrep='ps -ef | grep -v grep | grep' +alias serve='python -m http.server' +alias dockerrm='docker stop $(docker ps -aq); docker rm -v $(docker ps -aq); docker volume prune -f; docker rmi $(docker images -q --filter "dangling=true")' +alias cls='clear && echo -en "\e[3J"' +alias removebom="sed -i \$'1s/^\uFEFF//'" +alias duskh="du -hka --max-depth=1 | sort -h" +alias 8bitdo="xboxdrv --evdev /dev/btjoy --config ~/.config/xboxdrv/8bitdo.conf" +alias ddev="export COMPOSE_FILE=docker-compose.dev.yaml" +alias penscreen="xsetwacom set 'Wacom Intuos PT S Pen stylus' MapToOutput HEAD-1; xsetwacom set 'Wacom Intuos PT S Pen eraser' MapToOutput HEAD-1" + +test -e ~/.bash_aliases && source ~/.bash_aliases diff --git a/shell/bashrc.d/02-plugin-config.sh b/shell/bashrc.d/02-plugin-config.sh new file mode 100644 index 0000000..82b69c4 --- /dev/null +++ b/shell/bashrc.d/02-plugin-config.sh @@ -0,0 +1,21 @@ +# fzf config +[ -f /usr/share/fzf/completion.bash ] && source /usr/share/fzf/completion.bash +[ -f /usr/share/fzf/key-bindings.bash ] && source /usr/share/fzf/key-bindings.bash + +# goto +[ -f ~/skynet/scripts/goto.sh ] && source ~/skynet/scripts/goto.sh + +# bash completion +test -e /usr/share/bash-completion/bash_completion && source /usr/share/bash-completion/bash_completion + +# colorizer +GRC_ALIASES=true +test -e /etc/profile.d/grc.sh && source /etc/profile.d/grc.sh + +# git bash completions +test -e ~/skynet/scripts/git-completion.bash && source ~/skynet/scripts/git-completion.bash + +# nvm +test -e ~/.nvm/nvm.sh && source ~/.nvm/nvm.sh + +test -e ~/.cargo/env && source ~/.cargo/env diff --git a/shell/bashrc.d/03-functions.sh b/shell/bashrc.d/03-functions.sh new file mode 100644 index 0000000..253c2e0 --- /dev/null +++ b/shell/bashrc.d/03-functions.sh @@ -0,0 +1,29 @@ +# dictionary +define(){ + dict -d gcide "$1" | bat +} + +# thesaurus +synonym(){ + dict -d moby-thesaurus "$1" | bat +} + +# mount with user permissions +mmount(){ + sudo mount -o uid=`whoami`,gid=`whoami` "/dev/$1" "/mnt/$2" +} + +# easy ssh-agent persistence +function ssha() { + test=`ps -ef | grep '\sssh-agent$' | grep -v grep | awk '{print $2}' | xargs` + if [ "$test" = "" ]; then + if [ -e "~/.ssh-agent.sh" ]; then + rm -f ~/.ssh-agent.sh + fi + ssh-agent | grep -v echo >&~/.ssh-agent.sh + fi + + test -e ~/.ssh-agent.sh && source ~/.ssh-agent.sh + ssh-add -l > /dev/null || ssh-add +} +test -e ~/.ssh-agent.sh && source ~/.ssh-agent.sh diff --git a/shell/bashrc.d/04-prompt.sh b/shell/bashrc.d/04-prompt.sh new file mode 100644 index 0000000..e018ca4 --- /dev/null +++ b/shell/bashrc.d/04-prompt.sh @@ -0,0 +1,69 @@ +RED=$(tput setaf 1) +GREEN=$(tput setaf 2) +YELLOW=$(tput setaf 3) +BLUE=$(tput setaf 4) +MAGENTA=$(tput setaf 5) +ITALIC=$(tput sitm) +RESET=$(tput sgr0) + +format_command_time() { + local x="$1" + local ms="$((x % 1000))" + x="$((x / 1000))" + local sec="$((x % 60))" + x="$((x / 60))" + local min="$((x % 60))" + x="$((x / 60))" + local hour="$((x % 24))" + local day="$((x / 24))" + local timestr + if [ "$day" -gt 0 ]; then + timestr="${day}d " + fi + if [ "$hour" -gt 0 ]; then + timestr="$timestr${hour}h " + fi + if [ "$min" -gt 0 ]; then + timestr="$timestr${min}m " + fi + if [ "$sec" -gt 0 ]; then + timestr="$timestr${sec}s " + fi + timestr="$timestr${ms}ms" + printf '%s' "$timestr" +} + +last_command_timer() { + last_command_start=${last_command_start:-$(date +%s%3N)} +} + +set_prompt() { + if [ $? -eq 0 ]; then + prompt_color="$GREEN" + else + prompt_color="$RED" + fi + if [ -n "$last_command_start" ]; then + last_command_length=$(format_command_time "$(($(date +%s%3N) - last_command_start))") + unset last_command_start + last_command_stats="$ITALIC${MAGENTA}Completed in $last_command_length.$RESET\n" + else + last_command_stats= + fi + git_branch=$(git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/') + if [ -n "$git_branch" ]; then + local git_status + git_status=$(git status --porcelain) + if [ -n "$git_status" ]; then + git_symbol=" $RED " + else + git_symbol=" $GREEN " + fi + else + git_symbol= + fi + PS1="\n$last_command_stats\[$BLUE\]\w\[$RESET\]$git_symbol\[$YELLOW\]$git_branch\[$RESET\]\n\[$prompt_color\]❯\[$RESET\] " +} + +trap 'last_command_timer' DEBUG +PROMPT_COMMAND=set_prompt diff --git a/shell/bashrc.d/99-load-tmux.sh b/shell/bashrc.d/99-load-tmux.sh new file mode 100644 index 0000000..8bf8559 --- /dev/null +++ b/shell/bashrc.d/99-load-tmux.sh @@ -0,0 +1,20 @@ +#!/usr/bin/env bash + +if command -v tmux &> /dev/null && [ -n "$PS1" ] && [[ ! "$TERM" =~ screen ]] && [[ ! "$TERM" =~ linux ]] && [ -z "$TMUX" ]; then + exec tmux +fi + +# robot quote +if [ -x "$(command -v botsay)" ]; then + len=1642 #$(jq '. | length' ~/skynet/quotes.json) + idx=$(( RANDOM % len)) + quote=() + while read -r value; do + quote+=("$value") + done < <(jq -r ".[$idx] | .quoteText, .quoteAuthor" ~/skynet/shell/quotes.json) + quoteText="${quote[0]}" + if [ -n "${quote[1]}" ]; then + quoteText="$quoteText --${quote[1]}" + fi + echo "$quoteText" | botsay -c - +fi diff --git a/shell/quotes.json b/shell/quotes.json new file mode 100644 index 0000000..b1c90af --- /dev/null +++ b/shell/quotes.json @@ -0,0 +1,6570 @@ +[ + { + "quoteText": "A beautiful thing is never perfect.", + "quoteAuthor": "" + }, + { + "quoteText": "A bend in the road is not the end of the road...unless you fail to make the turn.", + "quoteAuthor": "" + }, + { + "quoteText": "A day of worry is more exhausting than a day of work.", + "quoteAuthor": "John Lubbock" + }, + { + "quoteText": "A dream is your creative vision for your life in the future. You must break out of your current comfort zone and become comfortable with the unfamiliar and the unknown.", + "quoteAuthor": "Denis Waitley" + }, + { + "quoteText": "A failure is a man who has blundered but is not capable of cashing in on the experience.", + "quoteAuthor": "Elbert Hubbard" + }, + { + "quoteText": "A fine quotation is a diamond on the finger of a man of wit, and a pebble in the hand of a fool.", + "quoteAuthor": "Joseph Roux" + }, + { + "quoteText": "A friend is someone who understands your past, believes in your future, and accepts you just the way you are.", + "quoteAuthor": "" + }, + { + "quoteText": "A garden is always a series of losses set against a few triumphs, like life itself.", + "quoteAuthor": "May Sarton" + }, + { + "quoteText": "A gem cannot be polished without friction, nor a man perfected without trials.", + "quoteAuthor": "Chinese proverb" + }, + { + "quoteText": "A goal is a dream with a deadline.", + "quoteAuthor": "Napoleon Hill" + }, + { + "quoteText": "A goal without a plan is just a wish.", + "quoteAuthor": "Larry Elder" + }, + { + "quoteText": "A good decision is based on knowledge and not on numbers.", + "quoteAuthor": "Plato" + }, + { + "quoteText": "A good plan today is better than a perfect plan tomorrow.", + "quoteAuthor": "" + }, + { + "quoteText": "A good rest is half the work.", + "quoteAuthor": "" + }, + { + "quoteText": "A good teacher is like a candle - it consumes itself to light the way for others.", + "quoteAuthor": "" + }, + { + "quoteText": "A hero is no braver than an ordinary man, but he is braver five minutes longer.", + "quoteAuthor": "Ralph Waldo Emerson" + }, + { + "quoteText": "A house divided against itself cannot stand.", + "quoteAuthor": "Abraham Lincoln" + }, + { + "quoteText": "A jug fills drop by drop.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "A leader is best when people barely know he exists, when his work is done, his aim fulfilled, they will say: we did it ourselves.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "A leader or a man of action in a crisis almost always acts subconsciously and then thinks of the reasons for his action.", + "quoteAuthor": "Jawaharlal Nehru" + }, + { + "quoteText": "A life spent making mistakes is not only more honourable but more useful than a life spent in doing nothing.", + "quoteAuthor": "Bernard Shaw" + }, + { + "quoteText": "A life spent making mistakes is not only more honourable, but more useful than a life spent doing nothing.", + "quoteAuthor": "George Bernard Shaw" + }, + { + "quoteText": "A little knowledge that acts is worth infinitely more than much knowledge that is idle.", + "quoteAuthor": "Kahlil Gibran" + }, + { + "quoteText": "A little more persistence, a little more effort, and what seemed hopeless failure may turn to glorious success.", + "quoteAuthor": "Elbert Hubbard" + }, + { + "quoteText": "A lot of people give up just before theyre about to make it. You know you never know when that next obstacle is going to be the last one.", + "quoteAuthor": "Chuck Norris" + }, + { + "quoteText": "A lot of times people look at the negative side of what they feel they can't do. I always look on the positive side of what I can do.", + "quoteAuthor": "Chuck Norris" + }, + { + "quoteText": "A man is great by deeds, not by birth.", + "quoteAuthor": "Chanakya" + }, + { + "quoteText": "A man is not old as long as he is seeking something.", + "quoteAuthor": "Edmond Rostand" + }, + { + "quoteText": "A man is not where he lives but where he loves.", + "quoteAuthor": "" + }, + { + "quoteText": "A man may fulfil the object of his existence by asking a question he cannot answer, and attempting a task he cannot achieve.", + "quoteAuthor": "Oliver Holmes" + }, + { + "quoteText": "A man of ability and the desire to accomplish something can do anything.", + "quoteAuthor": "Donald Kircher" + }, + { + "quoteText": "A man sees in the world what he carries in his heart.", + "quoteAuthor": "Goethe" + }, + { + "quoteText": "A man should look for what is, and not for what he thinks should be.", + "quoteAuthor": "Albert Einstein" + }, + { + "quoteText": "A man who doesn't trust himself can never really trust anyone else.", + "quoteAuthor": "Cardinal Retz" + }, + { + "quoteText": "A man's dreams are an index to his greatness.", + "quoteAuthor": "Zadok Rabinowitz" + }, + { + "quoteText": "A person who never made a mistake never tried anything new.", + "quoteAuthor": "Albert Einstein" + }, + { + "quoteText": "A prudent question is one half of wisdom.", + "quoteAuthor": "Francis Bacon" + }, + { + "quoteText": "A really great talent finds its happiness in execution.", + "quoteAuthor": "Johann Wolfgang von Goethe" + }, + { + "quoteText": "A rolling stone gathers no moss.", + "quoteAuthor": "Publilius Syrus" + }, + { + "quoteText": "A short saying oft contains much wisdom.", + "quoteAuthor": "Sophocles" + }, + { + "quoteText": "A short saying often contains much wisdom.", + "quoteAuthor": "Sophocles" + }, + { + "quoteText": "A single conversation across the table with a wise person is worth a months study of books.", + "quoteAuthor": "Chinese proverb" + }, + { + "quoteText": "A smile is a light in the window of your face to show your heart is at home.", + "quoteAuthor": "" + }, + { + "quoteText": "A stumble may prevent a fall.", + "quoteAuthor": "" + }, + { + "quoteText": "A subtle thought that is in error may yet give rise to fruitful inquiry that can establish truths of great value.", + "quoteAuthor": "Isaac Asimov" + }, + { + "quoteText": "A successful person is one who can lay a firm foundation with the bricks that others throw at him or her.", + "quoteAuthor": "David Brinkley" + }, + { + "quoteText": "A thing long expected takes the form of the unexpected when at last it comes.", + "quoteAuthor": "Mark Twain" + }, + { + "quoteText": "A thing well said will be wit in all languages.", + "quoteAuthor": "John Dryden" + }, + { + "quoteText": "A true friend is the most precious of all possessions and the one we take the least thought about acquiring.", + "quoteAuthor": "Francois de La Rochefoucauld" + }, + { + "quoteText": "A weed is no more than a flower in disguise.", + "quoteAuthor": "James Lowell" + }, + { + "quoteText": "A wise man can learn more from a foolish question than a fool can learn from a wise answer.", + "quoteAuthor": "Bruce Lee" + }, + { + "quoteText": "A wise man will make more opportunities than he finds.", + "quoteAuthor": "Francis Bacon" + }, + { + "quoteText": "Ability is what you're capable of doing. Motivation determines what you do.Attitude determines how well you do it.", + "quoteAuthor": "Lou Holtz" + }, + { + "quoteText": "Ability will never catch up with the demand for it.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "Absence makes the heart grow fonder.", + "quoteAuthor": "Haynes Bayly" + }, + { + "quoteText": "Accept challenges, so that you may feel the exhilaration of victory.", + "quoteAuthor": "George Patton" + }, + { + "quoteText": "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.", + "quoteAuthor": "Marcus Aurelius" + }, + { + "quoteText": "Act as if what you do makes a difference. It does.", + "quoteAuthor": "William James" + }, + { + "quoteText": "Action is the foundational key to all success.", + "quoteAuthor": "Pablo Picasso" + }, + { + "quoteText": "Action may not always bring happiness, but there is no happiness without action.", + "quoteAuthor": "Benjamin Disraeli" + }, + { + "quoteText": "Action may not always bring happiness; but there is no happiness without action.", + "quoteAuthor": "Benjamin Disraeli" + }, + { + "quoteText": "Action will remove the doubts that theory cannot solve.", + "quoteAuthor": "Tehyi Hsieh" + }, + { + "quoteText": "Adversity causes some men to break, others to break records.", + "quoteAuthor": "William Ward" + }, + { + "quoteText": "Adversity has the effect of eliciting talents, which in prosperous circumstances would have lain dormant.", + "quoteAuthor": "Horace" + }, + { + "quoteText": "Adversity isn't set against you to fail; adversity is a way to build your character so that you can succeed over and over again through perseverance.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "Aerodynamically the bumblebee shouldn't be able to fly, but the bumblebee doesn't know that so it goes on flying anyway.", + "quoteAuthor": "Mary Kay Ash" + }, + { + "quoteText": "Age does not protect you from love. But love, to some extent, protects you from age.", + "quoteAuthor": "Anais Nin" + }, + { + "quoteText": "Aim for success, not perfection. Never give up your right to be wrong, because then you will lose the ability to learn new things and move forward with your life.", + "quoteAuthor": "Dr. David M. Burns" + }, + { + "quoteText": "All I can say about life is, Oh God, enjoy it!", + "quoteAuthor": "Bob Newhart" + }, + { + "quoteText": "All achievements, all earned riches, have their beginning in an idea.", + "quoteAuthor": "Napoleon Hill" + }, + { + "quoteText": "All action results from thought, so it is thoughts that matter.", + "quoteAuthor": "Sai Baba" + }, + { + "quoteText": "All children are artists. The problem is how to remain an artist once he grows up.", + "quoteAuthor": "Pablo Picasso" + }, + { + "quoteText": "All difficult things have their origin in that which is easy, and great things in that which is small.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "All difficult things have their origin in that which is easy, and great things in that which is small.", + "quoteAuthor": "Lao-Tzu" + }, + { + "quoteText": "All fixed set patterns are incapable of adaptability or pliability. The truth is outside of all fixed patterns.", + "quoteAuthor": "Bruce Lee" + }, + { + "quoteText": "All great achievements require time.", + "quoteAuthor": "Maya Angelou" + }, + { + "quoteText": "All great men are gifted with intuition. They know without reasoning or analysis, what they need to know.", + "quoteAuthor": "Alexis Carrel" + }, + { + "quoteText": "All is flux; nothing stays still.", + "quoteAuthor": "Heraclitus" + }, + { + "quoteText": "All know the way; few actually walk it.", + "quoteAuthor": "Bodhidharma" + }, + { + "quoteText": "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.", + "quoteAuthor": "Albert Camus" + }, + { + "quoteText": "All men who have achieved great things have been great dreamers.", + "quoteAuthor": "Orison Marden" + }, + { + "quoteText": "All our knowledge begins with the senses, proceeds then to the understanding, and ends with reason. There is nothing higher than reason.", + "quoteAuthor": "Immanuel Kant" + }, + { + "quoteText": "All our knowledge has its origins in our perceptions.", + "quoteAuthor": "Leonardo da Vinci" + }, + { + "quoteText": "All our talents increase in the using, and the every faculty, both good and bad, strengthen by exercise.", + "quoteAuthor": "Anne Bronte" + }, + { + "quoteText": "All perceiving is also thinking, all reasoning is also intuition, all observation is also invention.", + "quoteAuthor": "Rudolf Arnheim" + }, + { + "quoteText": "All seasons are beautiful for the person who carries happiness within.", + "quoteAuthor": "Horace Friess" + }, + { + "quoteText": "All serious daring starts from within.", + "quoteAuthor": "Harriet Beecher Stowe" + }, + { + "quoteText": "All that is necessary is to accept the impossible, do without the indispensable, and bear the intolerable.", + "quoteAuthor": "Kathleen Norris" + }, + { + "quoteText": "All that we are is the result of what we have thought. The mind is everything. What we think we become.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "All the flowers of all the tomorrows are in the seeds of today.", + "quoteAuthor": "" + }, + { + "quoteText": "All the great performers I have worked with are fuelled by a personal dream.", + "quoteAuthor": "John Eliot" + }, + { + "quoteText": "All the world is a stage, And all the men and women merely players.They have their exits and entrances; Each man in his time plays many parts.", + "quoteAuthor": "William Shakespeare" + }, + { + "quoteText": "All things change; nothing perishes.", + "quoteAuthor": "Ovid" + }, + { + "quoteText": "All truths are easy to understand once they are discovered; the point is to discover them.", + "quoteAuthor": "Galileo Galilei" + }, + { + "quoteText": "Allow the world to live as it chooses, and allow yourself to live as you choose.", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "Almost everything comes from nothing.", + "quoteAuthor": "Henri Amiel" + }, + { + "quoteText": "Although there may be tragedy in your life, there's always a possibility to triumph. It doesn't matter who you are, where you come from. The ability to triumph begins with you. Always.", + "quoteAuthor": "Oprah Winfrey" + }, + { + "quoteText": "Always be mindful of the kindness and not the faults of others.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "Always be smarter than the people who hire you.", + "quoteAuthor": "Lena Horne" + }, + { + "quoteText": "Always be yourself, express yourself, have faith in yourself, do not go out and look for a successful personality and duplicate it.", + "quoteAuthor": "Bruce Lee" + }, + { + "quoteText": "Always bear in mind that your own resolution to succeed is more important than any one thing.", + "quoteAuthor": "Abraham Lincoln" + }, + { + "quoteText": "Always do your best. What you plant now, you will harvest later.", + "quoteAuthor": "Og Mandino" + }, + { + "quoteText": "Always seek out the seed of triumph in every adversity.", + "quoteAuthor": "Og Mandino" + }, + { + "quoteText": "Always tell the truth. That way, you don't have to remember what you said.", + "quoteAuthor": "Mark Twain" + }, + { + "quoteText": "An ant on the move does more than a dozing ox", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "An idea that is developed and put into action is more important than an idea that exists only as an idea.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "An invasion of armies can be resisted, but not an idea whose time has come.", + "quoteAuthor": "Victor Hugo" + }, + { + "quoteText": "An invincible determination can accomplish almost anything and in this lies the great distinction between great men and little men.", + "quoteAuthor": "Thomas Fuller" + }, + { + "quoteText": "An obstacle may be either a stepping stone or a stumbling block.", + "quoteAuthor": "" + }, + { + "quoteText": "An optimist is a person who sees a green light everywhere, while the pessimist sees only the red spotlight... The truly wise person is colour-blind.", + "quoteAuthor": "Albert Schweitzer" + }, + { + "quoteText": "An ounce of emotion is equal to a ton of facts.", + "quoteAuthor": "John Junor" + }, + { + "quoteText": "And as we let our own light shine, we unconsciously give other people permission to do the same.", + "quoteAuthor": "Nelson Mandela" + }, + { + "quoteText": "Anticipate the difficult by managing the easy.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "Any of us can achieve virtue, if by virtue we merely mean the avoidance of the vices that do not attract us.", + "quoteAuthor": "Robert Lynd" + }, + { + "quoteText": "Anybody can make history. Only a great man can write it.", + "quoteAuthor": "Oscar Wilde" + }, + { + "quoteText": "Anyone who doesn't take truth seriously in small matters cannot be trusted in large ones either.", + "quoteAuthor": "Albert Einstein" + }, + { + "quoteText": "Anything you really want, you can attain, if you really go after it.", + "quoteAuthor": "Wayne Dyer" + }, + { + "quoteText": "Appreciation can make a day, even change a life. Your willingness to put it into words is all that is necessary.", + "quoteAuthor": "Margaret Cousins" + }, + { + "quoteText": "Appreciation is the highest form of prayer, for it acknowledges the presence of good wherever you shine the light of your thankful thoughts.", + "quoteAuthor": "Alan Cohen" + }, + { + "quoteText": "Argue for your limitations, and sure enough they're yours.", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "Argue for your limitations, and sure enough theyre yours.", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "Arriving at one point is the starting point to another.", + "quoteAuthor": "John Dewey" + }, + { + "quoteText": "Arrogance and rudeness are training wheels on the bicycle of life - for weak people who cannot keep their balance without them.", + "quoteAuthor": "Laura Teresa Marquez" + }, + { + "quoteText": "As an organizer I start from where the world is, as it is, not as I would like it to be.", + "quoteAuthor": "Saul Alinsky" + }, + { + "quoteText": "As long as your going to be thinking anyway, think big.", + "quoteAuthor": "Donald Trump" + }, + { + "quoteText": "As our case is new, we must think and act anew.", + "quoteAuthor": "Abraham Lincoln" + }, + { + "quoteText": "As the rest of the world is walking out the door, your best friends are the ones walking in.", + "quoteAuthor": "" + }, + { + "quoteText": "As we are liberated from our own fear, our presence automatically liberates others.", + "quoteAuthor": "Nelson Mandela" + }, + { + "quoteText": "As we express our gratitude, we must never forget that the highest appreciation is not to utter words, but to live by them.", + "quoteAuthor": "John F. Kennedy" + }, + { + "quoteText": "As we grow as unique persons, we learn to respect the uniqueness of others.", + "quoteAuthor": "Robert Schuller" + }, + { + "quoteText": "As we risk ourselves, we grow. Each new experience is a risk.", + "quoteAuthor": "Fran Watson" + }, + { + "quoteText": "As you think, so shall you become.", + "quoteAuthor": "Bruce Lee" + }, + { + "quoteText": "Ask yourself the secret of your success. Listen to your answer, and practice it.", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "At the center of your being you have the answer; you know who you are and you know what you want.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "Autumn is a second spring when every leaf is a flower.", + "quoteAuthor": "Albert Camus" + }, + { + "quoteText": "Bad things are not the worst things that can happen to us. Nothing is the worst thing that can happen to us!", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "Bad times have a scientific value. These are occasions a good learner would not miss.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "Be a good listener. Your ears will never get you in trouble.", + "quoteAuthor": "Frank Tyger" + }, + { + "quoteText": "Be as you wish to seem.", + "quoteAuthor": "Socrates" + }, + { + "quoteText": "Be faithful in small things because it is in them that your strength lies.", + "quoteAuthor": "Mother Teresa" + }, + { + "quoteText": "Be gentle first with yourself if you wish to be gentle with others.", + "quoteAuthor": "Lama Yeshe" + }, + { + "quoteText": "Be glad of life because it gives you the chance to love, to work, to play, and to look up at the stars.", + "quoteAuthor": "Henry Van Dyke" + }, + { + "quoteText": "Be great in act, as you have been in thought.", + "quoteAuthor": "William Shakespeare" + }, + { + "quoteText": "Be here now. Be someplace else later. Is that so complicated?", + "quoteAuthor": "David Bader" + }, + { + "quoteText": "Be kind whenever possible. It is always possible.", + "quoteAuthor": "Dalai Lama" + }, + { + "quoteText": "Be less curious about people and more curious about ideas.", + "quoteAuthor": "Marie Curie" + }, + { + "quoteText": "Be like the flower, turn your face to the sun.", + "quoteAuthor": "Kahlil Gibran" + }, + { + "quoteText": "Be miserable. Or motivate yourself. Whatever has to be done, it's always your choice.", + "quoteAuthor": "Wayne Dyer" + }, + { + "quoteText": "Be not afraid of greatness: some are born great, some achieve greatness, and some have greatness thrust upon them.", + "quoteAuthor": "William Shakespeare" + }, + { + "quoteText": "Be not angry that you cannot make others as you wish them to be, since you cannot make yourself as you wish to be.", + "quoteAuthor": "Thomas Kempis" + }, + { + "quoteText": "Be slow of tongue and quick of eye.", + "quoteAuthor": "Cervantes" + }, + { + "quoteText": "Be sure you put your feet in the right place, then stand firm.", + "quoteAuthor": "Abraham Lincoln" + }, + { + "quoteText": "Be thankful when you don't know something for it gives you the opportunity to learn.", + "quoteAuthor": "" + }, + { + "quoteText": "Be the change that you want to see in the world.", + "quoteAuthor": "Mohandas Gandhi" + }, + { + "quoteText": "Be the chief but never the lord.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "Be what you are. This is the first step toward becoming better than you are.", + "quoteAuthor": "Julius Charles Hare" + }, + { + "quoteText": "Be your own hero, it's cheaper than a movie ticket.", + "quoteAuthor": "Doug Horton" + }, + { + "quoteText": "Be yourself; everyone else is already taken.", + "quoteAuthor": "Oscar Wilde" + }, + { + "quoteText": "Beauty is not in the face; beauty is a light in the heart.", + "quoteAuthor": "Kahlil Gibran" + }, + { + "quoteText": "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.", + "quoteAuthor": "Winston Churchill" + }, + { + "quoteText": "Before you put on a frown, make absolutely sure there are no smiles available.", + "quoteAuthor": "Jim Beggs" + }, + { + "quoteText": "Begin at once to live and count each separate day as a separate life.", + "quoteAuthor": "Seneca" + }, + { + "quoteText": "Begin to weave and God will give you the thread.", + "quoteAuthor": "German proverb" + }, + { + "quoteText": "Begin, be bold, and venture to be wise.", + "quoteAuthor": "Horace" + }, + { + "quoteText": "Being angry never solves anything.", + "quoteAuthor": "Catherine Pulsifer" + }, + { + "quoteText": "Being in humaneness is good. If we select other goodness and thus are far apart from humaneness, how can we be the wise?", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "Being right is highly overrated. Even a stopped clock is right twice a day.", + "quoteAuthor": "" + }, + { + "quoteText": "Belief consists in accepting the affirmations of the soul; Unbelief, in denying them.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "Believe deep down in your heart that you're destined to do great things.", + "quoteAuthor": "Joe Paterno" + }, + { + "quoteText": "Better be ignorant of a matter than half know it.", + "quoteAuthor": "Publilius Syrus" + }, + { + "quoteText": "Better than a thousand hollow words is one word that brings peace.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "Better than a thousand hollow words, is one word that brings peace.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "Better to have loved and lost, than to have never loved at all.", + "quoteAuthor": "St. Augustine" + }, + { + "quoteText": "Beware of missing chances; otherwise it may be altogether too late some day.", + "quoteAuthor": "Franz Liszt" + }, + { + "quoteText": "Beware of the half truth. You may have gotten hold of the wrong half.", + "quoteAuthor": "" + }, + { + "quoteText": "Bite off more than you can chew, then chew it.", + "quoteAuthor": "Ella Williams" + }, + { + "quoteText": "Blaze with the fire that is never extinguished.", + "quoteAuthor": "Luisa Sigea" + }, + { + "quoteText": "Blessed is the man who expects nothing, for he shall never be disappointed.", + "quoteAuthor": "Alexander Pope" + }, + { + "quoteText": "Blessed is the person who is too busy to worry in the daytime, and too sleepy to worry at night.", + "quoteAuthor": "Leo Aikman" + }, + { + "quoteText": "Bodily exercise, when compulsory, does no harm to the body; but knowledge which is acquired under compulsion obtains no hold on the mind.", + "quoteAuthor": "Plato" + }, + { + "quoteText": "Bold is not the act of foolishness but the attribute and inner strength to act when others will not so as to move forward not backward.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "Build a better mousetrap and the world will beat a path to your door.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "By accepting yourself and being fully what you are, your presence can make others happy.", + "quoteAuthor": "Jane Roberts" + }, + { + "quoteText": "By believing passionately in something that does not yet exist, we create it.", + "quoteAuthor": "Nikos Kazantzakis" + }, + { + "quoteText": "By going beyond your own problems and taking care of others, you gain inner strength, self-confidence, courage, and a greater sense of calm.", + "quoteAuthor": "Dalai Lama" + }, + { + "quoteText": "By letting it go it all gets done. The world is won by those who let it go. But when you try and try. The world is beyond the winning.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "By living deeply in the present moment we can understand the past better and we can prepare for a better future.", + "quoteAuthor": "Thich Nhat Hanh" + }, + { + "quoteText": "By nature man hates change; seldom will he quit his old home till it has actually fallen around his ears.", + "quoteAuthor": "Thomas Carlyle" + }, + { + "quoteText": "Can miles truly separate you from friends... If you want to be with someone you love, aren't you already there?", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "Can you imagine what I would do if I could do all I can?", + "quoteAuthor": "Sun Tzu" + }, + { + "quoteText": "Chance is always powerful. Let your hook be always cast; in the pool where you least expect it, there will be a fish.", + "quoteAuthor": "Ovid" + }, + { + "quoteText": "Change in all things is sweet.", + "quoteAuthor": "Aristotle" + }, + { + "quoteText": "Change is the law of life. And those who look only to the past or present are certain to miss the future.", + "quoteAuthor": "John Kennedy" + }, + { + "quoteText": "Change will not come if we wait for some other person or some other time. We are the ones weve been waiting for. We are the change that we seek.", + "quoteAuthor": "Barack Obama" + }, + { + "quoteText": "Change your thoughts, change your life!", + "quoteAuthor": "" + }, + { + "quoteText": "Change your words. Change your world.", + "quoteAuthor": "" + }, + { + "quoteText": "Chaos and Order are not enemies, only opposites.", + "quoteAuthor": "Richard Garriott" + }, + { + "quoteText": "Chaos is inherent in all compounded things. Strive on with diligence.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "Character cannot be developed in ease and quiet. Only through experience of trial and suffering can the soul be strengthened, vision cleared, ambition inspired, and success achieved.", + "quoteAuthor": "Helen Keller" + }, + { + "quoteText": "Character develops itself in the stream of life.", + "quoteAuthor": "Johann Wolfgang von Goethe" + }, + { + "quoteText": "Character is like a tree and reputation like a shadow. The shadow is what we think of it; the tree is the real thing.", + "quoteAuthor": "Abraham Lincoln" + }, + { + "quoteText": "Cherish your visions and your dreams as they are the children of your soul, the blueprints of your ultimate achievements.", + "quoteAuthor": "Napoleon Hill" + }, + { + "quoteText": "Cherish your visions and your dreams as they are the children of your soul; the blueprints of your ultimate achievements.", + "quoteAuthor": "Napoleon Hill" + }, + { + "quoteText": "Choose a job you love, and you will never have to work a day in your life.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "Compassion and happiness are not a sign of weakness but a sign of strength.", + "quoteAuthor": "Dalai Lama" + }, + { + "quoteText": "Complaining doesn't change a thing only taking action does.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "Conflict is the gadfly of thought. It stirs us to observation and memory. It instigates to invention. It shocks us out of sheeplike passivity, and sets us at noting and contriving.", + "quoteAuthor": "John Dewey" + }, + { + "quoteText": "Consider how hard it is to change yourself and you'll understand what little chance you have in trying to change others.", + "quoteAuthor": "Jacob Braude" + }, + { + "quoteText": "Consider that not only do negative thoughts and emotions destroy our experience of peace, they also undermine our health.", + "quoteAuthor": "Dalai Lama" + }, + { + "quoteText": "Constant kindness can accomplish much. As the sun makes ice melt, kindness causes misunderstanding, mistrust, and hostility to evaporate.", + "quoteAuthor": "Albert Schweitzer" + }, + { + "quoteText": "Continuous effort--not strength or intelligence--is the key to unlocking our potential.", + "quoteAuthor": "Winston Churchill" + }, + { + "quoteText": "Correction does much, but encouragement does more.", + "quoteAuthor": "Johann Wolfgang von Goethe" + }, + { + "quoteText": "Count your joys instead of your woes. Count your friends instead of your foes.", + "quoteAuthor": "" + }, + { + "quoteText": "Courage is going from failure to failure without losing enthusiasm.", + "quoteAuthor": "Winston Churchill" + }, + { + "quoteText": "Courage is not about taking risks unknowingly but putting your own being in front of challenges that others may not be able to.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "Courage is not the absence of fear, but simply moving on with dignity despite that fear.", + "quoteAuthor": "Pat Riley" + }, + { + "quoteText": "Courage is the discovery that you may not win, and trying when you know you can lose.", + "quoteAuthor": "" + }, + { + "quoteText": "Courage is what it takes to stand up and speak; courage is also what it takes to sit down and listen.", + "quoteAuthor": "Winston Churchill" + }, + { + "quoteText": "Creativity comes from trust. Trust your instincts. And never hope more than you work.", + "quoteAuthor": "Rita Mae Brown" + }, + { + "quoteText": "Criticism is something you can easily avoid by saying nothing, doing nothing, and being nothing.", + "quoteAuthor": "Aristotle" + }, + { + "quoteText": "Decision is a risk rooted in the courage of being free.", + "quoteAuthor": "Paul Tillich" + }, + { + "quoteText": "Deep listening is miraculous for both listener and speaker.When someone receives us with open-hearted, non-judging, intensely interested listening, our spirits expand.", + "quoteAuthor": "Sue Patton Thoele" + }, + { + "quoteText": "Difficulties are meant to rouse, not discourage. The human spirit is to grow strong by conflict.", + "quoteAuthor": "William Channing" + }, + { + "quoteText": "Difficulties are things that show a person what they are.", + "quoteAuthor": "Epictetus" + }, + { + "quoteText": "Difficulties increase the nearer we get to the goal.", + "quoteAuthor": "Johann Wolfgang von Goethe" + }, + { + "quoteText": "Discovery consists of seeing what everybody has seen and thinking what nobody else has thought.", + "quoteAuthor": "Jonathan Swift" + }, + { + "quoteText": "Divide each difficulty into as many parts as is feasible and necessary to resolve it.", + "quoteAuthor": "Rene Descartes" + }, + { + "quoteText": "Do good by stealth, and blush to find it fame.", + "quoteAuthor": "Alexander Pope" + }, + { + "quoteText": "Do more than dream: work.", + "quoteAuthor": "William Arthur Ward" + }, + { + "quoteText": "Do not be embarrassed by your mistakes. Nothing can teach us better than our understanding of them. This is one of the best ways of self-education.", + "quoteAuthor": "Thomas Carlyle" + }, + { + "quoteText": "Do not be too timid and squeamish about your reactions. All life is an experiment. The more experiments you make the better.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "Do not dwell in the past, do not dream of the future, concentrate the mind on the present moment.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "Do not expect the world to look bright, if you habitually wear gray-brown glasses.", + "quoteAuthor": "Tomas Eliot" + }, + { + "quoteText": "Do not follow where the path may lead. Go, instead, where there is no path and leave a trail.", + "quoteAuthor": "Ralph Waldo Emerson" + }, + { + "quoteText": "Do not give your attention to what others do or fail to do; give it to what you do or fail to do.", + "quoteAuthor": "Dhammapada" + }, + { + "quoteText": "Do not go where the path may lead, go instead where there is no path and leave a trail.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "Do not overrate what you have received, nor envy others. He who envies others does not obtain peace of mind.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "Do not turn back when you are just at the goal.", + "quoteAuthor": "Publilius Syrus" + }, + { + "quoteText": "Do not wait for leaders; do it alone, person to person.", + "quoteAuthor": "Mother Teresa" + }, + { + "quoteText": "Do not waste yourself in rejection, nor bark against the bad, but chant the beauty of the good.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "Do one thing every day that scares you.", + "quoteAuthor": "Eleanor Roosevelt" + }, + { + "quoteText": "Do something wonderful, people may imitate it.", + "quoteAuthor": "Albert Schweitzer" + }, + { + "quoteText": "Do what you can. Want what you have. Be who you are.", + "quoteAuthor": "Forrest Church" + }, + { + "quoteText": "Do you want to know who you are? Don't ask. Act! Action will delineate and define you.", + "quoteAuthor": "Thomas Jefferson" + }, + { + "quoteText": "Do, or do not. There is no try.", + "quoteAuthor": "Yoda" + }, + { + "quoteText": "Doing nothing is better than being busy doing nothing.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "Doing what you love is the cornerstone of having abundance in your life.", + "quoteAuthor": "Wayne Dyer" + }, + { + "quoteText": "Don't be afraid to go out on a limb. That's where the fruit is.", + "quoteAuthor": "H. Jackson Browne" + }, + { + "quoteText": "Don't be dismayed by good-byes. A farewell is necessary before you can meet again. And meeting again, after moments or lifetimes, is certain for those who are friends.", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "Don't be pushed by your problems; be led by your dreams.", + "quoteAuthor": "" + }, + { + "quoteText": "Don't believe what your eyes are telling you. All they show is limitation. Look with your understanding, find out what you already know, and you'll see the way to fly.", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "Don't compromise yourself. You are all you've got.", + "quoteAuthor": "Janis Joplin" + }, + { + "quoteText": "Don't cry because it's over. Smile because it happened.", + "quoteAuthor": "Dr. Seuss" + }, + { + "quoteText": "Don't fear failure so much that you refuse to try new things. The saddest summary of life contains three descriptions: could have, might have, and should have.", + "quoteAuthor": "" + }, + { + "quoteText": "Don't focus on making the right decision, focus on making the decision the right one.", + "quoteAuthor": "" + }, + { + "quoteText": "Don't frown because you never know who is falling in love with your smile.", + "quoteAuthor": "Sinvyest Tan" + }, + { + "quoteText": "Don't judge each day by the harvest you reap but by the seeds that you plant.", + "quoteAuthor": "Robert Stevenson" + }, + { + "quoteText": "Don't judge each day by the harvest you reap but by the seeds you plant.", + "quoteAuthor": "Robert Stevenson" + }, + { + "quoteText": "Don't leave a stone unturned. It's always something, to know you have done the most you could.", + "quoteAuthor": "Charles Dickens" + }, + { + "quoteText": "Don't let today's disappointments cast a shadow on tomorrow's dreams.", + "quoteAuthor": "" + }, + { + "quoteText": "Don't let what you can't do stop you from doing what you can do.", + "quoteAuthor": "" + }, + { + "quoteText": "Don't look back. Something might be gaining on you.", + "quoteAuthor": "Satchel Paige" + }, + { + "quoteText": "Don't miss all the beautiful colors of the rainbow looking for that pot of gold.", + "quoteAuthor": "" + }, + { + "quoteText": "Don't ruin the present with the ruined past.", + "quoteAuthor": "Ellen Gilchrist" + }, + { + "quoteText": "Don't settle for a relationship that won't let you be yourself.", + "quoteAuthor": "Oprah Winfrey" + }, + { + "quoteText": "Don't smother each other. No one can grow in the shade.", + "quoteAuthor": "Leo F. Buscaglia" + }, + { + "quoteText": "Don't talk about what you have done or what you are going to do.", + "quoteAuthor": "Thomas Jefferson" + }, + { + "quoteText": "Don't think of it as failure. Think of it as time-released success.", + "quoteAuthor": "Robert Orben" + }, + { + "quoteText": "Don't turn away from possible futures before you're certain you don't have anything to learn from them.", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "Don't wait for people to be friendly. Show them how.", + "quoteAuthor": "" + }, + { + "quoteText": "Don't wait for your feelings to change to take the action. Take the action and your feelings will change.", + "quoteAuthor": "Barbara Baron" + }, + { + "quoteText": "Don't wait. The time will never be just right.", + "quoteAuthor": "Napoleon Hill" + }, + { + "quoteText": "Dreams come true. Without that possibility, nature would not incite us to have them.", + "quoteAuthor": "John Updike" + }, + { + "quoteText": "Dreams pass into the reality of action. From the actions stems the dream again; and this interdependence produces the highest form of living.", + "quoteAuthor": "Anais Nin" + }, + { + "quoteText": "Each day can be one of triumph if you keep up your interests.", + "quoteAuthor": "George Matthew Adams" + }, + { + "quoteText": "Each day provides its own gifts.", + "quoteAuthor": "Marcus Aurelius" + }, + { + "quoteText": "Each man has his own vocation; his talent is his call. There is one direction in which all space is open to him.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "Each misfortune you encounter will carry in it the seed of tomorrows good luck.", + "quoteAuthor": "Og Mandino" + }, + { + "quoteText": "Each time we face a fear, we gain strength, courage, and confidence in the doing.", + "quoteAuthor": "" + }, + { + "quoteText": "Edison failed 10,000 times before he made the electric light. Do not be discouraged if you fail a few times.", + "quoteAuthor": "Napoleon Hill" + }, + { + "quoteText": "Efficiency is doing things right; effectiveness is doing the right things.", + "quoteAuthor": "Peter Drucker" + }, + { + "quoteText": "Either I will find a way, or I will make one.", + "quoteAuthor": "Philip Sidney" + }, + { + "quoteText": "Either you run the day or the day runs you.", + "quoteAuthor": "Jim Rohn" + }, + { + "quoteText": "Enjoy the little things, for one day you may look back and realize they were the big things.", + "quoteAuthor": "Robert Brault" + }, + { + "quoteText": "Error is discipline through which we advance.", + "quoteAuthor": "Channing" + }, + { + "quoteText": "Every action of our lives touches on some chord that will vibrate in eternity.", + "quoteAuthor": "Edwin Chapin" + }, + { + "quoteText": "Every adversity, every failure, every heartache carries with it the seed of an equal or greater benefit.", + "quoteAuthor": "Napoleon Hill" + }, + { + "quoteText": "Every artist dips his brush in his own soul, and paints his own nature into his pictures.", + "quoteAuthor": "Henry Ward Beecher" + }, + { + "quoteText": "Every day may not be good, but there's something good in every day.", + "quoteAuthor": "" + }, + { + "quoteText": "Every gift from a friend is a wish for your happiness.", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "Every great advance in science has issued from a new audacity of the imagination.", + "quoteAuthor": "John Dewey" + }, + { + "quoteText": "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.", + "quoteAuthor": "Harriet Tubman" + }, + { + "quoteText": "Every great mistake has a halfway moment, a split second when it can be recalled and perhaps remedied.", + "quoteAuthor": "Pearl Buck" + }, + { + "quoteText": "Every human being is the author of his own health or disease.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "Every man dies. Not every man really lives.", + "quoteAuthor": "" + }, + { + "quoteText": "Every man is a volume if you know how to read him.", + "quoteAuthor": "Channing" + }, + { + "quoteText": "Every man takes the limits of his own field of vision for the limits of the world.", + "quoteAuthor": "Arthur Schopenhauer" + }, + { + "quoteText": "Every new day is another chance to change your life.", + "quoteAuthor": "" + }, + { + "quoteText": "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.", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "Every problem has a gift for you in its hands.", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "Every sixty seconds you spend angry, upset or mad, is a full minute of happiness you'll never get back.", + "quoteAuthor": "" + }, + { + "quoteText": "Every time you smile at someone, it is an action of love, a gift to that person, a beautiful thing.", + "quoteAuthor": "Mother Teresa" + }, + { + "quoteText": "Everyone can taste success when the going is easy, but few know how to taste victory when times get tough.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "Everyone has been made for some particular work, and the desire for that work has been put in every heart.", + "quoteAuthor": "Rumi" + }, + { + "quoteText": "Everyone is a genius at least once a year. A real genius has his original ideas closer together.", + "quoteAuthor": "Georg Lichtenberg" + }, + { + "quoteText": "Everyone should carefully observe which way his heart draws him, and then choose that way with all his strength.", + "quoteAuthor": "Hasidic saying" + }, + { + "quoteText": "Everyone smiles in the same language.", + "quoteAuthor": "" + }, + { + "quoteText": "Everyone thinks of changing the world, but no one thinks of changing himself.", + "quoteAuthor": "Leo Tolstoy" + }, + { + "quoteText": "Everything can be taken from a man but ... the last of the human freedoms - to choose ones attitude in any given set of circumstances, to choose ones own way.", + "quoteAuthor": "Victor Frankl" + }, + { + "quoteText": "Everything has beauty, but not everyone sees it.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "Everything in life is luck.", + "quoteAuthor": "Donald Trump" + }, + { + "quoteText": "Everything in the universe goes by indirection. There are no straight lines.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "Everything is perfect in the universe - even your desire to improve it.", + "quoteAuthor": "Wayne Dyer" + }, + { + "quoteText": "Everything that exists is in a manner the seed of that which will be.", + "quoteAuthor": "Marcus Aurelius" + }, + { + "quoteText": "Everything that happens happens as it should, and if you observe carefully, you will find this to be so.", + "quoteAuthor": "Marcus Aurelius" + }, + { + "quoteText": "Everything that irritates us about others can lead us to a better understanding of ourselves.", + "quoteAuthor": "Carl Jung" + }, + { + "quoteText": "Everything that irritates us about others can lead us to an understanding about ourselves.", + "quoteAuthor": "Carl Jung" + }, + { + "quoteText": "Everything that irritates us about others can lead us to an understanding of ourselves.", + "quoteAuthor": "Carl Jung" + }, + { + "quoteText": "Everything we hear is an opinion, not a fact. Everything we see is a perspective, not the truth.", + "quoteAuthor": "Marcus Aurelius" + }, + { + "quoteText": "Everything you are against weakens you. Everything you are for empowers you.", + "quoteAuthor": "Wayne Dyer" + }, + { + "quoteText": "Everything you can imagine is real.", + "quoteAuthor": "Pablo Picasso" + }, + { + "quoteText": "Example has more followers than reason.", + "quoteAuthor": "Christian Bovee" + }, + { + "quoteText": "Excellence is not a skill. It is an attitude.", + "quoteAuthor": "Ralph Marston" + }, + { + "quoteText": "Excellence is to do a common thing in an uncommon way.", + "quoteAuthor": "Booker Washington" + }, + { + "quoteText": "Experience can only be gained by doing not by thinking or dreaming.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "Experience is not what happens to a man. It is what a man does with what happens to him.", + "quoteAuthor": "Aldous Huxley" + }, + { + "quoteText": "Experience is simply the name we give our mistakes.", + "quoteAuthor": "Oscar Wilde" + }, + { + "quoteText": "Experience keeps a dear school, but fools will learn in no other.", + "quoteAuthor": "Benjamin Franklin" + }, + { + "quoteText": "Face your deficiencies and acknowledge them; but do not let them master you. Let them teach you patience, sweetness, insight.", + "quoteAuthor": "Helen Keller" + }, + { + "quoteText": "Failure doesn't mean you are a failure it just means you haven't succeeded yet.", + "quoteAuthor": "Robert Schuller" + }, + { + "quoteText": "Failure will never overtake me if my determination to succeed is strong enough.", + "quoteAuthor": "Og Mandino" + }, + { + "quoteText": "Faith in oneself is the best and safest course.", + "quoteAuthor": "Michelangelo" + }, + { + "quoteText": "Fame usually comes to those who are thinking about something else.", + "quoteAuthor": "Holmes" + }, + { + "quoteText": "Fate is in your hands and no one elses", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "Fear grows in darkness; if you think theres a bogeyman around, turn on the light.", + "quoteAuthor": "Dorothy Thompson" + }, + { + "quoteText": "Fear is a darkroom where negatives develop.", + "quoteAuthor": "Usman Asif" + }, + { + "quoteText": "Fear not for the future, weep not for the past.", + "quoteAuthor": "Percy Shelley" + }, + { + "quoteText": "Fear of failure is one attitude that will keep you at the same point in your life.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "Fears are nothing more than a state of mind.", + "quoteAuthor": "Napoleon Hill" + }, + { + "quoteText": "Feeling and longing are the motive forces behind all human endeavor and human creations.", + "quoteAuthor": "Albert Einstein" + }, + { + "quoteText": "Fine words and an insinuating appearance are seldom associated with true virtue", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "First comes thought; then organization of that thought, into ideas and plans; then transformation of those plans into reality. The beginning, as you will observe, is in your imagination.", + "quoteAuthor": "Napoleon Hill" + }, + { + "quoteText": "First say to yourself what you would be; and then do what you have to do.", + "quoteAuthor": "Epictetus" + }, + { + "quoteText": "Flow with whatever is happening and let your mind be free. Stay centred by accepting whatever you are doing. This is the ultimate.", + "quoteAuthor": "Chuang Tzu" + }, + { + "quoteText": "Focusing your life solely on making a buck shows a poverty of ambition. It asks too little of yourself. And it will leave you unfulfilled.", + "quoteAuthor": "Barack Obama" + }, + { + "quoteText": "Follow effective action with quiet reflection. From the quiet reflection will come even more effective action.", + "quoteAuthor": "Peter Drucker" + }, + { + "quoteText": "Follow your instincts. That is where true wisdom manifests itself.", + "quoteAuthor": "Oprah Winfrey" + }, + { + "quoteText": "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.", + "quoteAuthor": "Mary Kay Ash" + }, + { + "quoteText": "For everything that lives is holy, life delights in life.", + "quoteAuthor": "William Blake" + }, + { + "quoteText": "For success, attitude is equally as important as ability.", + "quoteAuthor": "Harry Banks" + }, + { + "quoteText": "Forget about all the reasons why something may not work. You only need to find one good reason why it will.", + "quoteAuthor": "Robert Anthony" + }, + { + "quoteText": "Forgiveness does not change the past, but it does enlarge the future.", + "quoteAuthor": "Paul Boese" + }, + { + "quoteText": "Forgiveness is choosing to love. It is the first skill of self-giving love.", + "quoteAuthor": "Mohandas Gandhi" + }, + { + "quoteText": "Formula for success: under promise and over deliver.", + "quoteAuthor": "Tom Peters" + }, + { + "quoteText": "Fortune befriends the bold.", + "quoteAuthor": "John Dryden" + }, + { + "quoteText": "Fortune favours the brave.", + "quoteAuthor": "Virgil" + }, + { + "quoteText": "Four steps to achievement: Plan purposefully. Prepare prayerfully. Proceed positively. Pursue persistently.", + "quoteAuthor": "William Arthur Ward" + }, + { + "quoteText": "Freedom is not worth having if it does not connote freedom to err.", + "quoteAuthor": "Mohandas Gandhi" + }, + { + "quoteText": "Freedom is the right to live as we wish.", + "quoteAuthor": "Epictetus" + }, + { + "quoteText": "Freedom is what you do with what's been done to you.", + "quoteAuthor": "Jean-Paul Sartre" + }, + { + "quoteText": "Friends are those rare people who ask how we are and then wait to hear the answer.", + "quoteAuthor": "Ed Cunningham" + }, + { + "quoteText": "Friendship isn't a big thing. It's a million little things.", + "quoteAuthor": "" + }, + { + "quoteText": "Friendship with oneself is all important because without it one cannot be friends with anybody else in the world.", + "quoteAuthor": "Eleanor Roosevelt" + }, + { + "quoteText": "From error to error one discovers the entire truth.", + "quoteAuthor": "Sigmund Freud" + }, + { + "quoteText": "From little acorns mighty oaks do grow.", + "quoteAuthor": "American proverb" + }, + { + "quoteText": "From small beginnings come great things.", + "quoteAuthor": "" + }, + { + "quoteText": "From wonder into wonder existence opens.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "Genius is one percent inspiration and ninety-nine percent perspiration.", + "quoteAuthor": "Thomas Edison" + }, + { + "quoteText": "Genuine love should first be directed at oneself - if we do not love ourselves, how can we love others?", + "quoteAuthor": "Dalai Lama" + }, + { + "quoteText": "Genuine sincerity opens people's hearts, while manipulation causes them to close.", + "quoteAuthor": "Daisaku Ikeda" + }, + { + "quoteText": "Give a man a fish and you feed him for a day. Teach him how to fish and you feed him for a lifetime.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "Give it all you've got because you never know if there's going to be a next time.", + "quoteAuthor": "Danielle Ingrum" + }, + { + "quoteText": "Give me six hours to chop down a tree and I will spend the first four sharpening the axe.", + "quoteAuthor": "Abraham Lincoln" + }, + { + "quoteText": "Give thanks for a little and you will find a lot.", + "quoteAuthor": "Hausa" + }, + { + "quoteText": "Give thanks for the rain of life that propels us to reach new horizons.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "Give whatever you are doing and whoever you are with the gift of your attention.", + "quoteAuthor": "Jim Rohn" + }, + { + "quoteText": "Giving up doesn't always mean you are weak. Sometimes it means that you are strong enough to let go.", + "quoteAuthor": "" + }, + { + "quoteText": "Giving up doesn't always mean you are weak; sometimes it means that you are strong enough to let go.", + "quoteAuthor": "" + }, + { + "quoteText": "Go for it now. The future is promised to no one.", + "quoteAuthor": "Wayne Dyer" + }, + { + "quoteText": "Go put your creed into the deed. Nor speak with double tongue.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "Go to your bosom: Knock there, and ask your heart what it doth know.", + "quoteAuthor": "William Shakespeare" + }, + { + "quoteText": "Goals are the fuel in the furnace of achievement.", + "quoteAuthor": "Brian Tracy" + }, + { + "quoteText": "God always takes the simplest way.", + "quoteAuthor": "Albert Einstein" + }, + { + "quoteText": "God has given you one face, and you make yourself another.", + "quoteAuthor": "William Shakespeare" + }, + { + "quoteText": "Good actions give strength to ourselves and inspire good actions in others.", + "quoteAuthor": "Plato" + }, + { + "quoteText": "Good advice is always certain to be ignored, but that's no reason not to give it.", + "quoteAuthor": "Agatha Christie" + }, + { + "quoteText": "Good instincts usually tell you what to do long before your head has figured it out.", + "quoteAuthor": "Michael Burke" + }, + { + "quoteText": "Good luck is another name for tenacity of purpose.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "Good people are good because they've come to wisdom through failure. We get very little wisdom from success, you know.", + "quoteAuthor": "William Saroyan" + }, + { + "quoteText": "Good thoughts are no better than good dreams, unless they be executed.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "Good timber does not grow with ease; the stronger the wind, the stronger the trees.", + "quoteAuthor": "J. Willard Marriott" + }, + { + "quoteText": "Gratitude is not only the greatest of virtues, but the paren't of all the others.", + "quoteAuthor": "Cicero" + }, + { + "quoteText": "Gratitude is riches. Complaint is poverty.", + "quoteAuthor": "Doris Day" + }, + { + "quoteText": "Gratitude is the fairest blossom which springs from the soul.", + "quoteAuthor": "Henry Beecher" + }, + { + "quoteText": "Gratitude makes sense of our past, brings peace for today, and creates a vision for tomorrow.", + "quoteAuthor": "Melody Beattie" + }, + { + "quoteText": "Great acts are made up of small deeds.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "Great are they who see that spiritual is stronger than any material force, that thoughts rule the world.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "Great ideas often receive violent opposition from mediocre minds.", + "quoteAuthor": "Albert Einstein" + }, + { + "quoteText": "Great indeed is the sublimity of the Creative, to which all beings owe their beginning and which permeates all heaven.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "Great is the art of beginning, but greater is the art of ending.", + "quoteAuthor": "Lazurus Long" + }, + { + "quoteText": "Great talent finds happiness in execution.", + "quoteAuthor": "Johann Wolfgang von Goethe" + }, + { + "quoteText": "Growth itself contains the germ of happiness.", + "quoteAuthor": "Pearl Buck" + }, + { + "quoteText": "Happiness cannot be travelled to, owned, earned, worn or consumed. Happiness is the spiritual experience of living every minute with love, grace and gratitude.", + "quoteAuthor": "Denis Waitley" + }, + { + "quoteText": "Happiness comes when your work and words are of benefit to yourself and others.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "Happiness depends upon ourselves.", + "quoteAuthor": "Aristotle" + }, + { + "quoteText": "Happiness does not come about only due to external circumstances; it mainly derives from inner attitudes.", + "quoteAuthor": "Dalai Lama" + }, + { + "quoteText": "Happiness does not come from having much, but from being attached to little.", + "quoteAuthor": "Cheng Yen" + }, + { + "quoteText": "Happiness is a Swedish sunset - it is there for all, but most of us look the other way and lose it.", + "quoteAuthor": "Mark Twain" + }, + { + "quoteText": "Happiness is a perfume you cannot pour on others without getting a few drops on yourself.", + "quoteAuthor": "Ralph Waldo Emerson" + }, + { + "quoteText": "Happiness is as a butterfly which, when pursued, is always beyond our grasp, but which if you will sit down quietly, may alight upon you.", + "quoteAuthor": "Nathaniel Hawthorne" + }, + { + "quoteText": "Happiness is found in doing, not merely possessing.", + "quoteAuthor": "Napoleon Hill" + }, + { + "quoteText": "Happiness is not in the mere possession of money; it lies in the joy of achievement, in the thrill of creative effort.", + "quoteAuthor": "Franklin Roosevelt" + }, + { + "quoteText": "Happiness is not something ready made. It comes from your own actions.", + "quoteAuthor": "Dalai Lama" + }, + { + "quoteText": "Happiness is the reward we get for living to the highest right we know.", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "Happiness is when what you think, what you say, and what you do are in harmony.", + "quoteAuthor": "Mohandas Gandhi" + }, + { + "quoteText": "Happiness mainly comes from our own attitude, rather than from external factors.", + "quoteAuthor": "Dalai Lama" + }, + { + "quoteText": "Happiness often sneaks in through a door you didn't know you left open.", + "quoteAuthor": "John Barrymore" + }, + { + "quoteText": "Having nothing, nothing can he lose.", + "quoteAuthor": "William Shakespeare" + }, + { + "quoteText": "He can who thinks he can, and he can't who thinks he can't. This is an inexorable, indisputable law.", + "quoteAuthor": "Pablo Picasso" + }, + { + "quoteText": "He is a wise man who does not grieve for the things which he has not, but rejoices for those which he has.", + "quoteAuthor": "Epictetus" + }, + { + "quoteText": "He is able who thinks he is able.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "He that is giddy thinks the world turns round.", + "quoteAuthor": "William Shakespeare" + }, + { + "quoteText": "He that never changes his opinions, never corrects his mistakes, and will never be wiser on the morrow than he is today.", + "quoteAuthor": "Tryon Edwards" + }, + { + "quoteText": "He that respects himself is safe from others; he wears a coat of mail that none can pierce.", + "quoteAuthor": "Henry Longfellow" + }, + { + "quoteText": "He who angers you conquers you.", + "quoteAuthor": "Elizabeth Kenny" + }, + { + "quoteText": "He who conquers others is strong; He who conquers himself is mighty.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "He who controls others may be powerful, but he who has mastered himself is mightier still.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "He who deliberates fully before taking a step will spend his entire life on one leg.", + "quoteAuthor": "Chinese proverb" + }, + { + "quoteText": "He who experiences the unity of life sees his own Self in all beings, and all beings in his own Self, and looks on everything with an impartial eye.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "He who fears being conquered is sure of defeat.", + "quoteAuthor": "Napoleon Bonaparte" + }, + { + "quoteText": "He who has health has hope, and he who has hope has everything.", + "quoteAuthor": "" + }, + { + "quoteText": "He who has imagination without learning has wings but no feet.", + "quoteAuthor": "Joseph Joubert" + }, + { + "quoteText": "He who is contented is rich.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "He who is fixed to a star does not change his mind.", + "quoteAuthor": "Leonardo da Vinci" + }, + { + "quoteText": "He who knows himself is enlightened.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "He who knows others is wise. He who knows himself is enlightened.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "He who knows that enough is enough will always have enough.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "He who knows, does not speak. He who speaks, does not know.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "He who lives in harmony with himself lives in harmony with the universe.", + "quoteAuthor": "Marcus Aurelius" + }, + { + "quoteText": "He who lives in harmony with himself lives in harmony with the world.", + "quoteAuthor": "Marcus Aurelius" + }, + { + "quoteText": "He who obtains has little. He who scatters has much.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "He who obtains has little. He who scatters has much.", + "quoteAuthor": "Richard Braunstein" + }, + { + "quoteText": "He who talks more is sooner exhausted.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "He who wishes to secure the good of others, has already secured his own.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "Here is one quality that one must possess to win, and that is definiteness of purpose, the knowledge of what one wants, and a burning desire to possess it.", + "quoteAuthor": "Napoleon Hill" + }, + { + "quoteText": "History will be kind to me for I intend to write it.", + "quoteAuthor": "Winston Churchill" + }, + { + "quoteText": "Holding on to anger is like grasping a hot coal with the intent of throwing it at someone else; you are the one who gets burned.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "Hope arouses, as nothing else can arouse, a passion for the possible.", + "quoteAuthor": "William Sloane Coffin" + }, + { + "quoteText": "How far that little candle throws its beams! So shines a good deed in a naughty world.", + "quoteAuthor": "William Shakespeare" + }, + { + "quoteText": "How many cares one loses when one decides not to be something but to be someone.", + "quoteAuthor": "Coco Chanel" + }, + { + "quoteText": "How we spend our days is, of course, how we spend our lives.", + "quoteAuthor": "Annie Dillard" + }, + { + "quoteText": "How wonderful it is that nobody need wait a single moment before starting to improve the world.", + "quoteAuthor": "Anne Frank" + }, + { + "quoteText": "How wonderful that we have met with a paradox. Now we have some hope of making progress.", + "quoteAuthor": "Niels Bohr" + }, + { + "quoteText": "However many holy words you read, However many you speak, What good will they do you If you do not act on upon them?", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "However many holy words you read, however many you speak, what good will they do you if you do not act on upon them?", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "Human beings, who are almost unique in having the ability to learn from the experience of others, are also remarkable for their apparent disinclination to do so.", + "quoteAuthor": "Douglas Adams" + }, + { + "quoteText": "I allow my intuition to lead my path.", + "quoteAuthor": "Manuel Puig" + }, + { + "quoteText": "I always wanted to be somebody, but I should have been more specific.", + "quoteAuthor": "Lily Tomlin" + }, + { + "quoteText": "I am a man of fixed and unbending principles, the first of which is to be flexible at all times.", + "quoteAuthor": "Everett Dirksen" + }, + { + "quoteText": "I am always doing that which I can not do, in order that I may learn how to do it.", + "quoteAuthor": "Pablo Picasso" + }, + { + "quoteText": "I am always doing that which I cannot do, in order that I may learn how to do it.", + "quoteAuthor": "Pablo Picasso" + }, + { + "quoteText": "I am glad that I paid so little attention to good advice; had I abided by it I might have been saved from some of my most valuable mistakes.", + "quoteAuthor": "Edna Millay" + }, + { + "quoteText": "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.", + "quoteAuthor": "Amy Tan" + }, + { + "quoteText": "I am not afraid of tomorrow, for I have seen yesterday and I love today.", + "quoteAuthor": "William White" + }, + { + "quoteText": "I am not bothered by the fact that I am unknown. I am bothered when I do not know others.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "I am of the opinion that my life belongs to the community, and as long as I live it is my privilege to do for it whatever I can.", + "quoteAuthor": "Bernard Shaw" + }, + { + "quoteText": "I begin with an idea and then it becomes something else.", + "quoteAuthor": "Pablo Picasso" + }, + { + "quoteText": "I believe in one thing only, the power of human will.", + "quoteAuthor": "Joseph Stalin" + }, + { + "quoteText": "I believe that a simple and unassuming manner of life is best for everyone, best both for the body and the mind.", + "quoteAuthor": "Albert Einstein" + }, + { + "quoteText": "I believe that every person is born with talent.", + "quoteAuthor": "Maya Angelou" + }, + { + "quoteText": "I believe that we are fundamentally the same and have the same basic potential.", + "quoteAuthor": "Dalai Lama" + }, + { + "quoteText": "I believe that we are solely responsible for our choices, and we have to accept the consequences of every deed, word, and thought throughout our lifetime.", + "quoteAuthor": "Elisabeth Kubler-Ross" + }, + { + "quoteText": "I can't believe that God put us on this earth to be ordinary.", + "quoteAuthor": "Lou Holtz" + }, + { + "quoteText": "I can't change the direction of the wind, but I can adjust my sails to always reach my destination.", + "quoteAuthor": "Jimmy Dean" + }, + { + "quoteText": "I can't imagine a person becoming a success who doesn't give this game of life everything hes got.", + "quoteAuthor": "Walter Cronkite" + }, + { + "quoteText": "I cannot always control what goes on outside. But I can always control what goes on inside.", + "quoteAuthor": "Wayne Dyer" + }, + { + "quoteText": "I cannot give you the formula for success, but I can give you the formula for failure: which is: Try to please everybody.", + "quoteAuthor": "Herbert Swope" + }, + { + "quoteText": "I cannot make my days longer so I strive to make them better.", + "quoteAuthor": "Henry David Thoreau" + }, + { + "quoteText": "I cannot say whether things will get better if we change; what I can say is they must change if they are to get better.", + "quoteAuthor": "Georg Lichtenberg" + }, + { + "quoteText": "I care not so much what I am to others as what I am to myself. I will be rich by myself, and not by borrowing.", + "quoteAuthor": "Michel de Montaigne" + }, + { + "quoteText": "I destroy my enemies when I make them my friends.", + "quoteAuthor": "Abraham Lincoln" + }, + { + "quoteText": "I do not believe in a fate that falls on men however they act; but I do believe in a fate that falls on man unless they act.", + "quoteAuthor": "G. K. Chesterton" + }, + { + "quoteText": "I do not believe in a fate that falls on men however they act; but I do believe in a fate that falls on them unless they act.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "I don't believe in failure. It is not failure if you enjoyed the process.", + "quoteAuthor": "Oprah Winfrey" + }, + { + "quoteText": "I don't believe in failure. It's not failure if you enjoyed the process.", + "quoteAuthor": "Oprah Winfrey" + }, + { + "quoteText": "I endeavour to be wise when I cannot be merry, easy when I cannot be glad, content with what cannot be mended and patient when there is no redress.", + "quoteAuthor": "Elizabeth Montagu" + }, + { + "quoteText": "I find hope in the darkest of days, and focus in the brightest. I do not judge the universe.", + "quoteAuthor": "Dalai Lama" + }, + { + "quoteText": "I gave my life to become the person I am right now. Was it worth it?", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "I have always thought the actions of men the best interpreters of their thoughts.", + "quoteAuthor": "John Locke" + }, + { + "quoteText": "I have an everyday religion that works for me. Love yourself first, and everything else falls into line.", + "quoteAuthor": "Lucille Ball" + }, + { + "quoteText": "I have been impressed with the urgency of doing. Knowing is not enough; we must apply. Being willing is not enough; we must do.", + "quoteAuthor": "Leonardo da Vinci" + }, + { + "quoteText": "I have done my best: that is about all the philosophy of living one needs.", + "quoteAuthor": "Lin-yutang" + }, + { + "quoteText": "I have just three things to teach: simplicity, patience, compassion. These three are your greatest treasures.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "I have never been hurt by anything I didn't say.", + "quoteAuthor": "Calvin Coolidge" + }, + { + "quoteText": "I have no special talent. I am only passionately curious.", + "quoteAuthor": "Albert Einstein" + }, + { + "quoteText": "I have often regretted my speech, never my silence.", + "quoteAuthor": "Publilius Syrus" + }, + { + "quoteText": "I hear and I forget. I see and I remember. I do and I understand.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "I know but one freedom and that is the freedom of the mind.", + "quoteAuthor": "Antoine de Saint-Exupery" + }, + { + "quoteText": "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.", + "quoteAuthor": "Colette" + }, + { + "quoteText": "I may not know everything, but everything is not known yet anyway.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "I never see what has been done; I only see what remains to be done.", + "quoteAuthor": "Marie Curie" + }, + { + "quoteText": "I never think of the future. It comes soon enough.", + "quoteAuthor": "Albert Einstein" + }, + { + "quoteText": "I never worry about action, but only inaction.", + "quoteAuthor": "Winston Churchill" + }, + { + "quoteText": "I prefer to be true to myself, even at the hazard of incurring the ridicule of others, rather than to be false, and to incur my own abhorrence.", + "quoteAuthor": "Frederick Douglass" + }, + { + "quoteText": "I seek constantly to improve my manners and graces, for they are the sugar to which all are attracted.", + "quoteAuthor": "Og Mandino" + }, + { + "quoteText": "I think and that is all that I am.", + "quoteAuthor": "Wayne Dyer" + }, + { + "quoteText": "I think somehow we learn who we really are and then live with that decision.", + "quoteAuthor": "Eleanor Roosevelt" + }, + { + "quoteText": "I think you can have moderate success by copying something else, but if you really want to knock it out of the park, you have to do something different and take chances.", + "quoteAuthor": "Lee Womack" + }, + { + "quoteText": "I walk slowly, but I never walk backward.", + "quoteAuthor": "Abraham Lincoln" + }, + { + "quoteText": "I want you to be everything that's you, deep at the center of your being.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "I will love the light for it shows me the way, yet I will endure the darkness because it shows me the stars.", + "quoteAuthor": "Og Mandino" + }, + { + "quoteText": "I will not be concerned at other men is not knowing me;I will be concerned at my own want of ability.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "I will prepare and some day my chance will come.", + "quoteAuthor": "Abraham Lincoln" + }, + { + "quoteText": "I would maintain that thanks are the highest form of thought, and that gratitude is happiness doubled by wonder.", + "quoteAuthor": "G. K. Chesterton" + }, + { + "quoteText": "I'm a great believer in luck and I find the harder I work, the more I have of it.", + "quoteAuthor": "Thomas Jefferson" + }, + { + "quoteText": "I'm not afraid of storms, for Im learning how to sail my ship.", + "quoteAuthor": "Louisa Alcott" + }, + { + "quoteText": "I'm not interested in age. People who tell me their age are silly. You're as old as you feel.", + "quoteAuthor": "Elizabeth Arden" + }, + { + "quoteText": "I've never seen a smiling face that was not beautiful.", + "quoteAuthor": "" + }, + { + "quoteText": "Id rather regret the things that I have done than the things that I have not done.", + "quoteAuthor": "Lucille Ball" + }, + { + "quoteText": "Ideals are an imaginative understanding of that which is desirable in that which is possible.", + "quoteAuthor": "Walter Lippmann" + }, + { + "quoteText": "Ideas are the beginning points of all fortunes.", + "quoteAuthor": "Napoleon Hill" + }, + { + "quoteText": "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.", + "quoteAuthor": "Albert Einstein" + }, + { + "quoteText": "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?", + "quoteAuthor": "Rabbi Hillel" + }, + { + "quoteText": "If I could reach up and hold a star for every time you've made me smile, the entire evening sky would be in the palm of my hand.", + "quoteAuthor": "" + }, + { + "quoteText": "If I know what love is, it is because of you.", + "quoteAuthor": "Hermann Hesse" + }, + { + "quoteText": "If a man does his best, what else is there?", + "quoteAuthor": "George Patton" + }, + { + "quoteText": "If facts are the seeds that later produce knowledge and wisdom, then the emotions and the impressions of the senses are the fertile soil in which the seeds must grow.", + "quoteAuthor": "Rachel Carson" + }, + { + "quoteText": "If it is not right do not do it; if it is not true do not say it.", + "quoteAuthor": "Marcus Aurelius" + }, + { + "quoteText": "If one advances confidently in the direction of his dream, and endeavours to live the life which he had imagines, he will meet with a success unexpected in common hours.", + "quoteAuthor": "Henry David Thoreau" + }, + { + "quoteText": "If one does not know to which port is sailing, no wind is favorable.", + "quoteAuthor": "Seneca" + }, + { + "quoteText": "If one is estranged from oneself, then one is estranged from others too. If one is out of touch with oneself, then one cannot touch others.", + "quoteAuthor": "Anne Lindbergh" + }, + { + "quoteText": "If one is lucky, a solitary fantasy can totally transform one million realities.", + "quoteAuthor": "Maya Angelou" + }, + { + "quoteText": "If one way be better than another, that you may be sure is natures way.", + "quoteAuthor": "Aristotle" + }, + { + "quoteText": "If only wed stop trying to be happy wed have a pretty good time.", + "quoteAuthor": "Edith Wharton" + }, + { + "quoteText": "If someone in your life talked to you the way you talk to yourself, you would have left them long ago.", + "quoteAuthor": "Carla Gordon" + }, + { + "quoteText": "If the shoe doesn't fit, must we change the foot?", + "quoteAuthor": "Gloria Steinem" + }, + { + "quoteText": "If the single man plant himself indomitably on his instincts, and there abide, the huge world will come round to him.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "If the stars should appear but one night every thousand years how man would marvel and adore.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "If there is no struggle, there is no progress.", + "quoteAuthor": "Frederick Douglass" + }, + { + "quoteText": "If we are facing in the right direction, all we have to do is keep on walking.", + "quoteAuthor": "" + }, + { + "quoteText": "If we are not fully ourselves, truly in the present moment, we miss everything.", + "quoteAuthor": "Thich Nhat Hanh" + }, + { + "quoteText": "If we could learn to like ourselves, even a little, maybe our cruelties and angers might melt away.", + "quoteAuthor": "John Steinbeck" + }, + { + "quoteText": "If we could see the miracle of a single flower clearly, our whole life would change.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "If we did the things we are capable of, we would astound ourselves.", + "quoteAuthor": "Thomas Edison" + }, + { + "quoteText": "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.", + "quoteAuthor": "Anne Bradstreet" + }, + { + "quoteText": "If we have a positive mental attitude, then even when surrounded by hostility, we shall not lack inner peace.", + "quoteAuthor": "Dalai Lama" + }, + { + "quoteText": "If we learn to open our hearts, anyone, including the people who drive us crazy, can be our teacher.", + "quoteAuthor": "Pema Chodron" + }, + { + "quoteText": "If we look at the world with a love of life, the world will reveal its beauty to us.", + "quoteAuthor": "Daisaku Ikeda" + }, + { + "quoteText": "If you accept the expectations of others, especially negative ones, then you never will change the outcome.", + "quoteAuthor": "Michael Jordan" + }, + { + "quoteText": "If you are going to achieve excellence in big things, you develop the habit in little matters. Excellence is not an exception, it is a prevailing attitude.", + "quoteAuthor": "Colin Powell" + }, + { + "quoteText": "If you are patient in one moment of anger, you will escape one hundred days of sorrow.", + "quoteAuthor": "Chinese proverb" + }, + { + "quoteText": "If you aren't going all the way, why go at all?", + "quoteAuthor": "Joe Namath" + }, + { + "quoteText": "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.", + "quoteAuthor": "Robert Fulghum" + }, + { + "quoteText": "If you can dream it, you can do it.", + "quoteAuthor": "Walt Disney" + }, + { + "quoteText": "If you can't explain it simply, you don't understand it well enough.", + "quoteAuthor": "Albert Einstein" + }, + { + "quoteText": "If you can't feed a hundred people, then feed just one.", + "quoteAuthor": "Mother Teresa" + }, + { + "quoteText": "If you cannot be silent be brilliant and thoughtful.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "If you cannot do great things, do small things in a great way.", + "quoteAuthor": "Napoleon Hill" + }, + { + "quoteText": "If you change the way you look at things, the things you look at change.", + "quoteAuthor": "Wayne Dyer" + }, + { + "quoteText": "If you come to a fork in the road, take it.", + "quoteAuthor": "" + }, + { + "quoteText": "If you correct your mind, the rest of your life will fall into place.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "If you do not change direction, you may end up where you are heading.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "If you do what you've always done, you'll get what youve always gotten.", + "quoteAuthor": "Tony Robbins" + }, + { + "quoteText": "If you don't design your own life plan, chances are you'll fall into someone else's plan. And guess what they have planned for you? Not much.", + "quoteAuthor": "Jim Rohn" + }, + { + "quoteText": "If you don't go after what you want, you'll never have it. If you don't ask, the answer is always no. If you don't step forward, you're always in the same place.", + "quoteAuthor": "Nora Roberts" + }, + { + "quoteText": "If you don't know where you are going, you will probably end up somewhere else.", + "quoteAuthor": "Lawrence Peter" + }, + { + "quoteText": "If you don't like something, change it. If you can't change it, change your attitude.", + "quoteAuthor": "Maya Angelou" + }, + { + "quoteText": "If you find yourself in a hole, the first thing to do is stop digging.", + "quoteAuthor": "Will Rogers" + }, + { + "quoteText": "If you focus on results, you will never change. If you focus on change, you will get results.", + "quoteAuthor": "Jack Dixon" + }, + { + "quoteText": "If you get up one more time than you fall, you will make it through.", + "quoteAuthor": "" + }, + { + "quoteText": "If you have knowledge, let others light their candles in it.", + "quoteAuthor": "Margaret Fuller" + }, + { + "quoteText": "If you have made mistakes, there is always another chance for you. You may have a fresh start any moment you choose.", + "quoteAuthor": "Mary Pickford" + }, + { + "quoteText": "If you have no respect for your own values how can you be worthy of respect from others.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "If you kick a stone in anger, you'll hurt your own foot.", + "quoteAuthor": "Korean proverb" + }, + { + "quoteText": "If you let go a little, you will have a little peace. If you let go a lot, you will have a lot of peace.", + "quoteAuthor": "Ajahn Chah" + }, + { + "quoteText": "If you light a lamp for somebody, it will also brighten your path.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "If you look into your own heart, and you find nothing wrong there, what is there to worry about? What is there to fear?", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "If you lose today, win tomorrow. In this never-ending spirit of challenge is the heart of a victor.", + "quoteAuthor": "Daisaku Ikeda" + }, + { + "quoteText": "If you love life, don't waste time, for time is what life is made up of.", + "quoteAuthor": "Bruce Lee" + }, + { + "quoteText": "If you love someone, set them free. If they come back they're yours; if they don't they never were.", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "If you must tell me your opinions, tell me what you believe in. I have plenty of douts of my own.", + "quoteAuthor": "Johann Wolfgang von Goethe" + }, + { + "quoteText": "If you propose to speak, always ask yourself, is it true, is it necessary, is it kind.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "If you seek truth you will not seek victory by dishonourable means, and if you find truth you will become invincible.", + "quoteAuthor": "Epictetus" + }, + { + "quoteText": "If you smile when no one else is around, you really mean it.", + "quoteAuthor": "Andy Rooney" + }, + { + "quoteText": "If you spend too much time thinking about a thing, you'll never get it done.", + "quoteAuthor": "Bruce Lee" + }, + { + "quoteText": "If you spend your whole life waiting for the storm, you'll never enjoy the sunshine.", + "quoteAuthor": "Morris West" + }, + { + "quoteText": "If you surrender to the wind, you can ride it.", + "quoteAuthor": "Toni Morrison" + }, + { + "quoteText": "If you take each challenge one step at a time, with faith in every footstep, your strength and understanding will increase.", + "quoteAuthor": "James Faust" + }, + { + "quoteText": "If you think you can, you can. And if you think you can't, you're right.", + "quoteAuthor": "Henry Ford" + }, + { + "quoteText": "If you want a thing done well, do it yourself.", + "quoteAuthor": "Napoleon Bonaparte" + }, + { + "quoteText": "If you want things to be different, perhaps the answer is to become different yourself.", + "quoteAuthor": "Norman Peale" + }, + { + "quoteText": "If you want to study yourself - look into the hearts of other people. If you want to study other people - look into your own heart.", + "quoteAuthor": "Friedrich von Schiller" + }, + { + "quoteText": "If you want your life to be more rewarding, you have to change the way you think.", + "quoteAuthor": "Oprah Winfrey" + }, + { + "quoteText": "If you wish to be a writer, write.", + "quoteAuthor": "Epictetus" + }, + { + "quoteText": "If you would take, you must first give, this is the beginning of intelligence.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "If you'll not settle for anything less than your best, you will be amazed at what you can accomplish in your lives.", + "quoteAuthor": "Vince Lombardi" + }, + { + "quoteText": "If you're in a bad situation, don't worry it'll change. If you're in a good situation, don't worry it'll change.", + "quoteAuthor": "John Simone" + }, + { + "quoteText": "If you're walking down the right path and you're willing to keep walking, eventually you'll make progress.", + "quoteAuthor": "Barack Obama" + }, + { + "quoteText": "If your actions inspire others to dream more, learn more, do more and become more, you are a leader.", + "quoteAuthor": "John Quincy Adams" + }, + { + "quoteText": "Ignorance never settle a question.", + "quoteAuthor": "Benjamin Disraeli" + }, + { + "quoteText": "Ignorant men don't know what good they hold in their hands until they've flung it away.", + "quoteAuthor": "Sophocles" + }, + { + "quoteText": "Im not in this world to live up to your expectations and you're not in this world to live up to mine.", + "quoteAuthor": "Bruce Lee" + }, + { + "quoteText": "Imagination disposes of everything; it creates beauty, justice, and happiness, which are everything in this world.", + "quoteAuthor": "Blaise Pascal" + }, + { + "quoteText": "Imagination is more important than knowledge. For while knowledge defines all we currently know and understand, imagination points to all we might yet discover and create.", + "quoteAuthor": "Albert Einstein" + }, + { + "quoteText": "Imagination is not a talent of some men but is the health of every man.", + "quoteAuthor": "Ralph Waldo Emerson" + }, + { + "quoteText": "Imagination is the highest kite one can fly.", + "quoteAuthor": "Lauren Bacall" + }, + { + "quoteText": "Imagination is the living power and prime agent of all human perception.", + "quoteAuthor": "Samuel Taylor Coleridge" + }, + { + "quoteText": "Imagination rules the world.", + "quoteAuthor": "Napoleon Bonaparte" + }, + { + "quoteText": "Imagination will often carry us to worlds that never were. But without it we go nowhere.", + "quoteAuthor": "Carl Sagan" + }, + { + "quoteText": "Important principles may, and must, be inflexible.", + "quoteAuthor": "Abraham Lincoln" + }, + { + "quoteText": "Impossibilities are merely things which we have not yet learned.", + "quoteAuthor": "Charles Chesnutt" + }, + { + "quoteText": "In a controversy the instant we feel anger we have already ceased striving for the truth, and have begun striving for ourselves.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "In all chaos there is a cosmos, in all disorder a secret order.", + "quoteAuthor": "Carl Jung" + }, + { + "quoteText": "In all things of nature there is something of the marvellous.", + "quoteAuthor": "Aristotle" + }, + { + "quoteText": "In order to live free and happily you must sacrifice boredom. It is not always an easy sacrifice.", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "In order to win, you must expect to win.", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "In rivers, the water that you touch is the last of what has passed and the first of that which comes; so with present time.", + "quoteAuthor": "Leonardo da Vinci" + }, + { + "quoteText": "In seed time learn, in harvest teach, in winter enjoy.", + "quoteAuthor": "William Blake" + }, + { + "quoteText": "In separateness lies the world's great misery, in compassion lies the world's true strength.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "In skating over thin ice our safety is in our speed.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "In the depth of winter, I finally learned that there was within me an invincible summer.", + "quoteAuthor": "Albert Camus" + }, + { + "quoteText": "In the end we retain from our studies only that which we practically apply.", + "quoteAuthor": "Johann Wolfgang von Goethe" + }, + { + "quoteText": "In the long run we get no more than we have been willing to risk giving.", + "quoteAuthor": "Sheldon Kopp" + }, + { + "quoteText": "In the middle of every difficulty lies opportunity.", + "quoteAuthor": "Albert Einstein" + }, + { + "quoteText": "In the sky, there is no distinction of east and west; people create distinctions out of their own minds and then believe them to be true.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "In three words I can sum up everything Ive learned about life: it goes on.", + "quoteAuthor": "Robert Frost" + }, + { + "quoteText": "Inspiration exists, but it has to find us working.", + "quoteAuthor": "Pablo Picasso" + }, + { + "quoteText": "Instead of saying that man is the creature of circumstance, it would be nearer the mark to say that man is the architect of circumstance.", + "quoteAuthor": "Thomas Carlyle" + }, + { + "quoteText": "Into each life rain must fall but rain can be the giver of life and it is all in your attitude that makes rain produce sunshine.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "Intuition is the supra-logic that cuts out all the routine processes of thought and leaps straight from the problem to the answer.", + "quoteAuthor": "Robert Graves" + }, + { + "quoteText": "Intuition is the very force or activity of the soul in its experience through whatever has been the experience of the soul itself.", + "quoteAuthor": "Henry Reed" + }, + { + "quoteText": "Intuition will tell the thinking mind where to look next.", + "quoteAuthor": "Jonas Salk" + }, + { + "quoteText": "Invent your world. Surround yourself with people, color, sounds, and work that nourish you.", + "quoteAuthor": "" + }, + { + "quoteText": "Iron rusts from disuse; water loses its purity from stagnation... even so does inaction sap the vigour of the mind.", + "quoteAuthor": "Leonardo da Vinci" + }, + { + "quoteText": "It all depends on how we look at things, and not how they are in themselves.", + "quoteAuthor": "Carl Jung" + }, + { + "quoteText": "It can't be spring if your heart is filled with past failures.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "It does not matter how slowly you go as long as you do not stop.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "It has never been my object to record my dreams, just to realize them.", + "quoteAuthor": "Man Ray" + }, + { + "quoteText": "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.", + "quoteAuthor": "Edward de Bono" + }, + { + "quoteText": "It is better to take many small steps in the right direction than to make a great leap forward only to stumble backward.", + "quoteAuthor": "" + }, + { + "quoteText": "It is better to travel well than to arrive.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "It is better to understand a little than to misunderstand a lot.", + "quoteAuthor": "Anatole France" + }, + { + "quoteText": "It is common sense to take a method and try it. If it fails, admit it frankly and try another. But above all, try something.", + "quoteAuthor": "Franklin D. Roosevelt" + }, + { + "quoteText": "It is difficult to achieve a spirit of genuine cooperation as long as people remain indifferent to the feelings and happiness of others.", + "quoteAuthor": "Dalai Lama" + }, + { + "quoteText": "It is easier to live through someone else than to become complete yourself.", + "quoteAuthor": "Betty Friedan" + }, + { + "quoteText": "It is fatal to enter any war without the will to win it.", + "quoteAuthor": "General Douglas MacArthur" + }, + { + "quoteText": "It is impossible for a man to learn what he thinks he already knows.", + "quoteAuthor": "Epictetus" + }, + { + "quoteText": "It is impossible to feel grateful and depressed in the same moment.", + "quoteAuthor": "Naomi Williams" + }, + { + "quoteText": "It is in your moments of decision that your destiny is shaped.", + "quoteAuthor": "Tony Robbins" + }, + { + "quoteText": "It is more important to know where you are going than to get there quickly. Do not mistake activity for achievement.", + "quoteAuthor": "Mabel Newcomber" + }, + { + "quoteText": "It is never too late to be what you might have been.", + "quoteAuthor": "George Eliot" + }, + { + "quoteText": "It is never too late. Even if you are going to die tomorrow, keep yourself straight and clear and be a happy human being today.", + "quoteAuthor": "Lama Yeshe" + }, + { + "quoteText": "It is not enough to have a good mind; the main thing is to use it well.", + "quoteAuthor": "Rene Descartes" + }, + { + "quoteText": "It is not fair to ask of others what you are unwilling to do yourself.", + "quoteAuthor": "Eleanor Roosevelt" + }, + { + "quoteText": "It is not in the stars to hold our destiny but in ourselves.", + "quoteAuthor": "William Shakespeare" + }, + { + "quoteText": "It is not only for what we do that we are held responsible, but also for what we do not do.", + "quoteAuthor": "Moliere" + }, + { + "quoteText": "It is not so important to know everything as to appreciate what we learn.", + "quoteAuthor": "Hannah More" + }, + { + "quoteText": "It is not the mistake that has the most power, instead, it is learning from the mistake to advance your own attributes.", + "quoteAuthor": "Byron Roberts" + }, + { + "quoteText": "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.", + "quoteAuthor": "Max Planck" + }, + { + "quoteText": "It is not uncommon for people to spend their whole life waiting to start living.", + "quoteAuthor": "Eckhart Tolle" + }, + { + "quoteText": "It is on our failures that we base a new and different and better success.", + "quoteAuthor": "Havelock Ellis" + }, + { + "quoteText": "It is one of the blessings of old friends that you can afford to be stupid with them.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "It is only possible to live happily ever after on a day to day basis.", + "quoteAuthor": "Margaret Bonnano" + }, + { + "quoteText": "It is only when the mind and character slumber that the dress can be seen.", + "quoteAuthor": "Ralph Waldo Emerson" + }, + { + "quoteText": "It is only with the heart that one can see rightly, what is essential is invisible to the eye.", + "quoteAuthor": "Antoine de Saint-Exupery" + }, + { + "quoteText": "It is surprising what a man can do when he has to, and how little most men will do when they don't have to.", + "quoteAuthor": "Walter Linn" + }, + { + "quoteText": "It is the greatest of all mistakes to do nothing because you can only do little - do what you can.", + "quoteAuthor": "Sydney Smith" + }, + { + "quoteText": "It is the mark of an educated mind to be able to entertain a thought without accepting it.", + "quoteAuthor": "Aristotle" + }, + { + "quoteText": "It is the quality of our work which will please God, not the quantity.", + "quoteAuthor": "Mahatma Gandhi" + }, + { + "quoteText": "It is through science that we prove, but through intuition that we discover.", + "quoteAuthor": "Jules Poincare" + }, + { + "quoteText": "It is very easy to forgive others their mistakes; it takes more grit to forgive them for having witnessed your own.", + "quoteAuthor": "Jessamyn West" + }, + { + "quoteText": "It is with words as with sunbeams. The more they are condensed, the deeper they burn.", + "quoteAuthor": "Robert Southey" + }, + { + "quoteText": "It isn't what happens to us that causes us to suffer; it's what we say to ourselves about what happens.", + "quoteAuthor": "Pema Chodron" + }, + { + "quoteText": "It isn't where you come from, it's where you're going that counts.", + "quoteAuthor": "Ella Fitzgerald" + }, + { + "quoteText": "It takes both sunshine and rain to make a rainbow.", + "quoteAuthor": "" + }, + { + "quoteText": "It takes courage to grow up and become who you really are.", + "quoteAuthor": "E. E. Cummings" + }, + { + "quoteText": "It's easier to see the mistakes on someone else's paper.", + "quoteAuthor": "" + }, + { + "quoteText": "It's important to know that words don't move mountains. Work, exacting work moves mountains.", + "quoteAuthor": "Danilo Dolci" + }, + { + "quoteText": "It's not what happens to you, but how you react to it that matters.", + "quoteAuthor": "Epictetus" + }, + { + "quoteText": "It's not who you are that holds you back, it's who you think you're not.", + "quoteAuthor": "" + }, + { + "quoteText": "It's so simple to be wise. Just think of something stupid to say and then don't say it.", + "quoteAuthor": "Sam Levenson" + }, + { + "quoteText": "Joy is the best makeup.", + "quoteAuthor": "Anne Lamott" + }, + { + "quoteText": "Joy is what happens to us when we allow ourselves to recognize how good things really are.", + "quoteAuthor": "Marianne Williamson" + }, + { + "quoteText": "Judge nothing, you will be happy. Forgive everything, you will be happier. Love everything, you will be happiest.", + "quoteAuthor": "Sri Chinmoy" + }, + { + "quoteText": "Just as a candle cannot burn without fire, men cannot live without a spiritual life.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "Just as a flower, which seems beautiful has color but no perfume, so are the fruitless words of a man who speaks them but does them not.", + "quoteAuthor": "Dhammapada" + }, + { + "quoteText": "Just as much as we see in others we have in ourselves.", + "quoteAuthor": "William Hazlitt" + }, + { + "quoteText": "Just trust yourself, then you will know how to live.", + "quoteAuthor": "Goethe" + }, + { + "quoteText": "Keep silence for the most part, and speak only when you must, and then briefly.", + "quoteAuthor": "Epictetus" + }, + { + "quoteText": "Keep true to the dreams of thy youth.", + "quoteAuthor": "Friedrich von Schiller" + }, + { + "quoteText": "Keep your eyes on the stars and your feet on the ground.", + "quoteAuthor": "Theodore Roosevelt" + }, + { + "quoteText": "Keep yourself to the sunshine and you cannot see the shadow.", + "quoteAuthor": "Helen Keller" + }, + { + "quoteText": "Keeping a little ahead of conditions is one of the secrets of business, the trailer seldom goes far.", + "quoteAuthor": "Charles Schwab" + }, + { + "quoteText": "Kind words can be short and easy to speak but their echoes are truly endless.", + "quoteAuthor": "Mother Teresa" + }, + { + "quoteText": "Kind words can be short and easy to speak, but their echoes are truly endless.", + "quoteAuthor": "Mother Teresa" + }, + { + "quoteText": "Kind words do not cost much. Yet they accomplish much.", + "quoteAuthor": "Blaise Pascal" + }, + { + "quoteText": "Kind words will unlock an iron door.", + "quoteAuthor": "Turkish proverb" + }, + { + "quoteText": "Kindness in words creates confidence. Kindness in thinking creates profoundness. Kindness in giving creates love.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "Kindness is more important than wisdom, and the recognition of this is the beginning of wisdom.", + "quoteAuthor": "Theodore Rubin" + }, + { + "quoteText": "Kindness is the golden chain by which society is bound together.", + "quoteAuthor": "Johann Wolfgang von Goethe" + }, + { + "quoteText": "Kindness is the greatest wisdom.", + "quoteAuthor": "" + }, + { + "quoteText": "Kindness is the language which the deaf can hear and the blind can see.", + "quoteAuthor": "Mark Twain" + }, + { + "quoteText": "Know how to listen, and you will profit even from those who talk badly.", + "quoteAuthor": "Plutarch" + }, + { + "quoteText": "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.", + "quoteAuthor": "Margaret Laurence" + }, + { + "quoteText": "Know, first, who you are, and then adorn yourself accordingly.", + "quoteAuthor": "Epictetus" + }, + { + "quoteText": "Knowing is not enough; we must apply!", + "quoteAuthor": "Johann Wolfgang von Goethe" + }, + { + "quoteText": "Knowing your own darkness is the best method for dealing with the darknesses of other people.", + "quoteAuthor": "Carl Jung" + }, + { + "quoteText": "Knowledge has three degrees - opinion, science, illumination. The means or instrument of the first is sense; of the second, dialectic; of the third, intuition.", + "quoteAuthor": "Plotinus" + }, + { + "quoteText": "Knowledge is a process of piling up facts; wisdom lies in their simplification.", + "quoteAuthor": "Martin Fischer" + }, + { + "quoteText": "Knowledge rests not upon truth alone, but upon error also.", + "quoteAuthor": "Carl Jung" + }, + { + "quoteText": "Leaders aren't born they are made. And they are made just like anything else, through hard work. And that's the price well have to pay to achieve that goal, or any goal.", + "quoteAuthor": "Vince Lombardi" + }, + { + "quoteText": "Learn all you can from the mistakes of others. You won't have time to make them all yourself.", + "quoteAuthor": "Alfred Sheinwold" + }, + { + "quoteText": "Learn from yesterday, live for today, hope for tomorrow.", + "quoteAuthor": "Albert Einstein" + }, + { + "quoteText": "Learn to listen. Opportunity could be knocking at your door very softly.", + "quoteAuthor": "Frank Tyger" + }, + { + "quoteText": "Learn wisdom from the ways of a seedling. A seedling which is never hardened off through stressful situations will never become a strong productive plant.", + "quoteAuthor": "Stephen Sigmund" + }, + { + "quoteText": "Learning is a treasure that will follow its owner everywhere", + "quoteAuthor": "Chinese proverb" + }, + { + "quoteText": "Learning is finding out what you already know.", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "Learning without reflection is a waste, reflection without learning is dangerous.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "Let go of your attachment to being right, and suddenly your mind is more open. You're able to benefit from the unique viewpoints of others, without being crippled by your own judgement.", + "quoteAuthor": "Ralph Marston" + }, + { + "quoteText": "Let me tell you the secret that has led me to my goal: my strength lies solely in my tenacity", + "quoteAuthor": "Louis Pasteur" + }, + { + "quoteText": "Let me tell you the secret that has led me to my goal: my strength lies solely in my tenacity.", + "quoteAuthor": "Louis Pasteur" + }, + { + "quoteText": "Let the beauty of what you love be what you do.", + "quoteAuthor": "Rumi" + }, + { + "quoteText": "Let the future tell the truth, and evaluate each one according to his work and accomplishments. The present is theirs; the future, for which I have really worked, is mine.", + "quoteAuthor": "Nikola Tesla" + }, + { + "quoteText": "Let us always meet each other with smile, for the smile is the beginning of love.", + "quoteAuthor": "Mother Teresa" + }, + { + "quoteText": "Let us be grateful to people who make us happy; they are the charming gardeners who make our souls blossom.", + "quoteAuthor": "Marcel Proust" + }, + { + "quoteText": "Let us resolve to be masters, not the victims, of our history, controlling our own destiny without giving way to blind suspicions and emotions.", + "quoteAuthor": "John Kennedy" + }, + { + "quoteText": "Let us revere, let us worship, but erect and open-eyed, the highest, not the lowest; the future, not the past!", + "quoteAuthor": "Charlotte Gilman" + }, + { + "quoteText": "Let your hook always be cast; in the pool where you least expect it, there will be a fish.", + "quoteAuthor": "Ovid" + }, + { + "quoteText": "Let yourself be silently drawn by the stronger pull of what you really love.", + "quoteAuthor": "Rumi" + }, + { + "quoteText": "Letting go isn't the end of the world; it's the beginning of a new life.", + "quoteAuthor": "" + }, + { + "quoteText": "Liberty, taking the word in its concrete sense, consists in the ability to choose.", + "quoteAuthor": "Simone Weil" + }, + { + "quoteText": "Life a culmination of the past, an awareness of the present, an indication of the future beyond knowledge, the quality that gives a touch of divinity to matter.", + "quoteAuthor": "Charles A. Lindbergh" + }, + { + "quoteText": "Life is 10% what happens to you and 90% how you react to it.", + "quoteAuthor": "Charles Swindoll" + }, + { + "quoteText": "Life is a gift, and it offers us the privilege, opportunity, and responsibility to give something back by becoming more", + "quoteAuthor": "Anthony Robbins" + }, + { + "quoteText": "Life is a learning experience, only if you learn.", + "quoteAuthor": "Yogi Berra" + }, + { + "quoteText": "Life is a process. We are a process. The universe is a process.", + "quoteAuthor": "Anne Schaef" + }, + { + "quoteText": "Life is a progress, and not a station.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "Life is a succession of lessons, which must be lived to be understood.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "Life is a succession of moments. To live each one is to succeed.", + "quoteAuthor": "Corita Kent" + }, + { + "quoteText": "Life is change. Growth is optional. Choose wisely.", + "quoteAuthor": "Karen Clark" + }, + { + "quoteText": "Life is just a chance to grow a soul.", + "quoteAuthor": "A. Powell Davies" + }, + { + "quoteText": "Life is like a sewer. What you get out of it depends on what you put into it.", + "quoteAuthor": "Tom Lehrer" + }, + { + "quoteText": "Life is like riding a bicycle. To keep your balance you must keep moving.", + "quoteAuthor": "Albert Einstein" + }, + { + "quoteText": "Life is movement-we breathe, we eat, we walk, we move!", + "quoteAuthor": "John Pierrakos" + }, + { + "quoteText": "Life is not measured by the breaths we take, but by the moments that take our breath.", + "quoteAuthor": "" + }, + { + "quoteText": "Life is not measured by the breaths you take, but by its breathtaking moments.", + "quoteAuthor": "Michael Vance" + }, + { + "quoteText": "Life is really simple, but we insist on making it complicated.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "Life is so constructed that an event does not, cannot, will not, match the expectation.", + "quoteAuthor": "Charlotte Bronte" + }, + { + "quoteText": "Life is the flower for which love is the honey.", + "quoteAuthor": "Victor Hugo" + }, + { + "quoteText": "Life is what happens to you while you're busy making other plans.", + "quoteAuthor": "John Lennon" + }, + { + "quoteText": "Life is what happens while you are making other plans.", + "quoteAuthor": "John Lennon" + }, + { + "quoteText": "Life is what you make of it. Always has been, always will be.", + "quoteAuthor": "Grandma Moses" + }, + { + "quoteText": "Life isn't about finding yourself. Life is about creating yourself.", + "quoteAuthor": "Bernard Shaw" + }, + { + "quoteText": "Life shrinks or expands in proportion to one's courage.", + "quoteAuthor": "Anais Nin" + }, + { + "quoteText": "Life's challenges are not supposed to paralyse you, they're supposed to help you discover who you are.", + "quoteAuthor": "Bernice Reagon" + }, + { + "quoteText": "Life's challenges are not supposed to paralyze you, they're supposed to help you discover who you are.", + "quoteAuthor": "Bernice Reagon" + }, + { + "quoteText": "Light tomorrow with today!", + "quoteAuthor": "Elizabeth Browning" + }, + { + "quoteText": "Limitations live only in our minds. But if we use our imaginations, our possibilities become limitless.", + "quoteAuthor": "Jamie Paolinetti" + }, + { + "quoteText": "Listen to what you know instead of what you fear.", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "Listen to your intuition. It will tell you everything you need to know.", + "quoteAuthor": "Anthony D'Angelo" + }, + { + "quoteText": "Live through feeling and you will live through love. For feeling is the language of the soul, and feeling is truth.", + "quoteAuthor": "Matt Zotti" + }, + { + "quoteText": "Living at risk is jumping off the cliff and building your wings on the way down.", + "quoteAuthor": "Ray Bradbury" + }, + { + "quoteText": "Logic will get you from A to B. Imagination will take you everywhere.", + "quoteAuthor": "Albert Einstein" + }, + { + "quoteText": "Look back over the past, with its changing empires that rose and fell, and you can foresee the future, too.", + "quoteAuthor": "Marcus Aurelius" + }, + { + "quoteText": "Look forward to spring as a time when you can start to see what nature has to offer once again.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "Lose an hour in the morning, and you will spend all day looking for it.", + "quoteAuthor": "Richard Whately" + }, + { + "quoteText": "Loss is nothing else but change,and change is Natures delight.", + "quoteAuthor": "Marcus Aurelius" + }, + { + "quoteText": "Lots of people want to ride with you in the limo, but what you want is someone who will take the bus with you when the limo breaks down.", + "quoteAuthor": "Oprah Winfrey" + }, + { + "quoteText": "Love all, trust a few, do wrong to none.", + "quoteAuthor": "William Shakespeare" + }, + { + "quoteText": "Love and compassion open our own inner life, reducing stress, distrust and loneliness.", + "quoteAuthor": "Dalai Lama" + }, + { + "quoteText": "Love at first sight is easy to understand; its when two people have been looking at each other for a lifetime that it becomes a miracle.", + "quoteAuthor": "Amy Bloom" + }, + { + "quoteText": "Love does not consist of gazing at each other, but in looking together in the same direction.", + "quoteAuthor": "Antoine de Saint-Exupery" + }, + { + "quoteText": "Love doesn't make the world go round, love is what makes the ride worthwhile.", + "quoteAuthor": "Elizabeth Browning" + }, + { + "quoteText": "Love is just a word until someone comes along and gives it meaning.", + "quoteAuthor": "" + }, + { + "quoteText": "Love is never lost. If not reciprocated, it will flow back and soften and purify the heart.", + "quoteAuthor": "Washington Irving" + }, + { + "quoteText": "Love is not blind; it simply enables one to see things others fail to see.", + "quoteAuthor": "" + }, + { + "quoteText": "Love is the flower you've got to let grow.", + "quoteAuthor": "John Lennon" + }, + { + "quoteText": "Love is the master key that opens the gates of happiness.", + "quoteAuthor": "Oliver Holmes" + }, + { + "quoteText": "Love is the only force capable of transforming an enemy into friend.", + "quoteAuthor": "Martin Luther King, Jr." + }, + { + "quoteText": "Love vanquishes time. To lovers, a moment can be eternity, eternity can be the tick of a clock.", + "quoteAuthor": "Mary Parrish" + }, + { + "quoteText": "Luck is what happens when preparation meets opportunity.", + "quoteAuthor": "Seneca" + }, + { + "quoteText": "Make it a rule of life never to regret and never to look back. Regret is an appalling waste of energy; you can't build on it; it's only for wallowing in.", + "quoteAuthor": "Katherine Mansfield" + }, + { + "quoteText": "Make the best use of what is in your power, and take the rest as it happens.", + "quoteAuthor": "Epictetus" + }, + { + "quoteText": "Make the most of yourself for that is all there is of you.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "Make the most of yourself, for that is all there is of you.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "Man cannot discover new oceans unless he has the courage to lose sight of the shore.", + "quoteAuthor": "André Gide" + }, + { + "quoteText": "Man is equally incapable of seeing the nothingness from which he emerges and the infinity in which he is engulfed.", + "quoteAuthor": "Blaise Pascal" + }, + { + "quoteText": "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.", + "quoteAuthor": "Jean-Paul Sartre" + }, + { + "quoteText": "Many of life's failures are people who did not realize how close they were to success when they gave up.", + "quoteAuthor": "Thomas Edison" + }, + { + "quoteText": "Many people have gone further than they thought they could because someone else thought they could.", + "quoteAuthor": "" + }, + { + "quoteText": "Many people think of prosperity that concerns money only to forget that true prosperity is of the mind.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "Maxim for life: You get treated in life the way you teach people to treat you.", + "quoteAuthor": "Wayne Dyer" + }, + { + "quoteText": "May our hearts garden of awakening bloom with hundreds of flowers.", + "quoteAuthor": "Thich Nhat Hanh" + }, + { + "quoteText": "Meaning is not what you start with but what you end up with.", + "quoteAuthor": "Peter Elbow" + }, + { + "quoteText": "Mediocrity knows nothing higher than itself, but talent instantly recognizes genius.", + "quoteAuthor": "Arthur Conan Doyle" + }, + { + "quoteText": "Meditation brings wisdom; lack of mediation leaves ignorance. Know well what leads you forward and what hold you back, and choose the path that leads to wisdom.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "Meditation is the dissolution of thoughts in eternal awareness or Pure consciousness without objectification, knowing without thinking, merging finitude in infinity.", + "quoteAuthor": "Voltaire" + }, + { + "quoteText": "Memory is the mother of all wisdom.", + "quoteAuthor": "Samuel Johnson" + }, + { + "quoteText": "Men are disturbed not by things, but by the view which they take of them.", + "quoteAuthor": "Epictetus" + }, + { + "quoteText": "Men in general judge more from appearances than from reality. All men have eyes, but few have the gift of penetration.", + "quoteAuthor": "Niccolo Machiavelli" + }, + { + "quoteText": "Men of perverse opinion do not know the excellence of what is in their hands, till some one dash it from them.", + "quoteAuthor": "Sophocles" + }, + { + "quoteText": "Mind is everything: muscle, pieces of rubber. All that I am, I am because of my mind.", + "quoteAuthor": "Paavo Nurmi" + }, + { + "quoteText": "Minds are like parachutes. They only function when open.", + "quoteAuthor": "Thomas Dewar" + }, + { + "quoteText": "Miracles come in moments. Be ready and willing.", + "quoteAuthor": "Wayne Dyer" + }, + { + "quoteText": "Mistakes are always forgivable, if one has the courage to admit them.", + "quoteAuthor": "Bruce Lee" + }, + { + "quoteText": "Moments of complete apathy are the best for new creations.", + "quoteAuthor": "Philip Breedveld" + }, + { + "quoteText": "Money was never a big motivation for me, except as a way to keep score. The real excitement is playing the game.", + "quoteAuthor": "Donald Trump" + }, + { + "quoteText": "Moral excellence comes about as a result of habit. We become just by doing just acts, temperate by doing temperate acts, brave by doing brave acts.", + "quoteAuthor": "Aristotle" + }, + { + "quoteText": "More often than not, anger is actually an indication of weakness rather than of strength.", + "quoteAuthor": "Dalai Lama" + }, + { + "quoteText": "More powerful than the will to win is the courage to begin.", + "quoteAuthor": "" + }, + { + "quoteText": "Most folks are about as happy as they make up their minds to be.", + "quoteAuthor": "Abraham Lincoln" + }, + { + "quoteText": "Most folks are as happy as they make up their minds to be.", + "quoteAuthor": "Abraham Lincoln" + }, + { + "quoteText": "Most great people have attained their greatest success just one step beyond their greatest failure.", + "quoteAuthor": "Napoleon Hill" + }, + { + "quoteText": "Most of our obstacles would melt away if, instead of cowering before them, we should make up our minds to walk boldly through them.", + "quoteAuthor": "Orison Marden" + }, + { + "quoteText": "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.", + "quoteAuthor": "Dale Carnegie" + }, + { + "quoteText": "Most of the shadows of life are caused by standing in our own sunshine.", + "quoteAuthor": "Ralph Waldo Emerson" + }, + { + "quoteText": "Most people are about as happy as they make up their minds to be", + "quoteAuthor": "Abraham Lincoln" + }, + { + "quoteText": "Most powerful is he who has himself in his own power.", + "quoteAuthor": "Seneca" + }, + { + "quoteText": "Most smiles are started by another smile.", + "quoteAuthor": "" + }, + { + "quoteText": "Mountains cannot be surmounted except by winding paths.", + "quoteAuthor": "Johann Wolfgang von Goethe" + }, + { + "quoteText": "Much wisdom often goes with fewer words.", + "quoteAuthor": "Sophocles" + }, + { + "quoteText": "Music in the soul can be heard by the universe.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "My advice to you is not to inquire why or whither, but just enjoy your ice cream while its on your plate - that's my philosophy.", + "quoteAuthor": "Thornton Wilder" + }, + { + "quoteText": "My mama always said: life's like a box of chocolate - you never know what you gonna get.", + "quoteAuthor": "Forrest Gump" + }, + { + "quoteText": "My reputation grows with every failure.", + "quoteAuthor": "George Shaw" + }, + { + "quoteText": "Myths which are believed in tend to become true.", + "quoteAuthor": "George Orwell" + }, + { + "quoteText": "Nature gave us one tongue and two ears so we could hear twice as much as we speak.", + "quoteAuthor": "Epictetus" + }, + { + "quoteText": "Nature is a mutable cloud which is always and never the same.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "Nature takes away any faculty that is not used.", + "quoteAuthor": "William R. Inge" + }, + { + "quoteText": "Neither a lofty degree of intelligence nor imagination nor both together go to the making of genius. Love, love, love, that is the soul of genius.", + "quoteAuthor": "Wolfgang Amadeus Mozart" + }, + { + "quoteText": "Neither genius, fame, nor love show the greatness of the soul. Only kindness can do that.", + "quoteAuthor": "Jean Lacordaire" + }, + { + "quoteText": "Never apologize for showing feeling. When you do so, you apologize for truth.", + "quoteAuthor": "Benjamin Disraeli" + }, + { + "quoteText": "Never apologize for showing feelings. When you do so, you apologize for the truth.", + "quoteAuthor": "Benjamin Disraeli" + }, + { + "quoteText": "Never be afraid to try, remember... Amateurs built the ark, Professionals built the Titanic.", + "quoteAuthor": "" + }, + { + "quoteText": "Never bend your head. Always hold it high. Look the world right in the eye.", + "quoteAuthor": "Helen Keller" + }, + { + "quoteText": "Never deny a diagnosis, but do deny the negative verdict that may go with it.", + "quoteAuthor": "Norman Cousins" + }, + { + "quoteText": "Never do things others can do and will do, if there are things others cannot do or will not do.", + "quoteAuthor": "Amelia Earhart" + }, + { + "quoteText": "Never doubt that a small group of thoughtful, committed people can change the world. Indeed. It is the only thing that ever has.", + "quoteAuthor": "Margaret Mead" + }, + { + "quoteText": "Never idealize others. They will never live up to your expectations.", + "quoteAuthor": "Leo Buscaglia" + }, + { + "quoteText": "Never ignore a gut feeling, but never believe that it's enough.", + "quoteAuthor": "Robert Heller" + }, + { + "quoteText": "Never let lack of money interfere with having fun.", + "quoteAuthor": "" + }, + { + "quoteText": "Never miss an opportunity to make others happy, even if you have to leave them alone in order to do it.", + "quoteAuthor": "" + }, + { + "quoteText": "Never mistake activity for achievement.", + "quoteAuthor": "John Wooden" + }, + { + "quoteText": "Never mistake motion for action.", + "quoteAuthor": "Ernest Hemingway" + }, + { + "quoteText": "Never promise more than you can perform.", + "quoteAuthor": "Publilius Syrus" + }, + { + "quoteText": "Never put off till tomorrow what you can do today.", + "quoteAuthor": "Thomas Jefferson" + }, + { + "quoteText": "Never regret. If it's good, it's wonderful. If it's bad, it's experience.", + "quoteAuthor": "Victoria Holt" + }, + { + "quoteText": "Never say there is nothing beautiful in the world any more. There is always something to make you wonder in the shape of a tree, the trembling of a leaf.", + "quoteAuthor": "Albert Schweitzer" + }, + { + "quoteText": "Never tell a young person that anything cannot be done. God may have been waiting centuries for someone ignorant enough of the impossible to do that very thing.", + "quoteAuthor": "John Holmes" + }, + { + "quoteText": "Never tell me the sky's the limit when there are footprints on the moon.", + "quoteAuthor": "" + }, + { + "quoteText": "Never, never, never give up.", + "quoteAuthor": "Winston Churchill" + }, + { + "quoteText": "No act of kindness, no matter how small, is ever wasted.", + "quoteAuthor": "Aesop" + }, + { + "quoteText": "No alibi will save you from accepting the responsibility.", + "quoteAuthor": "Napoleon Hill" + }, + { + "quoteText": "No day in which you learn something is a complete loss.", + "quoteAuthor": "David Eddings" + }, + { + "quoteText": "No garden is without its weeds.", + "quoteAuthor": "Thomas Fuller" + }, + { + "quoteText": "No is easier to do. Yes is easier to say.", + "quoteAuthor": "Jason Fried" + }, + { + "quoteText": "No man can succeed in a line of endeavor which he does not like.", + "quoteAuthor": "Napoleon Hill" + }, + { + "quoteText": "No man is free who is not master of himself.", + "quoteAuthor": "Epictetus" + }, + { + "quoteText": "No man was ever wise by chance.", + "quoteAuthor": "Seneca" + }, + { + "quoteText": "No matter how carefully you plan your goals they will never be more that pipe dreams unless you pursue them with gusto.", + "quoteAuthor": "W. Clement Stone" + }, + { + "quoteText": "No matter how hard the past, you can always begin again.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "No one can make you feel inferior without your consent.", + "quoteAuthor": "Eleanor Roosevelt" + }, + { + "quoteText": "No one has a finer command of language than the person who keeps his mouth shut.", + "quoteAuthor": "Sam Rayburn" + }, + { + "quoteText": "No one has ever become poor by giving.", + "quoteAuthor": "Anne Frank" + }, + { + "quoteText": "No one saves us but ourselves. No one can and no one may. We ourselves must walk the path.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "No person is your friend who demands your silence, or denies your right to grow.", + "quoteAuthor": "Alice Walker" + }, + { + "quoteText": "No pessimist ever discovered the secrets of the stars, or sailed to an uncharted land, or opened a new heaven to the human spirit.", + "quoteAuthor": "Helen Keller" + }, + { + "quoteText": "No snowflake in an avalanche ever feels responsible.", + "quoteAuthor": "Voltaire" + }, + { + "quoteText": "No valid plans for the future can be made by those who have no capacity for living now.", + "quoteAuthor": "Alan Watts" + }, + { + "quoteText": "No yesterdays are ever wasted for those who give themselves to today.", + "quoteAuthor": "Brendan Francis" + }, + { + "quoteText": "Nobody can do everything, but everybody can do something.", + "quoteAuthor": "" + }, + { + "quoteText": "Nobody made a greater mistake than he who did nothing because he could do only a little.", + "quoteAuthor": "Edmund Burke" + }, + { + "quoteText": "Nobody will believe in you unless you believe in yourself.", + "quoteAuthor": "Liberace" + }, + { + "quoteText": "Not every difficult and dangerous thing is suitable for training, but only that which is conducive to success in achieving the object of our effort.", + "quoteAuthor": "Epictetus" + }, + { + "quoteText": "Not what we have but what we enjoy constitutes our abundance.", + "quoteAuthor": "John Petit-Senn" + }, + { + "quoteText": "Nothing could be worse than the fear that one had given up too soon, and left one unexpended effort that might have saved the world.", + "quoteAuthor": "Jane Addams" + }, + { + "quoteText": "Nothing diminishes anxiety faster than action.", + "quoteAuthor": "Walter Anderson" + }, + { + "quoteText": "Nothing ever goes away until it has taught us what we need to know.", + "quoteAuthor": "Pema Chodron" + }, + { + "quoteText": "Nothing great was ever achieved without enthusiasm.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "Nothing happens unless first we dream.", + "quoteAuthor": "Carl Sandburg" + }, + { + "quoteText": "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.", + "quoteAuthor": "Marie Curie" + }, + { + "quoteText": "Nothing in life is to be feared. It is only to be understood.", + "quoteAuthor": "Marie Curie" + }, + { + "quoteText": "Nothing is a waste of time if you use the experience wisely.", + "quoteAuthor": "Rodin" + }, + { + "quoteText": "Nothing is at last sacred but the integrity of your own mind.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "Nothing is predestined: The obstacles of your past can become the gateways that lead to new beginnings.", + "quoteAuthor": "Ralph Blum" + }, + { + "quoteText": "Nothing is so strong as gentleness. Nothing is so gentle as real strength.", + "quoteAuthor": "Frances de Sales" + }, + { + "quoteText": "Nothing is softer or more flexible than water, yet nothing can resist it.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "Nothing strengthens authority so much as silence.", + "quoteAuthor": "Leonardo da Vinci" + }, + { + "quoteText": "Nothing will work unless you do.", + "quoteAuthor": "Maya Angelou" + }, + { + "quoteText": "Notice that the stiffest tree is most easily cracked, while the bamboo or willow survives by bending with the wind.", + "quoteAuthor": "Bruce Lee" + }, + { + "quoteText": "Numberless are the worlds wonders, but none more wonderful than man.", + "quoteAuthor": "Sophocles" + }, + { + "quoteText": "Obstacles are those frightful things you see when you take your eyes off your goal.", + "quoteAuthor": "Henry Ford" + }, + { + "quoteText": "Obstacles are those things you see when you take your eyes off the goal.", + "quoteAuthor": "Hannah More" + }, + { + "quoteText": "Of course there is no formula for success except perhaps an unconditional acceptance of life and what it brings.", + "quoteAuthor": "Arthur Rubinstein" + }, + { + "quoteText": "On every thorn, delightful wisdom grows, In every rill a sweet instruction flows.", + "quoteAuthor": "Edward Young" + }, + { + "quoteText": "Once we accept our limits, we go beyond them.", + "quoteAuthor": "Albert Einstein" + }, + { + "quoteText": "Once you choose hope, anythings possible.", + "quoteAuthor": "Christopher Reeve" + }, + { + "quoteText": "One does not discover new lands without consenting to lose sight of the shore for a very long time.", + "quoteAuthor": "André Gide" + }, + { + "quoteText": "One faces the future with ones past.", + "quoteAuthor": "Pearl Buck" + }, + { + "quoteText": "One fails forward toward success.", + "quoteAuthor": "Charles Kettering" + }, + { + "quoteText": "One may say the eternal mystery of the world is its comprehensibility.", + "quoteAuthor": "Albert Einstein" + }, + { + "quoteText": "One must be fond of people and trust them if one is not to make a mess of life.", + "quoteAuthor": "E. M. Forster" + }, + { + "quoteText": "One needs something to believe in, something for which one can have whole-hearted enthusiasm. One needs to feel that ones life has meaning, that one is needed in this world.", + "quoteAuthor": "Hannah Senesh" + }, + { + "quoteText": "One of the advantages of being disorderly is that one is constantly making exciting discoveries.", + "quoteAuthor": "A. A. Milne" + }, + { + "quoteText": "One secret of success in life is for a man to be ready for his opportunity when it comes.", + "quoteAuthor": "Benjamin Disraeli" + }, + { + "quoteText": "One that desires to excel should endeavour in those things that are in themselves most excellent.", + "quoteAuthor": "Epictetus" + }, + { + "quoteText": "One today is worth two tomorrows.", + "quoteAuthor": "Benjamin Franklin" + }, + { + "quoteText": "One who asks a question is a fool for five minutes; one who does not ask a question remains a fool forever.", + "quoteAuthor": "" + }, + { + "quoteText": "One who gains strength by overcoming obstacles possesses the only strength which can overcome adversity.", + "quoteAuthor": "Albert Schweitzer" + }, + { + "quoteText": "One who is too insistent on his own views, finds few to agree with him.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "Only do what your heart tells you.", + "quoteAuthor": "Princess Diana" + }, + { + "quoteText": "Only those who dare to fail greatly can ever achieve greatly.", + "quoteAuthor": "Robert Kennedy" + }, + { + "quoteText": "Only through our connectedness to others can we really know and enhance the self. And only through working on the self can we begin to enhance our connectedness to others.", + "quoteAuthor": "Harriet Lerner" + }, + { + "quoteText": "Only when we are no longer afraid do we begin to live.", + "quoteAuthor": "Dorothy Thompson" + }, + { + "quoteText": "Open minds lead to open doors.", + "quoteAuthor": "" + }, + { + "quoteText": "Opportunity is missed by most because it is dressed in overalls and looks like work.", + "quoteAuthor": "Thomas Edison" + }, + { + "quoteText": "Opportunity often comes disguised in the form of misfortune, or temporary defeat.", + "quoteAuthor": "Napoleon Hill" + }, + { + "quoteText": "Our ability to achieve happiness and success depends on the strength of our wings.", + "quoteAuthor": "Catherine Pulsifer" + }, + { + "quoteText": "Our deepest wishes are whispers of our authentic selves. We must learn to respect them. We must learn to listen.", + "quoteAuthor": "Sarah Breathnach" + }, + { + "quoteText": "Our distrust is very expensive.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "Our doubts are traitors and make us lose the good we often might win, by fearing to attempt.", + "quoteAuthor": "Jane Addams" + }, + { + "quoteText": "Our greatest glory is not in never failing but rising everytime we fall.", + "quoteAuthor": "" + }, + { + "quoteText": "Our greatest glory is not in never falling, but in rising every time we fall.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "Our greatness lies not so much in being able to remake the world as being able to remake ourselves.", + "quoteAuthor": "Mahatma Gandhi" + }, + { + "quoteText": "Our intention creates our reality.", + "quoteAuthor": "Wayne Dyer" + }, + { + "quoteText": "Our kindness may be the most persuasive argument for that which we believe.", + "quoteAuthor": "Gordon Hinckley" + }, + { + "quoteText": "Our lives are a sum total of the choices we have made.", + "quoteAuthor": "Wayne Dyer" + }, + { + "quoteText": "Our lives are the only meaningful expression of what we believe and in Whom we believe. And the only real wealth, for any of us, lies in our faith.", + "quoteAuthor": "Gordon Hinckley" + }, + { + "quoteText": "Our passion is our strength.", + "quoteAuthor": "Billie Armstrong" + }, + { + "quoteText": "Our strength grows out of our weaknesses.", + "quoteAuthor": "Ralph Waldo Emerson" + }, + { + "quoteText": "Our virtues and our failings are inseparable, like force and matter. When they separate, man is no more.", + "quoteAuthor": "Nikola Tesla" + }, + { + "quoteText": "Parents can only give good advice or put them on the right paths, but the final forming of a persons character lies in their own hands.", + "quoteAuthor": "Anne Frank" + }, + { + "quoteText": "Passion creates the desire for more and action fuelled by passion creates a future.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "Patience and perseverance have a magical effect before which difficulties disappear and obstacles vanish.", + "quoteAuthor": "John Adams" + }, + { + "quoteText": "Patience is a virtue but you will never ever accomplish anything if you don't exercise action over patience.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "Patience is the companion of wisdom.", + "quoteAuthor": "Saint Augustine" + }, + { + "quoteText": "Peace begins with a smile.", + "quoteAuthor": "Mother Teresa" + }, + { + "quoteText": "Peace cannot be kept by force. It can only be achieved by understanding.", + "quoteAuthor": "Albert Einstein" + }, + { + "quoteText": "Peace comes from within. Do not seek it without.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "Peace is not something you wish for. It's something you make, something you do, something you are, and something you give away.", + "quoteAuthor": "Robert Fulghum" + }, + { + "quoteText": "Peace of mind is not the absence of conflict from life, but the ability to cope with it.", + "quoteAuthor": "" + }, + { + "quoteText": "People are not lazy. They simply have impotent goals - that is, goals that do not inspire them.", + "quoteAuthor": "Tony Robbins" + }, + { + "quoteText": "People are so constituted that everybody would rather undertake what they see others do, whether they have an aptitude for it or not.", + "quoteAuthor": "Johann Wolfgang von Goethe" + }, + { + "quoteText": "People grow through experience if they meet life honestly and courageously. This is how character is built.", + "quoteAuthor": "Eleanor Roosevelt" + }, + { + "quoteText": "People may doubt what you say, but they will believe what you do.", + "quoteAuthor": "Lewis Cass" + }, + { + "quoteText": "People of mediocre ability sometimes achieve outstanding success because they don't know when to quit. Most men succeed because they are determined to.", + "quoteAuthor": "George Allen" + }, + { + "quoteText": "People seldom notice old clothes if you wear a big smile.", + "quoteAuthor": "Lee Mildon" + }, + { + "quoteText": "People take different roads seeking fulfilment and happiness. Just because theyre not on your road doesn't mean they've gotten lost.", + "quoteAuthor": "Dalai Lama" + }, + { + "quoteText": "People who say it cannot be done should not interrupt those who are doing it.", + "quoteAuthor": "Chinese proverb" + }, + { + "quoteText": "Perseverance is a great element of success. If you only knock long enough and loud enough at the gate, you are sure to wake up somebody.", + "quoteAuthor": "Henry Longfellow" + }, + { + "quoteText": "Pick battles big enough to matter, small enough to win.", + "quoteAuthor": "Jonathan Kozol" + }, + { + "quoteText": "Positive thinking will let you do everything better than negative thinking will.", + "quoteAuthor": "Zig Ziglar" + }, + { + "quoteText": "Practice yourself, for heavens sake in little things, and then proceed to greater.", + "quoteAuthor": "Epictetus" + }, + { + "quoteText": "Prejudice is a burden that confuses the past, threatens the future and renders the present inaccessible.", + "quoteAuthor": "Maya Angelou" + }, + { + "quoteText": "Problems are only opportunities with thorns on them.", + "quoteAuthor": "Hugh Miller" + }, + { + "quoteText": "Progress always involves risks. You can't steal second base and keep your foot on first.", + "quoteAuthor": "Frederick Wilcox" + }, + { + "quoteText": "Promises are the uniquely human way of ordering the future, making it predictable and reliable to the extent that this is humanly possible.", + "quoteAuthor": "Hannah Arendt" + }, + { + "quoteText": "Prosperity depends more on wanting what you have than having what you want.", + "quoteAuthor": "Geoffrey F. Abert" + }, + { + "quoteText": "Put your future in good hands - your own.", + "quoteAuthor": "" + }, + { + "quoteText": "Quality is never an accident; it is always the result of intelligent effort.", + "quoteAuthor": "John Ruskin" + }, + { + "quoteText": "Quality means doing it right when no one is looking.", + "quoteAuthor": "Henry Ford" + }, + { + "quoteText": "Rainbows apologize for angry skies.", + "quoteAuthor": "Sylvia Voirol" + }, + { + "quoteText": "Rather than wishing for change, you first must be prepared to change.", + "quoteAuthor": "Catherine Pulsifer" + }, + { + "quoteText": "Real magic in relationships means an absence of judgement of others.", + "quoteAuthor": "Wayne Dyer" + }, + { + "quoteText": "Real success is finding your lifework in the work that you love.", + "quoteAuthor": "David McCullough" + }, + { + "quoteText": "Reality does not conform to the ideal, but confirms it.", + "quoteAuthor": "Gustave Flaubert" + }, + { + "quoteText": "Reality is merely an illusion, albeit a very persistent one.", + "quoteAuthor": "Albert Einstein" + }, + { + "quoteText": "Reality leaves a lot to the imagination.", + "quoteAuthor": "John Lennon" + }, + { + "quoteText": "Reason and free inquiry are the only effectual agents against error.", + "quoteAuthor": "Thomas Jefferson" + }, + { + "quoteText": "Remember always that you not only have the right to be an individual, you have an obligation to be one.", + "quoteAuthor": "Eleanor Roosevelt" + }, + { + "quoteText": "Remember that failure is an event, not a person.", + "quoteAuthor": "Zig Ziglar" + }, + { + "quoteText": "Remember that sometimes not getting what you want is a wonderful stroke of luck.", + "quoteAuthor": "Dalai Lama" + }, + { + "quoteText": "Remembering a wrong is like carrying a burden on the mind.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "Respect is not something that you can ask for, buy or borrow. Respect is what you earn from each person no matter their background or status.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "Respect should be earned by actions, and not acquired by years.", + "quoteAuthor": "Frank Wright" + }, + { + "quoteText": "Responsibility is not inherited, it is a choice that everyone needs to make at some point in their life.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "Reviewing what you have learned and learning anew, you are fit to be a teacher.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "Risk more than others think is safe. Care more than others think is wise. Dream more than others think is practical.Expect more than others think is possible.", + "quoteAuthor": "Cadet Maxim" + }, + { + "quoteText": "Sadness flies away on the wings of time.", + "quoteAuthor": "Jean de la Fontaine" + }, + { + "quoteText": "Sadness may be part of life but there is no need to let it dominate your entire life.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "Saying thank you is more than good manners. It is good spirituality.", + "quoteAuthor": "Alfred Painter" + }, + { + "quoteText": "Science is organized knowledge. Wisdom is organized life.", + "quoteAuthor": "Immanuel Kant" + }, + { + "quoteText": "See the positive side, the potential, and make an effort.", + "quoteAuthor": "Dalai Lama" + }, + { + "quoteText": "Self-complacency is fatal to progress.", + "quoteAuthor": "Margaret Sangster" + }, + { + "quoteText": "Self-trust is the first secret of success.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "Set your goals high, and don't stop till you get there.", + "quoteAuthor": "Bo Jackson" + }, + { + "quoteText": "Setting an example is not the main means of influencing another, it is the only means.", + "quoteAuthor": "Albert Einstein" + }, + { + "quoteText": "Setting goals is the first step in turning the invisible into the visible.", + "quoteAuthor": "Tony Robbins" + }, + { + "quoteText": "Shoot for the moon. Even if you miss, you'll land among the stars.", + "quoteAuthor": "Les Brown" + }, + { + "quoteText": "Short words are best and the old words when short are best of all.", + "quoteAuthor": "Winston Churchill" + }, + { + "quoteText": "Silence is a fence around wisdom.", + "quoteAuthor": "German proverb" + }, + { + "quoteText": "Silence is a source of great strength.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "Silence is a true friend who never betrays.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "Silence is deep as Eternity, Speech is shallow as Time.", + "quoteAuthor": "Carlyle" + }, + { + "quoteText": "Silence is the true friend that never betrays.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "Silences make the real conversations between friends. Not the saying but the never needing to say is what counts.", + "quoteAuthor": "Margaret Runbeck" + }, + { + "quoteText": "Simply put, you believer that things or people make you unhappy, but this is not accurate. You make yourself unhappy.", + "quoteAuthor": "Wayne Dyer" + }, + { + "quoteText": "Sincerity is the way of Heaven. The attainment of sincerity is the way of men.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "Six essential qualities that are the key to success: Sincerity, personal integrity, humility, courtesy, wisdom, charity.", + "quoteAuthor": "William Menninger" + }, + { + "quoteText": "Skill to do comes of doing.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "Slow down and enjoy life. It's not only the scenery you miss by going too fast - you also miss the sense of where you are going and why.", + "quoteAuthor": "Eddie Cantor" + }, + { + "quoteText": "Slow down and everything you are chasing will come around and catch you.", + "quoteAuthor": "John De Paola" + }, + { + "quoteText": "Small opportunities are often the beginning of great enterprises.", + "quoteAuthor": "Demosthenes" + }, + { + "quoteText": "Smile, breathe and go slowly.", + "quoteAuthor": "Thich Nhat Hanh" + }, + { + "quoteText": "Smile, breathe, and go slowly.", + "quoteAuthor": "Thich Nhat Hanh" + }, + { + "quoteText": "Snowflakes are one of natures most fragile things, but just look what they can do when they stick together.", + "quoteAuthor": "Vista Kelly" + }, + { + "quoteText": "So is cheerfulness, or a good temper, the more it is spent, the more remains.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "So long as a person is capable of self-renewal they are a living being.", + "quoteAuthor": "Henri-Frederic Amiel" + }, + { + "quoteText": "Society develops wit, but its contemplation alone forms genius.", + "quoteAuthor": "Madame de Stael" + }, + { + "quoteText": "Some people are always grumbling because roses have thorns; I am thankful that thorns have roses.", + "quoteAuthor": "Alphonse Karr" + }, + { + "quoteText": "Some people think it's holding that makes one strong - sometimes it's letting go.", + "quoteAuthor": "" + }, + { + "quoteText": "Some people thrive on huge, dramatic change. Some people prefer the slow and steady route. Do what's right for you.", + "quoteAuthor": "Julie Morgenstern" + }, + { + "quoteText": "Some pursue happiness, others create it.", + "quoteAuthor": "" + }, + { + "quoteText": "Someone is special only if you tell them.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "Someone remembers, someone cares; your name is whispered in someone's prayers.", + "quoteAuthor": "" + }, + { + "quoteText": "Something opens our wings. Something makes boredom and hurt disappear. Someone fills the cup in front of us: We taste only sacredness.", + "quoteAuthor": "Rumi" + }, + { + "quoteText": "Sometimes by losing a battle you find a new way to win the war.", + "quoteAuthor": "Donald Trump" + }, + { + "quoteText": "Sometimes it is better to lose and do the right thing than to win and do the wrong thing.", + "quoteAuthor": "Tony Blair" + }, + { + "quoteText": "Sometimes our fate resembles a fruit tree in winter. Who would think that those branches would turn green again and blossom, but we hope it, we know it.", + "quoteAuthor": "Johann Wolfgang von Goethe" + }, + { + "quoteText": "Sometimes the biggest act of courage is a small one.", + "quoteAuthor": "Lauren Raffo" + }, + { + "quoteText": "Sometimes the cards we are dealt are not always fair. However you must keep smiling and moving on.", + "quoteAuthor": "Tom Jackson" + }, + { + "quoteText": "Sometimes the most important thing in a whole day is the rest we take between two deep breaths.", + "quoteAuthor": "Etty Hillesum" + }, + { + "quoteText": "Sometimes your joy is the source of your smile, but sometimes your smile can be the source of your joy.", + "quoteAuthor": "Thich Nhat Hanh" + }, + { + "quoteText": "Sooner or later, those who win are those who think they can.", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "Speak low, if you speak love.", + "quoteAuthor": "William Shakespeare" + }, + { + "quoteText": "Speak when you are angry and you will make the best speech you will ever regret.", + "quoteAuthor": "Ambrose Bierce" + }, + { + "quoteText": "Spirituality can be severed from both vicious sectarianism and thoughtless banalities. Spirituality, I have come to see, is nothing less than the thoughtful love of life.", + "quoteAuthor": "Robert C. Solomon" + }, + { + "quoteText": "Spring is a time for rebirth and the fulfilment of new life.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "Stay away from what might have been and look at what will be.", + "quoteAuthor": "Marsha Petrie Sue" + }, + { + "quoteText": "Stay committed to your decisions, but stay flexible in your approach.", + "quoteAuthor": "Tony Robbins" + }, + { + "quoteText": "Staying in one place is the best path to be taken over and surpassed by many.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "Strength does not come from physical capacity. It comes from an indomitable will.", + "quoteAuthor": "Mahatma Gandhi" + }, + { + "quoteText": "Strength to carry on despite the odds means you have faith in your own abilities and know how.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "Strong beliefs win strong men, and then make them stronger.", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "Strong people make as many mistakes as weak people. Difference is that strong people admit their mistakes, laugh at them, learn from them. That is how they become strong.", + "quoteAuthor": "Richard Needham" + }, + { + "quoteText": "Study the past, if you would divine the future.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "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.", + "quoteAuthor": "David Rockefeller" + }, + { + "quoteText": "Success is determined by those whom prove the impossible, possible.", + "quoteAuthor": "James Pence" + }, + { + "quoteText": "Success is getting what you want. Happiness is wanting what you get.", + "quoteAuthor": "Dale Carnegie" + }, + { + "quoteText": "Success is not the key to happiness. Happiness is the key to success. If you love what you are doing, you will be successful.", + "quoteAuthor": "Albert Schweitzer" + }, + { + "quoteText": "Success means having the courage, the determination, and the will to become the person you believe you were meant to be.", + "quoteAuthor": "George Sheehan" + }, + { + "quoteText": "Successful people ask better questions, and as a result, they get better answers.", + "quoteAuthor": "Tony Robbins" + }, + { + "quoteText": "Sunshine is delicious, rain is refreshing, wind braces us up, snow is exhilarating; there is really no such thing as bad weather, only different kinds of good weather.", + "quoteAuthor": "John Ruskin" + }, + { + "quoteText": "Take heed: you do not find what you do not seek.", + "quoteAuthor": "English proverb" + }, + { + "quoteText": "Take it easy - but take it.", + "quoteAuthor": "Woody Guthrie" + }, + { + "quoteText": "Take no thought of who is right or wrong or who is better than. Be not for or against.", + "quoteAuthor": "Bruce Lee" + }, + { + "quoteText": "Take rest; a field that has rested gives a bountiful crop.", + "quoteAuthor": "Ovid" + }, + { + "quoteText": "Take things as they are. Punch when you have to punch. Kick when you have to kick.", + "quoteAuthor": "Bruce Lee" + }, + { + "quoteText": "Take time to deliberate, but when the time for action has arrived, stop thinking and go in.", + "quoteAuthor": "Napoleon Bonaparte" + }, + { + "quoteText": "Talk doesn't cook rice.", + "quoteAuthor": "Chinese proverb" + }, + { + "quoteText": "Tension is who you think you should be. Relaxation is who you are.", + "quoteAuthor": "Chinese proverb" + }, + { + "quoteText": "Thats the risk you take if you change: that people you've been involved with won't like the new you. But other people who do will come along.", + "quoteAuthor": "Lisa Alther" + }, + { + "quoteText": "The Creator has not given you a longing to do that which you have no ability to do.", + "quoteAuthor": "Orison Marden" + }, + { + "quoteText": "The Superior Man is aware of Righteousness, the inferior man is aware of advantage.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "The aim of life is self-development. To realize ones nature perfectly - that is what each of us is here for.", + "quoteAuthor": "Oscar Wilde" + }, + { + "quoteText": "The amount of happiness that you have depends on the amount of freedom you have in your heart.", + "quoteAuthor": "Thich Nhat Hanh" + }, + { + "quoteText": "The art of progress is to preserve order amid change, and to preserve change amid order.", + "quoteAuthor": "Alfred Whitehead" + }, + { + "quoteText": "The awareness of our own strength makes us modest.", + "quoteAuthor": "Paul Cezanne" + }, + { + "quoteText": "The beginning is always today.", + "quoteAuthor": "Mary Wollstonecraft" + }, + { + "quoteText": "The beginning of knowledge is the discovery of something we do not understand.", + "quoteAuthor": "Frank Herbert" + }, + { + "quoteText": "The beginning of wisdom is found in doubting; by doubting we come to the question, and by seeking we may come upon the truth.", + "quoteAuthor": "Pierre Abelard" + }, + { + "quoteText": "The best and most beautiful things in the world cannot be seen, nor touched... but are felt in the heart.", + "quoteAuthor": "Helen Keller" + }, + { + "quoteText": "The best cure for the body is a quiet mind.", + "quoteAuthor": "Napoleon Bonaparte" + }, + { + "quoteText": "The best place to find a helping hand is at the end of your own arm.", + "quoteAuthor": "" + }, + { + "quoteText": "The best teacher is experience learned from failures.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "The best thing about the future is that it only comes one day at a time.", + "quoteAuthor": "Abraham Lincoln" + }, + { + "quoteText": "The best thing in every noble dream is the dreamer...", + "quoteAuthor": "Moncure Conway" + }, + { + "quoteText": "The best way out is always through.", + "quoteAuthor": "Robert Frost" + }, + { + "quoteText": "The best way to pay for a lovely moment is to enjoy it.", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "The best way to predict your future is to create it.", + "quoteAuthor": "Peter Drucker" + }, + { + "quoteText": "The biggest adventure you can ever take is to live the life of your dreams.", + "quoteAuthor": "Oprah Winfrey" + }, + { + "quoteText": "The bird of paradise alights only upon the hand that does not grasp.", + "quoteAuthor": "John Berry" + }, + { + "quoteText": "The cause is hidden. The effect is visible to all.", + "quoteAuthor": "Ovid" + }, + { + "quoteText": "The cautious seldom err.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "The conditions of conquest are always easy. We have but to toil awhile, endure awhile, believe always, and never turn back.", + "quoteAuthor": "Seneca" + }, + { + "quoteText": "The cosmos is neither moral or immoral; only people are. He who would move the world must first move himself.", + "quoteAuthor": "Edward Ericson" + }, + { + "quoteText": "The cure for boredom is curiosity. There is no cure for curiosity.", + "quoteAuthor": "Ellen Parr" + }, + { + "quoteText": "The day always looks brighter from behind a smile.", + "quoteAuthor": "" + }, + { + "quoteText": "The day is already blessed, find peace within it.", + "quoteAuthor": "" + }, + { + "quoteText": "The day you decide to do it is your lucky day.", + "quoteAuthor": "Japanese proverb" + }, + { + "quoteText": "The deepest craving of human nature is the need to be appreciated.", + "quoteAuthor": "William James" + }, + { + "quoteText": "The difference between what we do and what we are capable of doing would suffice to solve most of the worlds problems.", + "quoteAuthor": "Mohandas Gandhi" + }, + { + "quoteText": "The difficulties of life are intended to make us better, not bitter.", + "quoteAuthor": "" + }, + { + "quoteText": "The doors we open and close each day decide the lives we live.", + "quoteAuthor": "Flora Whittemore" + }, + { + "quoteText": "The dream was always running ahead of me. To catch up, to live for a moment in unison with it, that was the miracle.", + "quoteAuthor": "Anais Nin" + }, + { + "quoteText": "The energy of the mind is the essence of life.", + "quoteAuthor": "Aristotle" + }, + { + "quoteText": "The exercise of an extraordinary gift is the supremest pleasure in life.", + "quoteAuthor": "Mark Twain" + }, + { + "quoteText": "The eye sees only what the mind is prepared to comprehend.", + "quoteAuthor": "Henri Bergson" + }, + { + "quoteText": "The final proof of greatness lies in being able to endure criticism without resentment.", + "quoteAuthor": "Elbert Hubbard" + }, + { + "quoteText": "The first duty of a human being is to assume the right functional relationship to society - more briefly, to find your real job, and do it.", + "quoteAuthor": "Charlotte Perkins Gilman" + }, + { + "quoteText": "The first requisite for success is the ability to apply your physical and mental energies to one problem incessantly without growing weary.", + "quoteAuthor": "Thomas Edison" + }, + { + "quoteText": "The first step to getting the things you want out of life is this: decide what you want.", + "quoteAuthor": "Ben Stein" + }, + { + "quoteText": "The foolish man seeks happiness in the distance, the wise grows it under his feet.", + "quoteAuthor": "James Oppenheim" + }, + { + "quoteText": "The foolish man seeks happiness in the distance; the wise grows it under his feet.", + "quoteAuthor": "James Openheim" + }, + { + "quoteText": "The foot feels the foot when it feels the ground.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "The fox has many tricks. The hedgehog has but one. But that is the best of all.", + "quoteAuthor": "Desiderius Erasmus" + }, + { + "quoteText": "The free man is he who does not fear to go to the end of his thought.", + "quoteAuthor": "Leon Blum" + }, + { + "quoteText": "The future belongs to those who believe in the beauty of their dreams.", + "quoteAuthor": "Eleanor Roosevelt" + }, + { + "quoteText": "The future is an opaque mirror. Anyone who tries to look into it sees nothing but the dim outlines of an old and worried face.", + "quoteAuthor": "Jim Bishop" + }, + { + "quoteText": "The future is completely open, and we are writing it moment to moment.", + "quoteAuthor": "Pema Chodron" + }, + { + "quoteText": "The grand essentials of happiness are: something to do, something to love, and something to hope for.", + "quoteAuthor": "Chalmers" + }, + { + "quoteText": "The greater part of human pain is unnecessary. It is self-created as long as the unobserved mind runs your life.", + "quoteAuthor": "Eckhart Tolle" + }, + { + "quoteText": "The greatest antidote to insecurity and the sense of fear is compassion - it brings one back to the basis of one's inner strength", + "quoteAuthor": "Dalai Lama" + }, + { + "quoteText": "The greatest barrier to success is the fear of failure.", + "quoteAuthor": "Eriksson" + }, + { + "quoteText": "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.", + "quoteAuthor": "Michelangelo" + }, + { + "quoteText": "The greatest discovery of our generation is that human beings can alter their lives by altering their attitudes of mind. As you think, so shall you be.", + "quoteAuthor": "William James" + }, + { + "quoteText": "The greatest good you can do for another is not just share your riches, but reveal to them their own.", + "quoteAuthor": "Benjamin Disraeli" + }, + { + "quoteText": "The greatest good you can do for another is not just to share your riches but to reveal to him his own.", + "quoteAuthor": "Benjamin Disraeli" + }, + { + "quoteText": "The greatest minds are capable of the greatest vices as well as of the greatest virtues.", + "quoteAuthor": "Rene Descartes" + }, + { + "quoteText": "The greatest mistake you can make in life is to be continually fearing you will make one.", + "quoteAuthor": "Elbert Hubbard" + }, + { + "quoteText": "The greatest obstacle to connecting with our joy is resentment.", + "quoteAuthor": "Pema Chodron" + }, + { + "quoteText": "The greatest part of our happiness depends on our dispositions, not our circumstances.", + "quoteAuthor": "Martha Washington" + }, + { + "quoteText": "The greatest pleasure I know is to do a good action by stealth, and to have it found out by accident.", + "quoteAuthor": "Charles Lamb" + }, + { + "quoteText": "The greatest remedy for anger is delay.", + "quoteAuthor": "Seneca" + }, + { + "quoteText": "The greatest way to live with honor in this world is to be what we pretend to be.", + "quoteAuthor": "Socrates" + }, + { + "quoteText": "The greatest way to live with honour in this world is to be what we pretend to be.", + "quoteAuthor": "Socrates" + }, + { + "quoteText": "The happiness of a man in this life does not consist in the absence but in the mastery of his passions.", + "quoteAuthor": "Alfred Tennyson" + }, + { + "quoteText": "The happiness that is genuinely satisfying is accompanied by the fullest exercise of our faculties and the fullest realization of the world in which we live.", + "quoteAuthor": "Bertrand Russell" + }, + { + "quoteText": "The happy and efficient people in this world are those who accept trouble as a normal detail of human life and resolve to capitalize it when it comes along.", + "quoteAuthor": "H. Bertram Lewis" + }, + { + "quoteText": "The harder you fall, the higher you bounce.", + "quoteAuthor": "" + }, + { + "quoteText": "The heart has eyes which the brain knows nothing of.", + "quoteAuthor": "Charles Perkhurst" + }, + { + "quoteText": "The heart has its reasons which reason knows not of.", + "quoteAuthor": "Blaise Pascal" + }, + { + "quoteText": "The height of your accomplishments will equal the depth of your convictions.", + "quoteAuthor": "William Scolavino" + }, + { + "quoteText": "The highest stage in moral ure at which we can arrive is when we recognize that we ought to control our thoughts.", + "quoteAuthor": "Charles Darwin" + }, + { + "quoteText": "The important thing is this: to be able at any moment to sacrifice what we are for what we could become.", + "quoteAuthor": "Charles Dubois" + }, + { + "quoteText": "The industrial landscape is already littered with remains of once successful companies that could not adapt their strategic vision to altered conditions of competition.", + "quoteAuthor": "Abernathy" + }, + { + "quoteText": "The journey of a thousand miles begins with one step.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "The key to growth is the introduction of higher dimensions of consciousness into our awareness.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "The key to transforming our hearts and minds is to have an understanding of how our thoughts and emotions work.", + "quoteAuthor": "Dalai Lama" + }, + { + "quoteText": "The ladder of success is never crowded at the top.", + "quoteAuthor": "Napoleon Hill" + }, + { + "quoteText": "The least movement is of importance to all nature. The entire ocean is affected by a pebble.", + "quoteAuthor": "Blaise Pascal" + }, + { + "quoteText": "The least of things with a meaning is worth more in life than the greatest of things without it.", + "quoteAuthor": "Carl Jung" + }, + { + "quoteText": "The less effort, the faster and more powerful you will be.", + "quoteAuthor": "Bruce Lee" + }, + { + "quoteText": "The longer we dwell on our misfortunes, the greater is their power to harm us.", + "quoteAuthor": "Voltaire" + }, + { + "quoteText": "The man who trusts men will make fewer mistakes than he who distrusts them.", + "quoteAuthor": "Cavour" + }, + { + "quoteText": "The mark of your ignorance is the depth of your belief in injustice and tragedy. What the caterpillar calls the end of the world, the Master calls the butterfly.", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "The meaning I picked, the one that changed my life: Overcome fear, behold wonder.", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "The mind is everything. What you think you become.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "The mind unlearns with difficulty what it has long learned.", + "quoteAuthor": "Seneca" + }, + { + "quoteText": "The minute you settle for less than you deserve, you get even less than you settled for.", + "quoteAuthor": "Maureen Dowd" + }, + { + "quoteText": "The moment one gives close attention to anything, even a blade of grass, it becomes a mysterious, awesome, indescribably magnificent world in itself.", + "quoteAuthor": "Henry Miller" + }, + { + "quoteText": "The moment one gives close attention to anything, it becomes a mysterious, awesome, indescribably magnificent world in itself.", + "quoteAuthor": "Henry Miller" + }, + { + "quoteText": "The more light you allow within you, the brighter the world you live in will be.", + "quoteAuthor": "Shakti Gawain" + }, + { + "quoteText": "The more you care, the stronger you can be.", + "quoteAuthor": "Jim Rohn" + }, + { + "quoteText": "The more you know yourself, the more you forgive yourself.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "The most beautiful things in the world cannot be seen or even touched. They must be felt with the heart.", + "quoteAuthor": "Helen Keller" + }, + { + "quoteText": "The most complicated achievements of thought are possible without the assistance of consciousness.", + "quoteAuthor": "Sigmund Freud" + }, + { + "quoteText": "The most dangerous way to lose time is not to spend it having fun, but to spend it doing fake work. When you spend time having fun, you know you're being self-indulgent.", + "quoteAuthor": "Paul Graham" + }, + { + "quoteText": "The most decisive actions of our life... are most often unconsidered actions.", + "quoteAuthor": "André Gide" + }, + { + "quoteText": "The most formidable weapon against errors of every kind is reason.", + "quoteAuthor": "Thomas Paine" + }, + { + "quoteText": "The most important point is to accept yourself and stand on your two feet.", + "quoteAuthor": "Shunryu Suzuki" + }, + { + "quoteText": "The most important thing is transforming our minds, for a new way of thinking, a new outlook: we should strive to develop a new inner world.", + "quoteAuthor": "Dalai Lama" + }, + { + "quoteText": "The most precious gift we can offer anyone is our attention. When mindfulness embraces those we love, they will bloom like flowers.", + "quoteAuthor": "Thich Nhat Hanh" + }, + { + "quoteText": "The most successful people are those who are good at plan B.", + "quoteAuthor": "James Yorke" + }, + { + "quoteText": "The noblest worship is to make yourself as good and as just as you can.", + "quoteAuthor": "Isocrates" + }, + { + "quoteText": "The odds of hitting your target go up dramatically when you aim at it.", + "quoteAuthor": "Mal Pancoast" + }, + { + "quoteText": "The one who always loses, is the only person who gets the reward.", + "quoteAuthor": "Claire Charmont" + }, + { + "quoteText": "The only Zen you find on the tops of mountains is the Zen you bring up there.", + "quoteAuthor": "Robert Pirsig" + }, + { + "quoteText": "The only difference between your abilities and others is the ability to put yourself in their shoes and actually try.", + "quoteAuthor": "Leonardo Ruiz" + }, + { + "quoteText": "The only limit to our realization of tomorrow will be our doubts of today.", + "quoteAuthor": "Franklin Roosevelt" + }, + { + "quoteText": "The only limit to your impact is your imagination and commitment.", + "quoteAuthor": "Tony Robbins" + }, + { + "quoteText": "The only person who never makes mistakes is the person who never does anything.", + "quoteAuthor": "Denis Waitley" + }, + { + "quoteText": "The only real failure in life is not to be true to the best one knows.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "The only real mistake is the one from which we learn nothing.", + "quoteAuthor": "John Powell" + }, + { + "quoteText": "The only real valuable thing is intuition.", + "quoteAuthor": "Albert Einstein" + }, + { + "quoteText": "The only thing to do with good advice is to pass it on. It is never of any use to oneself.", + "quoteAuthor": "Oscar Wilde" + }, + { + "quoteText": "The only way to have a friend is to be one.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "The only way to tell the truth is to speak with kindness. Only the words of a loving man can be heard.", + "quoteAuthor": "Henry Thoreau" + }, + { + "quoteText": "The pain passes, but the beauty remains.", + "quoteAuthor": "Pierre Auguste Renoir" + }, + { + "quoteText": "The past has no power to stop you from being present now. Only your grievance about the past can do that.", + "quoteAuthor": "Eckhart Tolle" + }, + { + "quoteText": "The path to success is to take massive, determined action.", + "quoteAuthor": "Anthony Robbins" + }, + { + "quoteText": "The path to success is to take massive, determined action.", + "quoteAuthor": "Tony Robbins" + }, + { + "quoteText": "The person born with a talent they are meant to use will find their greatest happiness in using it.", + "quoteAuthor": "Johann Wolfgang von Goethe" + }, + { + "quoteText": "The person who lives life fully, glowing with life's energy, is the person who lives a successful life.", + "quoteAuthor": "Daisaku Ikeda" + }, + { + "quoteText": "The person who makes a success of living is the one who see his goal steadily and aims for it unswervingly. That is dedication.", + "quoteAuthor": "Cecil B. DeMille" + }, + { + "quoteText": "The personal life deeply lived always expands into truths beyond itself.", + "quoteAuthor": "Anais Nin" + }, + { + "quoteText": "The pessimist sees difficulty in every opportunity. The optimist sees the opportunity in every difficulty.", + "quoteAuthor": "Winston Churchill" + }, + { + "quoteText": "The place to improve the world is first in one's own heart and head and hands.", + "quoteAuthor": "Robert M. Pirsig" + }, + { + "quoteText": "The poor man is not he who is without a cent, but he who is without a dream.", + "quoteAuthor": "Harry Kemp" + }, + { + "quoteText": "The possession of knowledge does not kill the sense of wonder and mystery. There is always more mystery.", + "quoteAuthor": "Anais Nin" + }, + { + "quoteText": "The possibilities are numerous once we decide to act and not react.", + "quoteAuthor": "George Bernard Shaw" + }, + { + "quoteText": "The power of intuitive understanding will protect you from harm until the end of your days.", + "quoteAuthor": "Laozi" + }, + { + "quoteText": "The price of greatness is responsibility.", + "quoteAuthor": "Winston Churchill" + }, + { + "quoteText": "The purpose of learning is growth, and our minds, unlike our bodies, can continue growing as we continue to live.", + "quoteAuthor": "Mortimer Adler" + }, + { + "quoteText": "The real measure of your wealth is how much youd be worth if you lost all your money.", + "quoteAuthor": "" + }, + { + "quoteText": "The really unhappy person is the one who leaves undone what they can do, and starts doing what they don't understand; no wonder they come to grief.", + "quoteAuthor": "Johann Wolfgang von Goethe" + }, + { + "quoteText": "The reason most goals are not achieved is that we spend our time doing second things first.", + "quoteAuthor": "Robert McKain" + }, + { + "quoteText": "The reasonable man adapts himself to the world; the unreasonable man persists in trying to adapt the world to himself. Therefore, all progress depends on the unreasonable man.", + "quoteAuthor": "George Shaw" + }, + { + "quoteText": "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.", + "quoteAuthor": "Margaret Smith" + }, + { + "quoteText": "The road leading to a goal does not separate you from the destination; it is essentially a part of it.", + "quoteAuthor": "Charles DeLint" + }, + { + "quoteText": "The secret of joy in work is contained in one word - excellence. To know how to do something well is to enjoy it.", + "quoteAuthor": "Pearl Buck" + }, + { + "quoteText": "The secret of success is constancy to purpose.", + "quoteAuthor": "Benjamin Disraeli" + }, + { + "quoteText": "The secret to a rich life is to have more beginnings than endings.", + "quoteAuthor": "Dave Weinbaum" + }, + { + "quoteText": "The self is not something ready-made, but something in continuous formation through choice of action.", + "quoteAuthor": "John Dewey" + }, + { + "quoteText": "The shoe that fits one person pinches another; there is no recipe for living that suits all cases.", + "quoteAuthor": "Carl Jung" + }, + { + "quoteText": "The shortest answer is doing.", + "quoteAuthor": "Lord Herbert" + }, + { + "quoteText": "The simplest things are often the truest.", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "The smallest act of kindness is worth more than the grandest intention.", + "quoteAuthor": "Oscar Wilde" + }, + { + "quoteText": "The smallest flower is a thought, a life answering to some feature of the Great Whole, of whom they have a persistent intuition.", + "quoteAuthor": "Honore de Balzac" + }, + { + "quoteText": "The spirit, the will to win, and the will to excel, are the things that endure. These qualities are so much more important than the events that occur.", + "quoteAuthor": "Vincent Lombardi" + }, + { + "quoteText": "The steeper the mountain the harder the climb the better the view from the finishing line", + "quoteAuthor": "" + }, + { + "quoteText": "The superior man acts before he speaks, and afterwards speaks according to his action.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "The superior man is modest in his speech, but exceeds in his actions.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "The superior man is satisfied and composed; the mean man is always full of distress.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "The thing always happens that you really believe in; and the belief in a thing makes it happen.", + "quoteAuthor": "Frank Wright" + }, + { + "quoteText": "The things that one most wants to do are the things that are probably most worth doing.", + "quoteAuthor": "Winifred Holtby" + }, + { + "quoteText": "The thought manifests as the word. The word manifests as the deed. The deed develops into habit. And the habit hardens into character.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "The thoughts we choose to think are the tools we use to paint the canvas of our lives.", + "quoteAuthor": "Louise Hay" + }, + { + "quoteText": "The time you think you're missing, misses you too.", + "quoteAuthor": "Ymber Delecto" + }, + { + "quoteText": "The trick is in what one emphasizes. We either make ourselves miserable, or we make ourselves happy. The amount of work is the same.", + "quoteAuthor": "Carlos Castaneda" + }, + { + "quoteText": "The trouble with most people is that they think with their hopes or fears or wishes rather than with their minds.", + "quoteAuthor": "Will Durant" + }, + { + "quoteText": "The true way to render ourselves happy is to love our work and find in it our pleasure.", + "quoteAuthor": "Francoise de Motteville" + }, + { + "quoteText": "The truest greatness lies in being kind, the truest wisdom in a happy mind.", + "quoteAuthor": "Ella Wilcox" + }, + { + "quoteText": "The truest wisdom is a resolute determination.", + "quoteAuthor": "Napoleon Bonaparte" + }, + { + "quoteText": "The truth is always exciting. Speak it, then. Life is dull without it.", + "quoteAuthor": "Pearl Buck" + }, + { + "quoteText": "The truth of the matter is that you always know the right thing to do. The hard part is doing it.", + "quoteAuthor": "Norman Schwarzkopf" + }, + { + "quoteText": "The truth which has made us free will in the end make us glad also.", + "quoteAuthor": "Felix Adler" + }, + { + "quoteText": "The truth you believe and cling to makes you unavailable to hear anything new.", + "quoteAuthor": "Pema Chodron" + }, + { + "quoteText": "The two most powerful warriors are patience and time.", + "quoteAuthor": "Leo Tolstoy" + }, + { + "quoteText": "The undertaking of a new action brings new strength.", + "quoteAuthor": "Richard Evans" + }, + { + "quoteText": "The universe is full of magical things, patiently waiting for our wits to grow sharper.", + "quoteAuthor": "Eden Phillpotts" + }, + { + "quoteText": "The universe is made of stories, not atoms.", + "quoteAuthor": "Muriel Rukeyser" + }, + { + "quoteText": "The universe is transformation; our life is what our thoughts make it.", + "quoteAuthor": "Marcus Aurelius" + }, + { + "quoteText": "The way is not in the sky. The way is in the heart.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "The way we communicate with others and with ourselves ultimately determines the quality of our lives.", + "quoteAuthor": "Tony Robbins" + }, + { + "quoteText": "The weak can never forgive. Forgiveness is the attribute of the strong.", + "quoteAuthor": "Mohandas Gandhi" + }, + { + "quoteText": "The winds and waves are always on the side of the ablest navigators.", + "quoteAuthor": "Edward Gibbon" + }, + { + "quoteText": "The winner ain't the one with the fastest car it's the one who refuses to lose.", + "quoteAuthor": "Dale Earnhardt" + }, + { + "quoteText": "The wise man does not lay up his own treasures. The more he gives to others, the more he has for his own.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "The wisest men follow their own direction.", + "quoteAuthor": "Euripides" + }, + { + "quoteText": "The world cares very little about what a man or woman knows; it is what a man or woman is able to do that counts.", + "quoteAuthor": "Booker Washington" + }, + { + "quoteText": "The world doesn't happen to you it happens from you.", + "quoteAuthor": "" + }, + { + "quoteText": "The world has the habit of making room for the man whose actions show that he knows where he is going.", + "quoteAuthor": "Napoleon Hill" + }, + { + "quoteText": "The world is a book, and those who do not travel read only a page.", + "quoteAuthor": "Augustinus Sanctus" + }, + { + "quoteText": "The world is always in movement.", + "quoteAuthor": "V. Naipaul" + }, + { + "quoteText": "The world is but a canvas to the imagination.", + "quoteAuthor": "Henry Thoreau" + }, + { + "quoteText": "The world is round and the place which may seem like the end may also be the beginning.", + "quoteAuthor": "Ivy Baker Priest" + }, + { + "quoteText": "The world makes way for the man who knows where he is going.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "The world turns aside to let any man pass who knows where he is going.", + "quoteAuthor": "Epictetus" + }, + { + "quoteText": "The worst bankrupt in the world is the person who has lost his enthusiasm.", + "quoteAuthor": "H. W. Arnold" + }, + { + "quoteText": "The years teach much which the days never know.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "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.", + "quoteAuthor": "Mark Twain" + }, + { + "quoteText": "There are no failures - just experiences and your reactions to them.", + "quoteAuthor": "Tom Krause" + }, + { + "quoteText": "There are no failures. Just experiences and your reactions to them.", + "quoteAuthor": "Tom Krause" + }, + { + "quoteText": "There are no limitations to the mind except those we acknowledge.", + "quoteAuthor": "Napoleon Hill" + }, + { + "quoteText": "There are only two mistakes one can make along the road to truth; not going all the way, and not starting.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "There are only two ways to live your life. One is as though nothing is a miracle. The other is as though everything is a miracle.", + "quoteAuthor": "Albert Einstein" + }, + { + "quoteText": "There are people who have money and people who are rich.", + "quoteAuthor": "Coco Chanel" + }, + { + "quoteText": "There are things so deep and complex that only intuition can reach it in our stage of development as human beings.", + "quoteAuthor": "John Astin" + }, + { + "quoteText": "There are two kinds of failures: those who thought and never did, and those who did and never thought.", + "quoteAuthor": "Laurence J. Peter" + }, + { + "quoteText": "There are two primary choices in life: to accept conditions as they exist, or accept responsibility for changing them.", + "quoteAuthor": "Denis Waitley" + }, + { + "quoteText": "There are two primary choices in life: to accept conditions as they exist, or accept the responsibility for changing them.", + "quoteAuthor": "Denis Waitley" + }, + { + "quoteText": "There are two ways to slide easily through life: to believe everything or to doubt everything; both ways save us from thinking.", + "quoteAuthor": "Alfred Korzybski" + }, + { + "quoteText": "There is a way that nature speaks, that land speaks. Most of the time we are simply not patient enough, quiet enough, to pay attention to the story.", + "quoteAuthor": "Linda Hogan" + }, + { + "quoteText": "There is never enough time to do everything, but there is always enough time to do the most important thing.", + "quoteAuthor": "Brian Tracy" + }, + { + "quoteText": "There is no duty we so underrate as the duty of being happy. By being happy we sow anonymous benefits upon the world.", + "quoteAuthor": "Robert Louis Stevenson" + }, + { + "quoteText": "There is no failure except in no longer trying.", + "quoteAuthor": "Elbert Hubbard" + }, + { + "quoteText": "There is no great genius without some touch of madness.", + "quoteAuthor": "Seneca" + }, + { + "quoteText": "There is no greater harm than that of time wasted.", + "quoteAuthor": "Michelangelo" + }, + { + "quoteText": "There is no need for temples, no need for complicated philosophies. My brain and my heart are my temples; my philosophy is kindness.", + "quoteAuthor": "Dalai Lama" + }, + { + "quoteText": "There is no retirement for an artist, it's your way of living so there is no end to it.", + "quoteAuthor": "Henry Moore" + }, + { + "quoteText": "There is no scarcity of opportunity to make a living at what you love; theres only scarcity of resolve to make it happen.", + "quoteAuthor": "Wayne Dyer" + }, + { + "quoteText": "There is no way to happiness, happiness is the way.", + "quoteAuthor": "Thich Nhat Hanh" + }, + { + "quoteText": "There is no way to prosperity, prosperity is the way.", + "quoteAuthor": "Wayne Dyer" + }, + { + "quoteText": "There is not one big cosmic meaning for all, there is only the meaning we each give to our life.", + "quoteAuthor": "Anais Nin" + }, + { + "quoteText": "There is nothing happens to any person but what was in his power to go through with.", + "quoteAuthor": "Marcus Aurelius" + }, + { + "quoteText": "There is nothing impossible to him who will try.", + "quoteAuthor": "Alexander the Great" + }, + { + "quoteText": "There is nothing in a caterpillar that tells you it's going to be a butterfly.", + "quoteAuthor": "Buckminster Fuller" + }, + { + "quoteText": "There is nothing like returning to a place that remains unchanged to find the ways in which you yourself have altered.", + "quoteAuthor": "Nelson Mandela" + }, + { + "quoteText": "There is nothing so useless as doing efficiently that which should not be done at all.", + "quoteAuthor": "Peter Drucker" + }, + { + "quoteText": "There is one thing you have got to learn about our movement. Three people are better than no people.", + "quoteAuthor": "Fannie Hamer" + }, + { + "quoteText": "There is only one corner of the universe you can be certain of improving, and that's your own self.", + "quoteAuthor": "Aldous Huxley" + }, + { + "quoteText": "There is only one happiness in life, to love and be loved.", + "quoteAuthor": "George Sand" + }, + { + "quoteText": "There is only one success - to be able to spend your life in your own way.", + "quoteAuthor": "Christopher Morley" + }, + { + "quoteText": "There is only one way to happiness and that is to cease worrying about things which are beyond the power of our will.", + "quoteAuthor": "Epictetus" + }, + { + "quoteText": "There never was a good knife made of bad steel.", + "quoteAuthor": "Benjamin Franklin" + }, + { + "quoteText": "There surely is in human nature an inherent propensity to extract all the good out of all the evil.", + "quoteAuthor": "Benjamin Haydon" + }, + { + "quoteText": "These days people seek knowledge, not wisdom. Knowledge is of the past, wisdom is of the future.", + "quoteAuthor": "Vernon Cooper" + }, + { + "quoteText": "They can conquer who believe they can.", + "quoteAuthor": "Virgil" + }, + { + "quoteText": "They can do all because they think they can.", + "quoteAuthor": "Virgil" + }, + { + "quoteText": "They must often change, who would be constant in happiness or wisdom.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "They say that time changes things, but you actually have to change them yourself.", + "quoteAuthor": "Andy Warhol" + }, + { + "quoteText": "Things do not change, we change.", + "quoteAuthor": "Henry Thoreau" + }, + { + "quoteText": "Things do not change; we change.", + "quoteAuthor": "Henry Thoreau" + }, + { + "quoteText": "Things that were hard to bear are sweet to remember.", + "quoteAuthor": "Seneca" + }, + { + "quoteText": "Things turn out best for those who make the best of the way things turn out.", + "quoteAuthor": "Jack Buck" + }, + { + "quoteText": "Think as a wise man but communicate in the language of the people.", + "quoteAuthor": "William Yeats" + }, + { + "quoteText": "Think for yourselves and let others enjoy the privilege to do so too.", + "quoteAuthor": "Voltaire" + }, + { + "quoteText": "Think how hard physics would be if particles could think.", + "quoteAuthor": "Murray Gell-Mann" + }, + { + "quoteText": "Think like a man of action; act like a man of thought.", + "quoteAuthor": "Henri L. Bergson" + }, + { + "quoteText": "This is the final test of a gentleman: his respect for those who can be of no possible value to him.", + "quoteAuthor": "William Lyon Phelps" + }, + { + "quoteText": "This world, after all our science and sciences, is still a miracle; wonderful, inscrutable, magical and more, to whosoever will think of it.", + "quoteAuthor": "Thomas Carlyle" + }, + { + "quoteText": "Those that know, do. Those that understand, teach.", + "quoteAuthor": "Aristotle" + }, + { + "quoteText": "Those who are blessed with the most talent don't necessarily outperform everyone else. It's the people with follow-through who excel.", + "quoteAuthor": "Mary Kay Ash" + }, + { + "quoteText": "Those who are free of resentful thoughts surely find peace.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "Those who cannot learn from history are doomed to repeat it.", + "quoteAuthor": "George Santayan" + }, + { + "quoteText": "Those who dream by day are cognizant of many things which escape those who dream only by night.", + "quoteAuthor": "Edgar Allan Poe" + }, + { + "quoteText": "Those who try to do something and fail are infinitely better than those who try nothing and succeed.", + "quoteAuthor": "Lloyd Jones" + }, + { + "quoteText": "Those who will play with cats must expect to be scratched.", + "quoteAuthor": "Cervantes" + }, + { + "quoteText": "Though no one can go back and make a brand new start, anyone can start from not and make a brand new ending.", + "quoteAuthor": "Carl Bard" + }, + { + "quoteText": "Though no one can go back and make a brand new start, anyone can start from now and make a brand new ending.", + "quoteAuthor": "" + }, + { + "quoteText": "Thought is the blossom; language the bud; action the fruit behind it.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "Thousands of candles can be lighted from a single candle, and the life of the candle will not be shortened. Happiness never decreases by being shared.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "Thousands of candles can be lit from a single, and the life of the candle will not be shortened. Happiness never decreases by being shared.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "Three things cannot be long hidden: the sun, the moon, and the truth.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "Three things in human life are important. The first is to be kind. The second is to be kind. The third is to be kind.", + "quoteAuthor": "Henry James" + }, + { + "quoteText": "Through meditation and by giving full attention to one thing at a time, we can learn to direct attention where we choose.", + "quoteAuthor": "Eknath Easwaran" + }, + { + "quoteText": "Through perseverance many people win success out of what seemed destined to be certain failure.", + "quoteAuthor": "Benjamin Disraeli" + }, + { + "quoteText": "Through pride we are ever deceiving ourselves. But deep down below the surface of the average conscience a still, small voice says to us, Something is out of tune.", + "quoteAuthor": "Carl Jung" + }, + { + "quoteText": "Time changes everything except something within us which is always surprised by change.", + "quoteAuthor": "Thomas Hardy" + }, + { + "quoteText": "Time is not a measure the length of a day or month or year but more a measure of what you have accomplished.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "Time is the most valuable thing a man can spend.", + "quoteAuthor": "Theophrastus" + }, + { + "quoteText": "Time is the wisest counsellor of all.", + "quoteAuthor": "Pericles" + }, + { + "quoteText": "Time stays long enough for anyone who will use it.", + "quoteAuthor": "Leonardo da Vinci" + }, + { + "quoteText": "Time you enjoy wasting, was not wasted.", + "quoteAuthor": "John Lennon" + }, + { + "quoteText": "Time you enjoyed wasting was not wasted.", + "quoteAuthor": "John Lennon" + }, + { + "quoteText": "To accomplish great things, we must dream as well as act.", + "quoteAuthor": "Anatole France" + }, + { + "quoteText": "To accomplish great things, we must not only act, but also dream; not only plan, but also believe.", + "quoteAuthor": "Anatole France" + }, + { + "quoteText": "To avoid criticism, do nothing, say nothing, be nothing.", + "quoteAuthor": "Elbert Hubbard" + }, + { + "quoteText": "To be able to give away riches is mandatory if you wish to possess them. This is the only way that you will be truly rich.", + "quoteAuthor": "Mahummad Ali" + }, + { + "quoteText": "To be aware of a single shortcoming in oneself is more useful than to be aware of a thousand in someone else.", + "quoteAuthor": "Tenzin Gyatso" + }, + { + "quoteText": "To be beautiful means to be yourself. You don't need to be accepted by others. You need to accept yourself.", + "quoteAuthor": "Thich Nhat Hanh" + }, + { + "quoteText": "To be fully alive, fully human, and completely awake is to be continually thrown out of the nest.", + "quoteAuthor": "Pema Chodron" + }, + { + "quoteText": "To be great is to be misunderstood.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "To be happy is to be able to become aware of oneself without fright.", + "quoteAuthor": "Walter Benjamin" + }, + { + "quoteText": "To be tested is good. The challenged life may be the best therapist.", + "quoteAuthor": "Gail Sheehy" + }, + { + "quoteText": "To be thoughtful and kind only takes a few seconds compared to the timeless hurt caused by one rude gesture.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "To be upset over what you don't have is to waste what you do have.", + "quoteAuthor": "Ken S. Keyes" + }, + { + "quoteText": "To be what we are, and to become what we are capable of becoming, is the only end of life.", + "quoteAuthor": "Robert Stevenson" + }, + { + "quoteText": "To be wrong is nothing unless you continue to remember it.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "To be wronged is nothing unless you continue to remember it.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "To bring anything into your life, imagine that it's already there.", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "To change ones life, start immediately, do it flamboyantly, no exceptions.", + "quoteAuthor": "William James" + }, + { + "quoteText": "To choose what is difficult all ones days, as if it were easy, that is faith.", + "quoteAuthor": "W. H. Auden" + }, + { + "quoteText": "To climb steep hills requires a slow pace at first.", + "quoteAuthor": "William Shakespeare" + }, + { + "quoteText": "To dare is to lose ones footing momentarily. To not dare is to lose oneself.", + "quoteAuthor": "Soren Kierkegaard" + }, + { + "quoteText": "To do all that one is able to do, is to be a man; to do all that one would like to do, is to be a god.", + "quoteAuthor": "Napoleon Bonaparte" + }, + { + "quoteText": "To dream of the person you would like to be is to waste the person you are.", + "quoteAuthor": "Tim Menchen" + }, + { + "quoteText": "To effectively communicate, we must realize that we are all different in the way we perceive the world and use this understanding as a guide to our communication with others.", + "quoteAuthor": "Anthony Robbins" + }, + { + "quoteText": "To enjoy life, we must touch much of it lightly.", + "quoteAuthor": "Voltaire" + }, + { + "quoteText": "To ensure good health: eat lightly, breathe deeply, live moderately, cultivate cheerfulness, and maintain an interest in life.", + "quoteAuthor": "William Londen" + }, + { + "quoteText": "To exist is to change, to change is to mature, to mature is to go on creating oneself endlessly.", + "quoteAuthor": "Henri Bergson" + }, + { + "quoteText": "To fly as fast as thought, you must begin by knowing that you have already arrived.", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "To fly, we have to have resistance.", + "quoteAuthor": "Maya Lin" + }, + { + "quoteText": "To follow, without halt, one aim: There is the secret of success.", + "quoteAuthor": "Anna Pavlova" + }, + { + "quoteText": "To forgive is to set a prisoner free and realize that prisoner was you.", + "quoteAuthor": "Lewis B. Smedes" + }, + { + "quoteText": "To free us from the expectations of others, to give us back to ourselves - there lies the great, singular power of self-respect.", + "quoteAuthor": "Joan Didion" + }, + { + "quoteText": "To get something you never had, you have to do something you never did.", + "quoteAuthor": "" + }, + { + "quoteText": "To get the full value of joy you must have someone to divide it with.", + "quoteAuthor": "Mark Twain" + }, + { + "quoteText": "To give hope to someone occurs when you teach them how to use the tools to do it for themselves.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "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.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "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.", + "quoteAuthor": "Theodore H. White" + }, + { + "quoteText": "To hell with circumstances; I create opportunities.", + "quoteAuthor": "Bruce Lee" + }, + { + "quoteText": "To keep the body in good health is a duty... otherwise we shall not be able to keep our mind strong and clear.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "To know oneself is to study oneself in action with another person.", + "quoteAuthor": "Bruce Lee" + }, + { + "quoteText": "To know your purpose is to live a life of direction, and in that direction is found peace and tranquillity.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "To lead people walk behind them.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "To listen well is as powerful a means of communication and influence as to talk well.", + "quoteAuthor": "John Marshall" + }, + { + "quoteText": "To live a pure unselfish life, one must count nothing as ones own in the midst of abundance.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "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.", + "quoteAuthor": "Plutarch" + }, + { + "quoteText": "To see things in the seed, that is genius.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "To speak gratitude is courteous and pleasant, to enact gratitude is generous and noble, but to live gratitude is to touch Heaven.", + "quoteAuthor": "Johannes Gaertner" + }, + { + "quoteText": "To study and not think is a waste. To think and not study is dangerous.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "To succeed, we must first believe that we can.", + "quoteAuthor": "Michael Korda" + }, + { + "quoteText": "To understand the heart and mind of a person, look not at what he has already achieved, but at what he aspires to do.", + "quoteAuthor": "Kahlil Gibran" + }, + { + "quoteText": "To want to be what one can be is purpose in life.", + "quoteAuthor": "Cynthia Ozick" + }, + { + "quoteText": "Today is the tomorrow we worried about yesterday.", + "quoteAuthor": "" + }, + { + "quoteText": "Today is the tomorrow you worried about yesterday.", + "quoteAuthor": "" + }, + { + "quoteText": "Today, give a stranger a smile without waiting for it may be the joy they need to have a great day.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "Transformation does not start with some one else changing you; transformation is an inner self reworking of what you are now to what you will be.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "Transformation doesn't take place with a vacuum; instead, it occurs when we are indirectly and directly connected to all those around us.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "Translation is the paradigm, the exemplar of all writing. It is translation that demonstrates most vividly the yearning for transformation that underlies every act involving speech, that supremely human gift.", + "quoteAuthor": "Harry Burchell Mathews" + }, + { + "quoteText": "Treat people as if they were what they ought to be and you help them to become what they are capable of being.", + "quoteAuthor": "Johann Wolfgang von Goethe" + }, + { + "quoteText": "Trouble is only opportunity in work clothes.", + "quoteAuthor": "Henry J. Kaiser" + }, + { + "quoteText": "True happiness means forging a strong spirit that is undefeated, no matter how trying our circumstances.", + "quoteAuthor": "Daisaku Ikeda" + }, + { + "quoteText": "True silence is the rest of the mind; it is to the spirit what sleep is to the body, nourishment and refreshment.", + "quoteAuthor": "William Penn" + }, + { + "quoteText": "Trust only movement. Life happens at the level of events, not of words. Trust movement.", + "quoteAuthor": "Alfred Adler" + }, + { + "quoteText": "Trust your hunches. They're usually based on facts filed away just below the conscious level.", + "quoteAuthor": "Joyce Brothers" + }, + { + "quoteText": "Trust your own instinct. Your mistakes might as well be your own, instead of someone elses.", + "quoteAuthor": "Billy Wilder" + }, + { + "quoteText": "Trust yourself. You know more than you think you do.", + "quoteAuthor": "Benjamin Spock" + }, + { + "quoteText": "Trusting our intuition often saves us from disaster.", + "quoteAuthor": "Anne Wilson Schaef" + }, + { + "quoteText": "Truth is generally the best vindication against slander.", + "quoteAuthor": "Abraham Lincoln" + }, + { + "quoteText": "Truth is powerful and it prevails.", + "quoteAuthor": "Sojourner Truth" + }, + { + "quoteText": "Truth isn't all about what actually happens but more about how what has happened is interpreted.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "Truth, and goodness, and beauty are but different faces of the same all.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "Try and fail, but don't fail to try.", + "quoteAuthor": "Stephen Kaggwa" + }, + { + "quoteText": "Try not to become a man of success but rather try to become a man of value.", + "quoteAuthor": "Albert Einstein" + }, + { + "quoteText": "Try not to become a man of success, but rather try to become a man of value.", + "quoteAuthor": "Albert Einstein" + }, + { + "quoteText": "Turn your face toward the sun and the shadows will fall behind you.", + "quoteAuthor": "Maori proverb" + }, + { + "quoteText": "Until you make peace with who you are, you will never be content with what you have.", + "quoteAuthor": "Doris Mortman" + }, + { + "quoteText": "Until you make peace with who you are, you'll never be content with what you have.", + "quoteAuthor": "Doris Mortman" + }, + { + "quoteText": "Until you value yourself, you won't value your time. Until you value your time, you won't do anything with it.", + "quoteAuthor": "M. Scott Peck" + }, + { + "quoteText": "Using the power of decision gives you the capacity to get past any excuse to change any and every part of your life in an instant.", + "quoteAuthor": "Tony Robbins" + }, + { + "quoteText": "Very little is needed to make a happy life; it is all within yourself, in your way of thinking.", + "quoteAuthor": "Marcus Aurelius" + }, + { + "quoteText": "Victory belongs to the most persevering.", + "quoteAuthor": "Napoleon Bonaparte" + }, + { + "quoteText": "Vision without action is a daydream. Action without vision is a nightmare.", + "quoteAuthor": "Japanese proverb" + }, + { + "quoteText": "Waste no more time arguing about what a good man should be. Be one.", + "quoteAuthor": "Marcus Aurelius" + }, + { + "quoteText": "Watch the little things; a small leak will sink a great ship.", + "quoteAuthor": "Benjamin Franklin" + }, + { + "quoteText": "We aim above the mark to hit the mark.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "We all have problems. The way we solve them is what makes us different.", + "quoteAuthor": "" + }, + { + "quoteText": "We all live with the objective of being happy; our lives are all different and yet the same.", + "quoteAuthor": "Anne Frank" + }, + { + "quoteText": "We are Divine enough to ask and we are important enough to receive.", + "quoteAuthor": "Wayne Dyer" + }, + { + "quoteText": "We are all faced with a series of great opportunities brilliantly disguised as impossible situations.", + "quoteAuthor": "Charles R. Swindoll" + }, + { + "quoteText": "We are all inclined to judge ourselves by our ideals; others, by their acts.", + "quoteAuthor": "Harold Nicolson" + }, + { + "quoteText": "We are all something, but none of us are everything.", + "quoteAuthor": "Blaise Pascal" + }, + { + "quoteText": "We are either progressing or retrograding all the while. There is no such thing as remaining stationary in this life.", + "quoteAuthor": "James Freeman Clarke" + }, + { + "quoteText": "We are not animals. We are not a product of what has happened to us in our past. We have the power of choice.", + "quoteAuthor": "Stephen Covey" + }, + { + "quoteText": "We are shaped by our thoughts; we become what we think. When the mind is pure, joy follows like a shadow that never leaves.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "We are the leaves of one branch, the drops of one sea, the flowers of one garden.", + "quoteAuthor": "Jean Lacordaire" + }, + { + "quoteText": "We are what we repeatedly do. Excellence, then, is not an act but a habit.", + "quoteAuthor": "Aristotle" + }, + { + "quoteText": "We are what we repeatedly do. Excellence, then, is not an act, but a habit.", + "quoteAuthor": "Aristotle" + }, + { + "quoteText": "We are what we think. All that we are arises with our thoughts. With our thoughts, we make the world.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "We can change our lives. We can do, have, and be exactly what we wish.", + "quoteAuthor": "Tony Robbins" + }, + { + "quoteText": "We can do no great things, only small things with great love.", + "quoteAuthor": "Mother Teresa" + }, + { + "quoteText": "We can only be said to be alive in those moments when our hearts are conscious of our treasures.", + "quoteAuthor": "Thornton Wilder" + }, + { + "quoteText": "We can only learn to love by loving.", + "quoteAuthor": "Iris Murdoch" + }, + { + "quoteText": "We cannot change our memories, but we can change their meaning and the power they have over us.", + "quoteAuthor": "David Seamans" + }, + { + "quoteText": "We cannot direct the wind but we can adjust the sails.", + "quoteAuthor": "" + }, + { + "quoteText": "We cannot do everything at once, but we can do something at once.", + "quoteAuthor": "Calvin Coolidge" + }, + { + "quoteText": "We cannot hold a torch to light another's path without brightening our own.", + "quoteAuthor": "Ben Sweetland" + }, + { + "quoteText": "We cannot solve our problems with the same thinking we used when we created them.", + "quoteAuthor": "Albert Einstein" + }, + { + "quoteText": "We choose our destiny in the way we treat others.", + "quoteAuthor": "Wit" + }, + { + "quoteText": "We choose our joys and sorrows long before we experience them.", + "quoteAuthor": "Kahlil Gibran" + }, + { + "quoteText": "We come to love not by finding a perfect person, but by learning to see an imperfect person perfectly.", + "quoteAuthor": "Sam Keen" + }, + { + "quoteText": "We could never learn to be brave and patient if there were only joy in the world.", + "quoteAuthor": "Helen Keller" + }, + { + "quoteText": "We do not quit playing because we grow old, we grow old because we quit playing.", + "quoteAuthor": "Oliver Holmes" + }, + { + "quoteText": "We do what we do because we believe.", + "quoteAuthor": "" + }, + { + "quoteText": "We don't stop playing because we grow old; we grow old because we stop playing.", + "quoteAuthor": "Bernard Shaw" + }, + { + "quoteText": "We have committed the Golden Rule to memory; let us now commit it to life.", + "quoteAuthor": "Edwin Markham" + }, + { + "quoteText": "We have two ears and one mouth so that we can listen twice as much as we speak.", + "quoteAuthor": "Epictetus" + }, + { + "quoteText": "We know from science that nothing in the universe exists as an isolated or independent entity.", + "quoteAuthor": "Margaret Wheatley" + }, + { + "quoteText": "We know the truth, not only by the reason, but by the heart.", + "quoteAuthor": "Blaise Pascal" + }, + { + "quoteText": "We know what we are, but know not what we may be.", + "quoteAuthor": "William Shakespeare" + }, + { + "quoteText": "We learn what we have said from those who listen to our speaking.", + "quoteAuthor": "Kenneth Patton" + }, + { + "quoteText": "We lost because we told ourselves we lost.", + "quoteAuthor": "Leo Tolstoy" + }, + { + "quoteText": "We make a living by what we get, but we make a life by what we give.", + "quoteAuthor": "Winston Churchill" + }, + { + "quoteText": "We make our own fortunes and we call them fate.", + "quoteAuthor": "Benjamin Disraeli" + }, + { + "quoteText": "We may encounter many defeats but we must not be defeated.", + "quoteAuthor": "Maya Angelou" + }, + { + "quoteText": "We must be as courteous to a man as we are to a picture, which we are willing to give the advantage of a good light.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "We must become the change we want to see.", + "quoteAuthor": "Mahatma Gandhi" + }, + { + "quoteText": "We must embrace pain and burn it as fuel for our journey.", + "quoteAuthor": "Kenji Miyazawa" + }, + { + "quoteText": "We must learn our limits. We are all something, but none of us are everything.", + "quoteAuthor": "Blaise Pascal" + }, + { + "quoteText": "We must never forget that it is through our actions, words, and thoughts that we have a choice.", + "quoteAuthor": "Sogyal Rinpoche" + }, + { + "quoteText": "We must not allow ourselves to become like the system we oppose.", + "quoteAuthor": "Bishop Desmond Tutu" + }, + { + "quoteText": "We must not say every mistake is a foolish one.", + "quoteAuthor": "Cicero" + }, + { + "quoteText": "We must overcome the notion that we must be regular. It robs you of the chance to be extraordinary and leads you to the mediocre.", + "quoteAuthor": "Uta Hagen" + }, + { + "quoteText": "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.", + "quoteAuthor": "Barbara De Angelis" + }, + { + "quoteText": "We never live; we are always in the expectation of living.", + "quoteAuthor": "Voltaire" + }, + { + "quoteText": "We never understand how little we need in this world until we know the loss of it.", + "quoteAuthor": "James Barrie" + }, + { + "quoteText": "We read the world wrong and say that it deceives us.", + "quoteAuthor": "Rabindranath Tagore" + }, + { + "quoteText": "We see things not as they are, but as we are. Our perception is shaped by our previous experiences.", + "quoteAuthor": "Dennis Kimbro" + }, + { + "quoteText": "We shall never know all the good that a simple smile can do.", + "quoteAuthor": "Mother Teresa" + }, + { + "quoteText": "We should all be thankful for those people who rekindle the inner spirit.", + "quoteAuthor": "Albert Schweitzer" + }, + { + "quoteText": "Well begun is half done.", + "quoteAuthor": "Aristotle" + }, + { + "quoteText": "Well done is better than well said.", + "quoteAuthor": "Benjamin Franklin" + }, + { + "quoteText": "Were here for a reason. I believe a bit of the reason is to throw little torches out to lead people through the dark.", + "quoteAuthor": "Whoopi Goldberg" + }, + { + "quoteText": "Weve got to have a dream if we are going to make a dream come true.", + "quoteAuthor": "Walt Disney" + }, + { + "quoteText": "What do we live for, if it is not to make life less difficult for each other?", + "quoteAuthor": "George Eliot" + }, + { + "quoteText": "What is a weed? A plant whose virtues have not yet been discovered.", + "quoteAuthor": "Ralph Emerson" + }, + { + "quoteText": "What is necessary to change a person is to change his awareness of himself.", + "quoteAuthor": "Abraham Maslow" + }, + { + "quoteText": "What is new in the world? Nothing. What is old in the world? Nothing. Everything has always been and will always be.", + "quoteAuthor": "Sai Baba" + }, + { + "quoteText": "What is not started today is never finished tomorrow.", + "quoteAuthor": "Goethe" + }, + { + "quoteText": "What lies behind us and what lies before us are small matters compared to what lies within us.", + "quoteAuthor": "Oliver Holmes" + }, + { + "quoteText": "What lies behind us and what lies before us are tiny matters compared to what lies within us.", + "quoteAuthor": "Walt Emerson" + }, + { + "quoteText": "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.", + "quoteAuthor": "Daisaku Ikeda" + }, + { + "quoteText": "What separates the winners from the losers is how a person reacts to each new twist of fate.", + "quoteAuthor": "Donald Trump" + }, + { + "quoteText": "What the caterpillar calls the end of the world, the master calls a butterfly.", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "What we achieve inwardly will change outer reality.", + "quoteAuthor": "Plutarch" + }, + { + "quoteText": "What we see depends mainly on what we look for.", + "quoteAuthor": "John Lubbock" + }, + { + "quoteText": "What we see is mainly what we look for.", + "quoteAuthor": "" + }, + { + "quoteText": "What we think determines what happens to us, so if we want to change our lives, we need to stretch our minds.", + "quoteAuthor": "Wayne Dyer" + }, + { + "quoteText": "What we think, we become.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "What worries you masters you.", + "quoteAuthor": "Haddon Robinson" + }, + { + "quoteText": "What you are is what you have been. What you'll be is what you do now.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "What you do not want done to yourself, do not do to others.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "What you fear is that which requires action to overcome.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "What you give is what you get.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "What you see depends on what you're looking for.", + "quoteAuthor": "" + }, + { + "quoteText": "Whatever happens, take responsibility.", + "quoteAuthor": "Tony Robbins" + }, + { + "quoteText": "Whatever we expect with confidence becomes our own self-fulfilling prophecy.", + "quoteAuthor": "Brian Tracy" + }, + { + "quoteText": "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.", + "quoteAuthor": "Audre Lorde" + }, + { + "quoteText": "When I let go of what I am, I become what I might be.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "When anger use your energy to do something productive.", + "quoteAuthor": "C. Pulsifer" + }, + { + "quoteText": "When deeds and words are in accord, the whole world is transformed.", + "quoteAuthor": "Chuang Tzu" + }, + { + "quoteText": "When deeds speak, words are nothing.", + "quoteAuthor": "African proverb" + }, + { + "quoteText": "When fate hands us a lemon, lets try to make lemonade.", + "quoteAuthor": "Dale Carnegie" + }, + { + "quoteText": "When in doubt, tell the truth.", + "quoteAuthor": "Mark Twain" + }, + { + "quoteText": "When it is obvious that the goals cannot be reached, don't adjust the goals, adjust the action steps.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "When one door of happiness closes, another opens; but often we look so long at the closed door that we do not see the one which has been opened for us.", + "quoteAuthor": "Helen Keller" + }, + { + "quoteText": "When one tugs at a single thing in nature, he finds it attached to the rest of the world.", + "quoteAuthor": "John Muir" + }, + { + "quoteText": "When people are like each other they tend to like each other.", + "quoteAuthor": "Tony Robbins" + }, + { + "quoteText": "When performance exceeds ambition, the overlap is called success.", + "quoteAuthor": "Cullen Hightower" + }, + { + "quoteText": "When the solution is simple, God is answering.", + "quoteAuthor": "Albert Einstein" + }, + { + "quoteText": "When there is no enemy within, the enemies outside cannot hurt you.", + "quoteAuthor": "African proverb" + }, + { + "quoteText": "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.", + "quoteAuthor": "Tenzin Gyatso" + }, + { + "quoteText": "When we quit thinking primarily about ourselves and our own self-preservation, we undergo a truly heroic transformation of consciousness.", + "quoteAuthor": "Joseph Campbell" + }, + { + "quoteText": "When we seek to discover the best in others, we somehow bring out the best in ourselves.", + "quoteAuthor": "William Ward" + }, + { + "quoteText": "When you are content to be simply yourself and don't compare or compete, everybody will respect you.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "When you are content to be simply yourself and don't compare or compete, everybody will respect you.", + "quoteAuthor": "Laozi" + }, + { + "quoteText": "When you are offended at any man's fault, turn to yourself and study your own failings. Then you will forget your anger.", + "quoteAuthor": "Epictetus" + }, + { + "quoteText": "When you arise in the morning, think of what a precious privilege it is to be alive - to breathe, to think, to enjoy, to love.", + "quoteAuthor": "Marcus Aurelius" + }, + { + "quoteText": "When you begin to touch your heart or let your heart be touched, you begin to discover that it's bottomless.", + "quoteAuthor": "Pema Chodron" + }, + { + "quoteText": "When you come to the end of your rope, tie a knot and hang on.", + "quoteAuthor": "Franklin Roosevelt" + }, + { + "quoteText": "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.", + "quoteAuthor": "Wayne Dyer" + }, + { + "quoteText": "When you discover your mission, you will feel its demand. It will fill you with enthusiasm and a burning desire to get to work on it.", + "quoteAuthor": "W. Clement Stone" + }, + { + "quoteText": "When you don't know what you believe, everything becomes an argument. Everything is debatable. But when you stand for something, decisions are obvious.", + "quoteAuthor": "" + }, + { + "quoteText": "When you doubt your power, you give power to your doubt.", + "quoteAuthor": "Honore de Balzac" + }, + { + "quoteText": "When you have got an elephant by the hind legs and he is trying to run away, it's best to let him run.", + "quoteAuthor": "Abraham Lincoln" + }, + { + "quoteText": "When you judge another, you do not define them, you define yourself.", + "quoteAuthor": "Wayne Dyer" + }, + { + "quoteText": "When you learn, teach. When you get, give.", + "quoteAuthor": "Maya Angelou" + }, + { + "quoteText": "When you lose, don't lose the lesson.", + "quoteAuthor": "" + }, + { + "quoteText": "When you meet someone better than yourself, turn your thoughts to becoming his equal. When you meet someone not as good as you are, look within and examine your own self.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "When you realize how perfect everything is you will tilt your head back and laugh at the sky.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "When you realize there is nothing lacking, the whole world belongs to you.", + "quoteAuthor": "Lao Tzu" + }, + { + "quoteText": "When you see a good person, think of becoming like him. When you see someone not so good, reflect on your own weak points.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "When you see a man of worth, think of how you may emulate him. When you see one who is unworthy, examine yourself.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "When your desires are strong enough you will appear to possess superhuman powers to achieve.", + "quoteAuthor": "Napoleon Hill" + }, + { + "quoteText": "Whenever something negative happens to you, there is a deep lesson concealed within it.", + "quoteAuthor": "Eckhart Tolle" + }, + { + "quoteText": "Whenever you have eliminated the impossible, whatever remains, however improbable, must be the truth.", + "quoteAuthor": "Arthur Conan Doyle" + }, + { + "quoteText": "Where all think alike, no one thinks very much.", + "quoteAuthor": "Walter Lippmann" + }, + { + "quoteText": "Where there is great love, there are always miracles.", + "quoteAuthor": "Willa Cather" + }, + { + "quoteText": "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.", + "quoteAuthor": "Johann Wolfgang von Goethe" + }, + { + "quoteText": "Wherever a man turns he can find someone who needs him.", + "quoteAuthor": "Albert Schweitzer" + }, + { + "quoteText": "Wherever you go, go with all your heart.", + "quoteAuthor": "Confucius" + }, + { + "quoteText": "While we stop to think, we often miss our opportunity.", + "quoteAuthor": "Publilius Syrus" + }, + { + "quoteText": "While we try to teach our children all about life, our children teach us what life is all about.", + "quoteAuthor": "Angela Schwindt" + }, + { + "quoteText": "Who looks outside, dreams; who looks inside, awakes.", + "quoteAuthor": "Carl Jung" + }, + { + "quoteText": "Who sows virtue reaps honour.", + "quoteAuthor": "Leonardo da Vinci" + }, + { + "quoteText": "Who we are never changes. Who we think we are does.", + "quoteAuthor": "Mary Almanac" + }, + { + "quoteText": "Whoever is happy will make others happy, too.", + "quoteAuthor": "Mark Twain" + }, + { + "quoteText": "Whoso loves, believes the impossible.", + "quoteAuthor": "Elizabeth Browning" + }, + { + "quoteText": "Why compare yourself with others? No one in the entire world can do a better job of being you than you.", + "quoteAuthor": "" + }, + { + "quoteText": "Why worry about things you can't control when you can keep yourself busy controlling the things that depend on you?", + "quoteAuthor": "" + }, + { + "quoteText": "Why worry about tomorrow, when today is all we have?", + "quoteAuthor": "" + }, + { + "quoteText": "Wicked people are always surprised to find ability in those that are good.", + "quoteAuthor": "Marquis Vauvenargues" + }, + { + "quoteText": "Winners have simply formed the habit of doing things losers don't like to do.", + "quoteAuthor": "Albert Gray" + }, + { + "quoteText": "Wisdom begins in wonder.", + "quoteAuthor": "Socrates" + }, + { + "quoteText": "Wisdom is knowing what to do next; Skill is knowing how ot do it, and Virtue is doing it.", + "quoteAuthor": "David Jordan" + }, + { + "quoteText": "Wisdom is the reward you get for a lifetime of listening when you'd have preferred to talk.", + "quoteAuthor": "Doug Larson" + }, + { + "quoteText": "Wisdom is the supreme part of happiness.", + "quoteAuthor": "Sophocles" + }, + { + "quoteText": "Wise men talk because they have something to say; fools, because they have to say something.", + "quoteAuthor": "Plato" + }, + { + "quoteText": "Wishes can be your best avenue of getting what you want when you turn wishes into action. Action moves your wish to the forefront from thought to reality.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "Wit lies in recognizing the resemblance among things which differ and the difference between things which are alike.", + "quoteAuthor": "Madame de Stael" + }, + { + "quoteText": "With courage you will dare to take risks, have the strength to be compassionate, and the wisdom to be humble. Courage is the foundation of integrity.", + "quoteAuthor": "Keshavan Nair" + }, + { + "quoteText": "With every experience, you alone are painting your own canvas, thought by thought, choice by choice.", + "quoteAuthor": "Oprah Winfrey" + }, + { + "quoteText": "With realization of ones own potential and self-confidence in ones ability, one can build a better world.", + "quoteAuthor": "Dalai Lama" + }, + { + "quoteText": "With the realization of ones own potential and self-confidence in ones ability, one can build a better world.", + "quoteAuthor": "Dalai Lama" + }, + { + "quoteText": "Without courage, wisdom bears no fruit.", + "quoteAuthor": "Baltasar Gracian" + }, + { + "quoteText": "Without faith, nothing is possible. With it, nothing is impossible.", + "quoteAuthor": "Mary Bethune" + }, + { + "quoteText": "Without leaps of imagination, or dreaming, we lose the excitement of possibilities. Dreaming, after all, is a form of planning.", + "quoteAuthor": "Gloria Steinem" + }, + { + "quoteText": "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.", + "quoteAuthor": "Amiel" + }, + { + "quoteText": "Without some goals and some efforts to reach it, no man can live.", + "quoteAuthor": "John Dewey" + }, + { + "quoteText": "Without this playing with fantasy no creative work has ever yet come to birth. The debt we owe to the play of the imagination is incalculable.", + "quoteAuthor": "Carl Jung" + }, + { + "quoteText": "Work for something because it is good, not just because it stands a chance to succeed.", + "quoteAuthor": "Vaclav Havel" + }, + { + "quoteText": "Work out your own salvation. Do not depend on others.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "Work while you have the light. You are responsible for the talent that has been entrusted to you.", + "quoteAuthor": "Henri-Frederic Amiel" + }, + { + "quoteText": "Worry gives a small thing a big shadow.", + "quoteAuthor": "" + }, + { + "quoteText": "Worry often gives a small thing a big shadow.", + "quoteAuthor": "Swedish proverb" + }, + { + "quoteText": "Wrinkles should merely indicate where smiles have been.", + "quoteAuthor": "Mark Twain" + }, + { + "quoteText": "Write your plans in pencil and give God the eraser.", + "quoteAuthor": "Paulo Coelho" + }, + { + "quoteText": "Yeah we all shine on, like the moon, and the stars, and the sun.", + "quoteAuthor": "John Lennon" + }, + { + "quoteText": "Yesterday I dared to struggle. Today I dare to win.", + "quoteAuthor": "Bernadette Devlin" + }, + { + "quoteText": "Yesterday is history. Tomorrow is a mystery. And today? Today is a gift that's why they call it the present.", + "quoteAuthor": "" + }, + { + "quoteText": "Yesterday is history. Tomorrow is a mystery. And today? Today is a gift. That is why we call it the present.", + "quoteAuthor": "Babatunde Olatunji" + }, + { + "quoteText": "Yesterdays home runs don't win today's games.", + "quoteAuthor": "Babe Ruth" + }, + { + "quoteText": "You always succeed in producing a result.", + "quoteAuthor": "Tony Robbins" + }, + { + "quoteText": "You are always free to change your mind and choose a different future, or a different past.", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "You are important enough to ask and you are blessed enough to receive back.", + "quoteAuthor": "Wayne Dyer" + }, + { + "quoteText": "You are never given a wish without also being given the power to make it come true. You may have to work for it, however.", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "You are special, you are unique, you are the best!", + "quoteAuthor": "Cathy Pulsifer" + }, + { + "quoteText": "You are the only person on Earth who can use your ability.", + "quoteAuthor": "Zig Ziglar" + }, + { + "quoteText": "You are the only person on earth who can use your ability.", + "quoteAuthor": "Zig Ziglar" + }, + { + "quoteText": "You block your dream when you allow your fear to grow bigger than your faith.", + "quoteAuthor": "Mary Morrissey" + }, + { + "quoteText": "You can adopt the attitude there is nothing you can do, or you can see the challenge as your call to action.", + "quoteAuthor": "Catherine Pulsifer" + }, + { + "quoteText": "You can be what you want to be. You have the power within and we will help you always.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "You can complain because roses have thorns, or you can rejoice because thorns have roses.", + "quoteAuthor": "Ziggy" + }, + { + "quoteText": "You can do it if you believe you can!", + "quoteAuthor": "Napoleon Hill" + }, + { + "quoteText": "You can do what's reasonable or you can decide what's possible.", + "quoteAuthor": "" + }, + { + "quoteText": "You can never cross the ocean unless you have the courage to lose sight of the shore.", + "quoteAuthor": "" + }, + { + "quoteText": "You can observe a lot just by watching.", + "quoteAuthor": "Yogi Berra" + }, + { + "quoteText": "You can only grow if you're willing to feel awkward and uncomfortable when you try something new.", + "quoteAuthor": "Brian Tracy" + }, + { + "quoteText": "You can stand tall without standing on someone. You can be a victor without having victims.", + "quoteAuthor": "Harriet Woods" + }, + { + "quoteText": "You can tell whether a man is clever by his answers. You can tell whether a man is wise by his questions.", + "quoteAuthor": "Naguib Mahfouz" + }, + { + "quoteText": "You can't choose up sides on a round world.", + "quoteAuthor": "Wayne Dyer" + }, + { + "quoteText": "You can't create in a vacuum. Life gives you the material and dreams can propel new beginnings.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "You can't let praise or criticism get to you. It's a weakness to get caught up in either one.", + "quoteAuthor": "John Wooden" + }, + { + "quoteText": "You can't shake hands with a clenched fist.", + "quoteAuthor": "Indira Gandhi" + }, + { + "quoteText": "You can't stop the waves, but you can learn to surf.", + "quoteAuthor": "Jon Kabat-Zinn" + }, + { + "quoteText": "You can't trust without risk but neither can you live in a cocoon.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "You cannot be lonely if you like the person you're alone with.", + "quoteAuthor": "Wayne Dyer" + }, + { + "quoteText": "You cannot change anything in your life with intention alone, which can become a watered-down, occasional hope that you'll get to tomorrow. Intention without action is useless.", + "quoteAuthor": "Caroline Myss" + }, + { + "quoteText": "You cannot find yourself by going into the past. You can find yourself by coming into the present.", + "quoteAuthor": "Eckhart Tolle" + }, + { + "quoteText": "You cannot have what you do not want.", + "quoteAuthor": "John Acosta" + }, + { + "quoteText": "You cannot make yourself feel something you do not feel, but you can make yourself do right in spite of your feelings.", + "quoteAuthor": "Pearl Buck" + }, + { + "quoteText": "You cannot step twice into the same river, for other waters are continually flowing in.", + "quoteAuthor": "Heraclitus" + }, + { + "quoteText": "You cannot travel the path until you have become the path itself.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "You do not become good by trying to be good, but by finding the goodness that is already within you.", + "quoteAuthor": "Eckhart Tolle" + }, + { + "quoteText": "You don't drown by falling in water. You drown by staying there.", + "quoteAuthor": "" + }, + { + "quoteText": "You get peace of mind not by thinking about it or imagining it, but by quietening and relaxing the restless mind.", + "quoteAuthor": "Remez Sasson" + }, + { + "quoteText": "You give before you get.", + "quoteAuthor": "Napoleon Hill" + }, + { + "quoteText": "You got to be careful if you don't know where you're going, because you might not get there.", + "quoteAuthor": "Yogi Berra" + }, + { + "quoteText": "You have enemies? Good. That means you've stood up for something, sometime in your life.", + "quoteAuthor": "Winston Churchill" + }, + { + "quoteText": "You have power over your mind - not outside events. Realize this, and you will find strength.", + "quoteAuthor": "Marcus Aurelius" + }, + { + "quoteText": "You have to believe in yourself.", + "quoteAuthor": "Sun Tzu" + }, + { + "quoteText": "You have to do your own growing no matter how tall your grandfather was.", + "quoteAuthor": "Abraham Lincoln" + }, + { + "quoteText": "You have to take it as it happens, but you should try to make it happen the way you want to take it.", + "quoteAuthor": "Old German proverb" + }, + { + "quoteText": "You have to think anyway, so why not think big?", + "quoteAuthor": "Donald Trump" + }, + { + "quoteText": "You learn to speak by speaking, to study by studying, to run by running, to work by working; in just the same way, you learn to love by loving.", + "quoteAuthor": "Anatole France" + }, + { + "quoteText": "You may be deceived if you trust too much, but you will live in torment if you don't trust enough.", + "quoteAuthor": "Frank Crane" + }, + { + "quoteText": "You may only be someone in the world, but to someone else, you may be the world.", + "quoteAuthor": "" + }, + { + "quoteText": "You may say Im a dreamer, but Im not the only one, I hope someday you will join us, and the world will live as one.", + "quoteAuthor": "John Lennon" + }, + { + "quoteText": "You might well remember that nothing can bring you success but yourself.", + "quoteAuthor": "Napoleon Hill" + }, + { + "quoteText": "You must do the things you think you cannot do.", + "quoteAuthor": "Eleanor Roosevelt" + }, + { + "quoteText": "You must train your intuition - you must trust the small voice inside you which tells you exactly what to say, what to decide.", + "quoteAuthor": "Ingrid Bergman" + }, + { + "quoteText": "You must welcome change as the rule but not as your ruler.", + "quoteAuthor": "Denis Waitley" + }, + { + "quoteText": "You need chaos in your soul to give birth to a dancing star.", + "quoteAuthor": "Nietzsche" + }, + { + "quoteText": "You only lose what you cling to.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "You really can change the world if you care enough.", + "quoteAuthor": "Marian Edelman" + }, + { + "quoteText": "You teach best what you most need to learn.", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "You were not born a winner, and you were not born a loser. You are what you make yourself be.", + "quoteAuthor": "Lou Holtz" + }, + { + "quoteText": "You will never be happy if you continue to search for what happiness consists of. You will never live if you are looking for the meaning of life.", + "quoteAuthor": "Albert Camus" + }, + { + "quoteText": "You will not be punished for your anger, you will be punished by your anger.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "You won't skid if you stay in a rut.", + "quoteAuthor": "Kin Hubbard" + }, + { + "quoteText": "You'll see it when you believe it.", + "quoteAuthor": "Wayne Dyer" + }, + { + "quoteText": "You're never a loser until you quit trying.", + "quoteAuthor": "Mike Ditka" + }, + { + "quoteText": "You're not obligated to win. You're obligated to keep trying to do the best you can every day.", + "quoteAuthor": "Marian Edelman" + }, + { + "quoteText": "You, yourself, as much as anybody in the entire universe, deserve your love and affection.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "Your ability to learn faster than your competition is your only sustainable competitive advantage.", + "quoteAuthor": "Arie de Gues" + }, + { + "quoteText": "Your attitude, not your aptitude, will determine your altitude.", + "quoteAuthor": "Zig Ziglar" + }, + { + "quoteText": "Your big opportunity may be right where you are now.", + "quoteAuthor": "Napoleon Hill" + }, + { + "quoteText": "Your body is precious. It is our vehicle for awakening. Treat it with care.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "Your destiny isn't just fate; it is how you use your own developed abilities to get what you want.", + "quoteAuthor": "Byron Pulsifer" + }, + { + "quoteText": "Your friends will know you better in the first minute you meet than your acquaintances will know you in a thousand years.", + "quoteAuthor": "Richard Bach" + }, + { + "quoteText": "Your future depends on many things, but mostly on you.", + "quoteAuthor": "Frank Tyger" + }, + { + "quoteText": "Your mind will answer most questions if you learn to relax and wait for the answer.", + "quoteAuthor": "William Burroughs" + }, + { + "quoteText": "Your outlook on life is a direct reflection on how much you like yourself.", + "quoteAuthor": "Lululemon" + }, + { + "quoteText": "Your sacred space is where you can find yourself again and again.", + "quoteAuthor": "Joseph Campbell" + }, + { + "quoteText": "Your vision will become clear only when you can look into your own heart. Who looks outside, dreams; who looks inside, awakes.", + "quoteAuthor": "Carl Jung" + }, + { + "quoteText": "Your vision will become clear only when you look into your heart. Who looks outside, dreams. Who looks inside, awakens.", + "quoteAuthor": "Carl Jung" + }, + { + "quoteText": "Your work is to discover your work and then with all your heart to give yourself to it.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "Your work is to discover your world and then with all your heart give yourself to it.", + "quoteAuthor": "Buddha" + }, + { + "quoteText": "Your worst enemy cannot harm you as much as your own unguarded thoughts.", + "quoteAuthor": "Buddha" + } +] diff --git a/shell/tmux.conf b/shell/tmux.conf new file mode 100644 index 0000000..fbe1d93 --- /dev/null +++ b/shell/tmux.conf @@ -0,0 +1,33 @@ +set-option -sa terminal-overrides ',rxvt-unicode-256color:RGB' +set-option -g history-limit 100000 +set-option -g status off +set-option -g focus-events on + +set -g default-terminal "st-256color" +set -g mouse on + +setw -g aggressive-resize on +setw -g mode-keys vi +setw -g automatic-rename on + +bind m \ + set -g mouse on \;\ + display 'Mouse: ON' + +bind M \ + set -g mouse off \;\ + display 'Mouse: OFF' + +set -s copy-command 'xsel -b -i' +bind ] run "tmux set-buffer -- \"$(xsel -b -o)\"; tmux paste-buffer" +bind-key -n MouseDown2Pane run "tmux set-buffer -- \"$(xsel -b -o)\"; tmux paste-buffer" + +bind-key -T copy-mode-vi v send-keys -X begin-selection +bind-key -T copy-mode-vi y send-keys -X copy-selection +bind-key -T copy-mode-vi r send-keys -X rectangle-toggle + +bind r source-file ~/.tmux.conf \; display "tmux config reloaded :)" +bind | split-window -h -c "#{pane_current_path}" +bind - split-window -v -c "#{pane_current_path}" + +set -s escape-time 0