Love means never having to say you are sorry.

爱就是永远不必说对不起。

If there is ture love, you will never do things that would irritate your lover.

If there is true love, you will always be understood easily by your lover.

Then you will have no chance to say you are sorry.

But how to build up a harmony relationship and maintain it as long as possible?

That is quite a big question, and there is no simple answer to it.

Several of my friends told me that I am with higer IQ but lower EQ, which made it hard to communicate effectively with me.

So, how to improve my EQ?

Go out and make friends with more poople?

That may be not feasible for me, because I always fear that I can't afford the cost of frequent leisure activities with friends.

Most of the poor, like me, always can't behave in a natural and generous way, and that in turn, give others a bad impression, make our friends gradually alienate us.

How about awarding me with some extra money and letting me get rid of such poor conditions?

Those who cannot remember the past are condemned to repeat it.

不能铭记过去的人注定要重蹈覆辙。

From Geroge Santayana.

The past means experience, no matter it is sweet or bitter.

If it is sweet, that is to say, we have done the right things or we have maken the right choice, next time, when the same things happen to us, we may tackle with them easily and smoothly, and we may have more time to make our performance as perfect as possible.

If it is biiter, then it shows we have some wrongdoings or we have choosen the bad choice, next time when we encounter the same things, we may know how to do them right and how to avoid the pitfalls and avoid falling down at the same point.

It is not the worst to make faults or lose behind, it is the worst that one don't learn from his lessons and are not willing to catch up with other's pace even when he has been left behind.

I need to remember that, if I am to have decent life, I have to know who I am and what lies ahead of me.

Just run, run fast towards the finishline, even we may fall behind, we still can get a little closer towards it.

August 02nd 2017 Week 31st Wednesday的更多相关文章

  1. August 30th 2017 Week 35th Wednesday

    A lion does not concern himself with the opinion of sheep. 狮子可不会在意绵羊是怎么想的. As a sheep, you must run ...

  2. August 23rd 2017 Week 34th Wednesday

    Do not pray for easy lives. Pray to be stronger men. 不要祈祷舒适的生活,而是祈祷自己能变得更强大. It seems this quotation ...

  3. August 16th 2017 Week 33rd Wednesday

    A man can be destroyed but not defeated. 一个人可以被毁灭,但不能被打败. Before he was destroyed, he would have bee ...

  4. August 09th 2017 Week 32nd Wednesday

    Find hope from despair, life will become brilliant. 从绝望中寻找希望,人生终将辉煌. Have you ever seen the movie Ba ...

  5. August 05th 2017 Week 31st Saturday

    All endings are beginnings, we just don't know it at the time. 所有的结局都是新的开始,只是当时我们不知道而已. Several mont ...

  6. August 04th 2017 Week 31st Friday

    Love is a vine that grows into our hearts. 爱是长在我们心里的藤蔓. What is love? Maybe no one can explain it cl ...

  7. August 03rd 2017 Week 31st Thursday

    A person has at least one dream, there is a reason to be strong. 一个人至少要有一个梦想,要有一个理由去坚强. Owning a dre ...

  8. August 01st 2017 Week 31st Tuesday

    A contented mind is the greatest blessing a man can enjoy in this world. 知足是人生在世最大的幸事. Being content ...

  9. May 31st 2017 Week 22nd Wednesday

    No great discovery was ever made without a bold guess. 没有大胆的猜测就没有伟大的发现. When our ancestors saw the b ...

随机推荐

  1. C/C++中字符串与数字转换

    本文总结了四种字符串和数字相互转换的方法,方法一和方法二是c++中的方法,方法三和方法四是C语言库函数的方法. 方法一:c++11中string中添加了下面这些方法帮助完成字符串和数字的相互转换 st ...

  2. 07 volatile & java 内存模型

    一 从单例模式说起 在singleton 单例模式一文中我们详细了解Java中单例模式的实现,不了解的可以先阅读之. 在该文最后我们给出了双重校验锁来保证既实现线程安全,又能够使性能不受很大的影响的单 ...

  3. System.Web.Caching.Cache类 缓存 各种缓存依赖(转)

    转自:http://www.cnblogs.com/kissdodog/archive/2013/05/07/3064895.html Cache类,是一个用于缓存常用信息的类.HttpRuntime ...

  4. javascript 遍历

    数组的遍历你都会用了,那Promise版本的呢 这里指的遍历方法包括:map.reduce.reduceRight.forEach.filter.some.every因为最近要进行了一些数据汇总,no ...

  5. HDFS Java Client对hdfs文件增删查改

      step1:增加依赖 pom.xml           ...      <!-- https://mvnrepository.com/artifact/org.apache.hadoop ...

  6. 整理一些前端开发比较好的node包

    1.一个base64转换的包 !https://www.npmjs.com/package/js-base64 2 js 压缩 !https://www.npmjs.com/package/uglif ...

  7. 使用 IntelliJ IDEA 创建第一个java程序 Hello World

    1.首先打开新建项目窗口 1.1.选择创建java程序 1.2.Project SDK,选择jdk安装路径 1.3.Additional Libraries and Frameworks 额外的库与框 ...

  8. block中self关键字的使用-防止self 被retain一次

    在代码块中使用对象的成员时(成员变量是属性strong,MRC估计是retain时效果一样,使用方法时也一样): 警告: capturing self strongly in this block i ...

  9. 01-Web客户端与服务器详解

    1.CS与BS 软件使用方式上两种划分 C/S架构 Client/ServerPC客户端.服务器架构 特点: 在服务器当中就主要是一个数据库,把所有的业务逻辑以及界面都交给客户端完成 优点: 较为安全 ...

  10. 【转】golang的channel的几种用法

    关闭2次 ch := make(chan bool) close(ch) close(ch)  // 这样会panic的,channel不能close两次 读取的时候channel提前关闭了 ch : ...