If you fell down yesterday, stand up today.

昨天跌倒了,今天仍然要站起来。

From Herbert George Wells.

If you fell down yesterday and you didn't manage to stand up again, then you would have no chance to make any progess.

Sometimes I feel it is very comfortable to lie in the bed and do nothing, it is just like falling down without struggling to stand up again.

I ever hoped I can become an expert in my field, but finally I found I was even inferior to the younger generations.

Life always hits me in my head with a brick, I fall down and hurt badly, but I will never lose my faith in life, I must try to stand up again.

I think success is no accident, it is hard work, perseverance, learning, studying, sacrifice and most of all, love of what we are doing now and learning to do.

Life is something that happens when you can't get to sleep.

生活就是那些在你失眠的时候发生的事情。

From Fran Lebowitz.

Today, I slept for a whole day. When I got up, it was about to get dark and I was devoured by guilt because I would have gotton up at the regular time and I would have done the scheduled tasks, I had promised to others.

It is the weekend, and I was tired, but if I had taken it more seriously, I could have realized my promises.

Uh, it seems I am going off the subject.

Sometimes I really can't get to sleep when it is the time to sleep, I know why I can't get to sleep, the very reason may be that I find I can't earn enough money to support my family and I find I don't have the reliable skills to earn a decent life.

That is the very source of my anxieties.

Steve Jobs had said:

Your work is going to fill a large part of your life, and the only way to be truly satisfied is to do what you believe is great work.

And the only way to do great work is to love what you do.

If you haven't found it yet, keep looking.

Don't settle.

As with all matters of the heart, you'll know when you find it.

Definitely, it seems I haven't found what I really love to do, I always feel boring with my work, then it is no strange that I always feel unhappy and unsatified.

May 11th 2017 Week 19th Thursday的更多相关文章

  1. October 19th 2017 Week 42nd Thursday

    If you remember me, then I don't care if everyone else forgets. 只要你记得我,我不介意整个世界都把我遗忘了. I can't follo ...

  2. May 13th 2017 Week 19th Saturday

    Mountains look beautiful from a distance. 远处看山山更美. This gnomic seems to circulate very long, its mor ...

  3. March 30 2017 Week 13 Thursday

    I learned the value of hard work by working hard. 只有真的努力了,才会知道努力的价值. On the day, March 12th 2017, I ...

  4. August 11th 2016, Week 33rd Thursday

    A particular fine spring came around. 转眼又是一番分外明媚的春光. Hey, it is hot outside, sometimes even unbearab ...

  5. January 11th, 2018 Week 02nd Thursday

    Live, travel, adventure, bless, and don't be sorry. 精彩地活着,不停地前行,大胆冒险,心怀感激,不留遗憾. Everything we do is ...

  6. November 16th, 2017 Week 46th Thursday

    Don't you wonder sometimes, what might have happened if you tried. 有时候,你会不会想,如果当初试一试会怎么样? If I had t ...

  7. November 11th, 2017 Week 45th Saturday

    Happiness is a direction, not a place. 快乐是一个方向,不是一个目的. Do you remember those moments in your life wh ...

  8. November 09th, 2017 Week 45th Thursday

    If we did all the things we are capable of, we would literally astound ourselves. 我们如果尽全力去完成我们能做到的事情 ...

  9. November 02nd, 2017 Week 44th Thursday

    Knowledge is weightless, a treasure you can always carry easily. 知识没有重量,她是我们可以很容易携带的珍宝. Knowledge is ...

随机推荐

  1. sql 死锁

    先上代码connectA: BEGIN TRAN UPDATE dbo.Student SET Sorce= WHERE id= waitfor delay '00:00:05' SELECT * F ...

  2. SpringBoot---开发的热部署

    1.模板的热部署 在SpringBoot中,模板引擎的页面默认是开启缓存的: 如果修改了页面的内容,则刷新不到修改后的页面: 可以在application.properties中关闭模板引擎的缓存: ...

  3. TeamCity 持续集成工具

    https://www.jetbrains.com/teamcity/ null

  4. 如何在vue && webpack 项目中的单文件组件中引入css

    引入方式很简单,就是在script下使用require()即可. 因为import 是import...from 的形式,所以是不需要的. <script> import {mapStat ...

  5. Permanent data region free space insufficient to allocate 64792 bytes of memory

    TT0802: Database permanent space exhaustedTT6220: Permanent data region free space insufficient to a ...

  6. 在nginx上部署django项目--------Gunicorn+Django+nginx+mysql

    一.安装nginx 以前的博客我有写,这里就不写了 http://www.cnblogs.com/wt11/p/6420442.html 二.安装mysql 我用的mysql5.7  64位的二进制包 ...

  7. JS获取鼠标位置,兼容IE FF

    由于Firefox和IE等浏览器之间对js解释的方式不一样,firefox下面获取鼠标位置不能够直接使用clientX来获取.网上说的一般都是触发mousemove事件才行.我这里有两段代码,思路都一 ...

  8. 线程操作之Thread类

    在.Net fremework 中,所有与线程有关的操作都封装在System.Thread命名空间中, 所以在操作线程时,要先引入次命名空间 Thread类的常用方法 Abort 线程终止 Join ...

  9. git每次提交都输入密码

    打开gitbash执行即可 git config --global credential.helper store 长期储存密码,因为git默认是不储存密码的,不执行这条命令的话每次更新代码,或者提交 ...

  10. python之高阶函数filter

    原文 Python内建的filter()函数用于过滤序列. 和map()类似,filter()也接收一个函数和一个序列.和map()不同的是,filter()把传入的函数依次作用于每个元素,然后根据返 ...