Happiness is a way station between too much and too little.

幸福就是刚刚好。

I don't want to talk about it any more.

Maybe I am the one who was cursed by the Heaven or by the God, because there was no happiness or luckiness in return for my positive and useful behaviors, and there were full of tragedies and difficulties in my life if compared to many others.

The more I had expected, the deeper I would lost in disappointments.

Too much, or too little, nonsense to me, I am not qualified to get even a glimmer of happiness.

Maybe I should never expect luckiness.

Remeber there is no lucky numbers, even they ever appeared in your dreams, so don't spend too much on those useless things.

But what else can I do to bring myself some positive energy?

Tomorrow belongs to those who can hear it coming.

明天属于那些能听见它来临的人。

Some people, like me, always complain that they may have no glorious or bright future, and they think they are not favoured at all by the God.

They haven't yet abtained any rewards from their efforts, what they had obtained were all but failures, disappointments, frustrations.

Actually sometimes they were sleeping or deaf when the opportunities came to them, so the time belonging to them never comes.

What a pity, isn't it? If they had heard the footsteps of their time and had taken good use of the opportunities, their situation would be totally different.

But who knows? And who care?

Ok, let me bring an end to this unpleasant discussion, and shift to the subject we discussed several days ago:

The signs of being an arrogant person.

8. You despise the weak.

You can't tolerate people who show signs of being fallible.

If someone backs out from accepting responsiblities and taking charge of a situation, you resent and despise such a person.

9. You have a hard time in self-reflecting.

You find it difficult to stare at the mirror and see yourself for what you really are.

You have a hard time to look back at your failures and weaknesses.

April 16 2017 Week 16 Sunday的更多相关文章

  1. April 22 2017 Week 16 Saturday

    Fear is an essential part of our survival, it keeps us alert. 恐惧是生存的重要部分,它让我们保持警惕. Fear and pain are ...

  2. April 21 2017 Week 16 Friday

    Courage is like a muscle. We strengthen it with use. 勇气就像肌肉,越使用越强大. Most often it is true, but somet ...

  3. April 20 2017 Week 16 Thursday

    We are all in the gutter, but some of us are looking at the stars. 我们都生活在阴沟里,但仍有人仰望星空. In the past m ...

  4. April 19 2017 Week 16 Wednesday

    What would life be if we had no courage to attempt anything? 如果我们都没有勇气去尝试点什么,生活会变成什么样子呢? I remembere ...

  5. April 18 2017 Week 16 Tuesday

    Every light has darkness to balance it out. 有光明的地方,必定有黑暗予以平衡. I strive to get a balance between life ...

  6. April 17 2017 Week 16 Monday

    You will find that it is necessary to let things go; simply for the reason that they are heavy. 你会明白 ...

  7. April 2 2017 Week 14 Sunday

    You only live once, but if you do it right, once is enough. 人生只有一次,但如果活对了,一次也就够了. Maybe I am going t ...

  8. April 30 2017 Week 18 Sunday

    Our lives stretched out ahead of us, like a perpetual sunrise. 生命如永恒的日出,生生不息. Please respect yoursel ...

  9. April 23 2017 Week 17 Sunday

    It is a characteristic of wisdom not to do desperate things. 不做孤注一掷的事情是智慧的表现. We are told that we ha ...

随机推荐

  1. Python入门字符编码

    计算机基础知识 一.应用程序任何操作硬件的请求都需要向操作系统发起系统调用,然后由操作系统去操作硬件 二.文本编辑器存取文件的原理 1.打开编辑器就打开了启动了一个进程,是在内存中的,所以,用编辑器编 ...

  2. Go语言基础之4--流程控制

    一.if else语句 1.1 基本语法1 语法1: if condition { //do something } 语法2: if condition { //do something } else ...

  3. JDK Integer

    1. public static int parseInt(String s, int radix) a. 充分考虑各种异常情况:字符串为空,带符号,进制出界,计算值出界 b. 计算时转换为负数进行处 ...

  4. hive export import

    create database target_db; drop table target_db.kylin_account; dfs -rm -r /tmp/kylin_account; export ...

  5. 转 windows下安装pycharm并连接Linux的python环境 以及 windows 下notepad ++编辑 linux 的文件

    ######sample 1:windows下安装pycharm并连接Linux的python环境 https://www.cnblogs.com/junxun/p/8287998.html wind ...

  6. JS Date 时间格式化

    Date2Str(x, y) { , d: x.getDate(), h: x.getHours(), m: x.getMinutes(), s: x.getSeconds() }; y = y.re ...

  7. Nginx 为什么要延迟关闭

    防止 Nginx处理完后调用close关闭连接后  ,若缓冲区任然接收到客户端发来的内容 ,则服务器会向客户端发送RST包关闭连接,导致客户端由于收到了RST而忽略了  http  response  ...

  8. 关系型数据库---MySQL---事务

    1.概述 1.1 事务:在对业务相关的一系列数据进行操作时,需要保证数据操作的完整性(要么全部成功.要么全部失败): 1.2 MySQL中支持事务的存储引擎是:Innodb: 1.3 事务用来管理in ...

  9. jmeter-集合点---学习笔记

    集合点: 简单来理解一下,虽然我们的“性能测试”理解为“多用户并发测试”,但真正的并发是不存在的,为了更真实的实现并发这感念,我们可以在需要压力的地方设置集合点,每到输入用户名和密码登录时,所有的虚拟 ...

  10. linq to entity 左连接 右连接 以及内连接写法的区别

    左连右连还是内连这个其实你不需要关心.只需要根据实体的映射关系写查询,框架会自动帮你生成的. 至于linq查询语法与扩展方法的效率,应该是一样的,比如: var users=(from u in db ...