The beauty you see in me is a reflection of you.

你在我身上看到的美,正是你的倒影。

From Jalaluddin Rumi.

What we see of others and of the world would be the reflection of what we want to see.

So, if we want to see the beauty in others, we must have our eyes focus in finding out the beauty, and concentrate on the good of others.

Practise in that way, day by day, we will find the world would be more friendly, and the environment would be more favorable.

We often turn out to be our own worst enemy.

我们最大的敌人往往是我们自己。

From Wonder Wheel.

Very often we are our own worst enemy because we foolishly build some stumbling blocks on our way that leads us to success and happiness.

If we want to destroy those blocks and walk onto the right way, we must learn how to stop being our own worst enemies and try to become our own best friends, our own greatest ally, and our own best self.

For me, the first step may be to manage my expectations in life, try to set realistic goals, and don't bite off more than I can chew. I must understand that I can't control things outside of my own sphere. Look forwards, but don't expect, that next raise or promotion. Be realistic. If we expect to get everything, we will be left feeling unfulfilled; if we don't expect too much, we will be left feeling content with what we have gained.

And the second step for me is to appreciate those small things and small achievements, this may be especially important in the context of my own success. If we fail to appreciate the small things that we accomplish, we will begin to lose a sense of self-respect. If we can appreciate all the good things we do, even on a small scale, that will help us a lot in building our confidence, motivation and self-respect.

And the third is to use the past as a teacher instead of a weapon. Don't let the feelings of regret or remorse stop us from designing a better future, from starting a new beginning today. Every ending leads to a new beginning, every broken heart opens a doorway to greater love, every mistake can inspire us towards some incredible success. So, please transform all the self-criticism into motivation, and that will bring some amazing benefits.

Actually, there are many reasons and many benefits, but all in all, we should always beware of our inner enemy, understand the ways that it tries to hold us back and lead us the wrong way, and constant awareness will shine a light on everything.

June 09th, 2019. Week 24th, Sunday的更多相关文章

  1. ​June 10. 2018, Week 24th, Sunday

    There is no friend as loyal as a book. 好书如挚友,情谊永不渝. From Ernest Miller Hemingway. Books are my frien ...

  2. June 11th 2017 Week 24th Sunday

    I hope I can find the one who is afraid of losing me. 我希望找到一个担心失去我的人. When I was young, sometimes I ...

  3. June 30th, 2019. Week 26th, Sunday

    It's so easy to be careless, it takes courage and courage to care. 不在乎很容易,但在乎却需要很多勇气. Sometimes it w ...

  4. June 16th, 2019. Week 25th, Sunday.

    I can fly higher than an eagle, for you are the wind beneath my wings. 我之所以能飞得比鹰还高,是因为有你做我羽翼下的风. You ...

  5. June 17. 2018, Week 25th. Sunday

    Dad is and always will be my living, breathing superhero. 在我眼里,爸爸是现实版的超级英雄,现在.将来,永远都是. From Bindi Ir ...

  6. June 16. 2018, Week 24th. Saturday

    Success is the ability to go from one failure to another with no loss of enthusiasm. 成功,就是即使经历过一个又一个 ...

  7. June 15. 2018 Week 24th Friday

    If at first you don't succeed, then dust yourself off and try again. 失败了没关系,重振旗鼓,从头再来. From Aaliyah, ...

  8. June 14. 2018 Week 24th Thursday

    Good friends, good books, and a sleepy conscience: this is the ideal life. 拥有益友.良书和一颗宁静的内心:这就是理想的生活. ...

  9. June 13. 2018 Week 24th. Wednesday

    Life is too short to miss out anything; try to take it slowly. 生命短暂,放慢脚步,别错过任何沿途的风景. From Ferris Bue ...

随机推荐

  1. .NET Core 使用HMAC算法

    一. HMAC 简介 通过哈希算法,我们可以验证一段数据是否有效,方法就是对比该数据的哈希值,例如,判断用户口令是否正确,我们用保存在数据库中的password_md5对比计算md5(password ...

  2. 爬虫(四):requests模块

    1. requests模块 1.1 requests简介 requests 是一个功能强大.简单易用的 HTTP 请求库,比起之前用到的urllib模块,requests模块的api更加便捷.(本质就 ...

  3. 在centos上安装mysql

    本文依然是用的xftp上传gz文件,然后在xShell上操作的,如果没有安装使用这两个文件的请查阅之前的博客. 1.将下载好的文件用xftp上传到对应的位置. 2.解压文件:tar  -zvxf  m ...

  4. CSS之border绘制三角形

    用CSS的border可以画出高质量的三角形. 我们一般会这么使用border: #test-border { width: 100px; height: 100px; margin: 100px a ...

  5. XSS劫持cookie登录

    <script>alert (document.cookie)</script>  获取cookie 实验环境用的DVWA 先用系统账号登录,admin    password ...

  6. 寝室远程连接室友mysql数据库

    注意,本方法是适用于同一局域网下的远程连接 注意,本方法是适用于同一局域网下的远程连接 注意,本方法是适用于同一局域网下的远程连接 首先需要修改mysql数据库的相关配置,将user表中的host改为 ...

  7. nginx配置文件 http 强跳转 https

    路径 /usr/local/nginx/conf/conf.d/test.jackcui.com.conf server { listen 80; server_name test.jackcui.c ...

  8. Appium 1.15.1版本的appium-doctor不是内部或者外部命令的问题

    先讲一下整个app自动化环境的部署过程: 1.安装appium 2.安装nodejs 3.查看appium的环境是否完成 问题:安装appium和nodejs都没啥问题,直接到对应的官网下载然后安装即 ...

  9. reduce方法实现累加累乘的方式

    reduce函数对参数序列中的值进行积累,第二个参数可以为:str,tuple,list,代码示例如下: from functools import reduce#实现列表内的所有数的累加,即第一步x ...

  10. 54. Spiral Matrix && 59. Spiral Matrix II

    Given a positive integer n, generate a square matrix filled with elements from 1 to n2 in spiral ord ...