I get that look a lot, but I never let it get to me.

我常常受到异样的目光,但我从不把它们放在眼里。

I don't feel good these days, it just seems I would never get the favour of the Heaven, and all of my work wasn't rewarded, even some little expectations turned out to be in vain.

It is impossible to conquer such terrible feelings, and to convince myself that I can be successful in the coming future.

Never, never, even if I don't give up, the result will be no difference.

Every time I was asked how many salaries I was paid for my work, I was reluctant to give others the accurate number, because I think it didn't match with my age, my knowledge, my painful efforts.

Maybe I just pretend to be a hard worker, pretend to be a struggler.

Depression always begins with disappointments, when these disappointments fester in my soul, it is no strange that I become more and more discourageous.

Continuous failures, one by one, put me onto a speeding treadmill of dissatisfaction, and discouragement.

I think I need to lift myself up again, because being involved in such conditions, if I can't get out, there must be more and more frustrations, disappointments, and aggravation.

Marriage is a great institution, but I am not ready for an institution yet.

婚姻是一所很好的学校,但我还没准备好上学呢。

From Mae West.

Some experts said that marriage can teach the couple, especially the husband, a lot of things, like responsiblity, skills of effective communication, tolerance, and so on.

I couldn't agree any more.

I had married before, and that marriage finally broke up, due to my immature behaviours and words.

But I have learned a lot from my ex-wife, at least I know what I was wrong in dealing with my previous relationship.

Maybe it isn't a lack of love, but a lack of friendship that makes unhappy marriage.

Three years have passed, I don't know whether I have been ready to be involved in a new relationship.

July 10th 2017 Week 28th Monday的更多相关文章

  1. July 31st 2017 Week 31st Monday

    Elegance is the only beauty that never fades. 优雅是唯一不会褪色的美. Even the most beautiful apperace would be ...

  2. July 24th 2017 Week 30th Monday

    The only limit to our realization of tomorrow will be our doubts of today. 实现明天理想的唯一障碍就是今天的疑虑. When ...

  3. July 17th 2017 Week 29th Monday

    A heart is a heavy burden. 心,可是很重的. Follow your heart, but always take your brain with you. Easy to ...

  4. July 15th 2017 Week 28th Saturday

    If I can't hear your heartbeat, you are too far away. 如果我听不见你的心跳,那是因为你离我太远了. Only when the two tight ...

  5. July 14th 2017 Week 28th Friday

    A life without a dress rehearsal, every day is broadcast live. 人生没有彩排,每天都是现场直播. Every day when I pre ...

  6. July 13th 2017 Week 28th Thursday

    No dream is too big, and no dreamer is too small. 梦想再大也不嫌大,追梦的人再小也不嫌小. Hold on to your dreams, but b ...

  7. July 12th 2017 Week 28th Wednesday

    No way is impossible to courage. 勇敢面前没有通不过的路. Without faith and courage, nothing is possible. With t ...

  8. July 11th 2017 Week 28th Tuesday

    No possession, but use, in the only riches. 真正的财富不是占有,而是使用. These days I have bought tens of books a ...

  9. July 09th 2017 Week 28th Sunday

    He that boasts of his own knowledge proclaims ignorance. 夸耀知识实乃无知. Honestly speaking, I don't agree ...

随机推荐

  1. HTML5离线资源缓存简介

    cache manifest 示例 要使用离线资源缓存,开发者首先要提供一个 cache manifest 文件 它列出了所有需要在离线状态下使用的资源,浏览器会把这些资源缓存到本地 下面就是一个 c ...

  2. 面试题目: 获取服务器IP和客户端IP

    [面试题目] 怎么获取服务器IP和客户端IP地址? I. PHP获取客户端IP, 可通过下面系统变量 1. $_SERVER['Remote_Addr'] 2. $_SERVER['HTTP_CLIE ...

  3. linux下logrotate配置和理解---转

    http://os.51cto.com/art/200912/167478_all.htm 对于Linux 的系统安全来说,日志文件是极其重要的工具.系统管理员可以使用logrotate 程序用来管理 ...

  4. html中块元素的居中。及兼容性

    块在块中垂直居中(父元素postion:relative;   子元素position:absolute; top:50%; margin-top:负二分之一高度) 块在块中水平居中 (子元素marg ...

  5. docker安装Ghost博客

    1.安装docker-compose curl -L https://github.com/docker/compose/releases/download/1.22.0/docker-compose ...

  6. 三、thymeleaf的使用

    1.简介 thymleaf是一个基于html的页面模板,springboot极力推荐使用它,代替jsp. API地址:https://www.thymeleaf.org/doc/tutorials/3 ...

  7. Redis单机数据迁移至Sentinel集群

    <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://mave ...

  8. Windows安装配置xampp

    建议大家直接看原文 1.安装XAMPP 进入https://www.apachefriends.org/zh_cn/index.html页面下载XAMPP 2 3.打开xampp控制版 4.修改apa ...

  9. C 堆内存管理

    在Win32 程序中每个进程都占有4GB的虚拟地址空间,这4G的地址空间内部又被分为代码段,全局变量段堆段和栈段,栈内存由函数使用,用来存储函数内部的局部变量,而堆是由程序员自己申请与释放的,系统在管 ...

  10. ajax接收flask传递的json数据

    from flask import Flask, request import json app = Flask(__name__) @app.route('/') def func(): res = ...