Care and diligence bring luck.

谨慎和勤奋,带来好运气。

In my opinion, care and diligence may just gurantee us a safe result, not bad or so, they can't always bring us a good luck, sometimes they even become the barrier that can deter us from obtaining tremendous success.

Because good luck sometimes means we have to risk becoming the winner in the critical point, that is, we have to make the right choice, we have to avoid making lame efforts and we have to make sure that we are moving towards the right directon.

Remember that a great life and a successful career, are the result of allocating our time, energy, thoughts, and hard work.

The world is full of willing people, some willing to work, the rest willing to let them.

这个世界充满了乐于做事的人,一些人乐于工作,其余的人乐于让他们工作。

From Robert Frost.

Before writing down some comments about this quote from Robert Frost, let's first get some information about him so as to have a better understanding about the quote.

By searching his name on the internet, I got some detailed information about him on the Wikepedia.

I was surprised that he was so famous as a great poet, but I never heard about him before.

Robert Lee Frost, who was born on March 26 of 1874 and died on January 29 of 1963, was an American poet.

He is highly regarded for his realistic depictions of rural life, and his work frequently employed settings from rural life in New England in the early 20th century, using them to examine complex social and philosophical themes.

He was frequently honored during his lifetime, receiving four Pulitzer Prizes for Poetry and the Congressional Gold Medal for his poetic works.

So, I think he was the kind of people who were willing to work.

Without such willingness, one can't keep on working hard in his own field, and would easily give up or lose his enthusiasm for his work.

Am I willing to work? Yes, surely I am.

But I eagerly expect that I can get some extrinsic incentives, because only self-motivation is far from enough.

June 20th 2017 Week 25th Tuesday的更多相关文章

  1. June.19 2018, Week 25th Tuesday

    True love is visible not to the eyes but to the heart. 真爱不靠眼睛看,要用心感受. True love is visible not to th ...

  2. June 27th 2017 Week 26th Tuesday

    Happiness takes no account of time. 幸福不觉光阴过. At the beginning of this week, I planned to make some s ...

  3. June 24th 2017 Week 25th Saturday

    Who is able to be egotistical needs to be strong too. 有本事任性的人,也要有本事坚强. What is egotistical? Is it th ...

  4. June 23rd 2017 Week 25th Friday

    Life doesn't get easier, you just get stronger. 生活从未变得轻松,是你在一点一点变得坚强. So in the same way we can get ...

  5. June 22nd 2017 Week 25th Thursday

    Happiness is when the desolated soul meets love. 幸福是孤寂的灵魂遭遇爱的邂逅. When living alone for a long period ...

  6. June 21st 2017 Week 25th Wednesday

    Discontent is the first step in progress. 不知足是前进中的第一步. Several days ago, I wrote down a quote which ...

  7. June 19th 2017 Week 25th Monday

    Everyone is dissatisfied with his own fortune. 人对自己的命运总是感到不满足. We always want more, even when we hav ...

  8. June 18th 2017 Week 25th Sunday

    Life was like a box of chocolates, you never know what you're gonna get. 人生就像一盒巧克力,结果往往出人意料. Compare ...

  9. June 13th 2017 Week 24th Tuesday

    There are no regrets in life, just lessons. 人生中没有后悔,只有教训. Some people can learn from their past mist ...

随机推荐

  1. 关于sql通配符检索问题-【.NET】

    确定给定的字符串是否与指定的模式匹配.模式可以包含常规字符和通配符字符.模式匹配过程中,常规字符必须与字符串中指定的字符完全匹配.然而,可使用字符串的任意片段匹配通配符.与使用 = 和 != 字符串比 ...

  2. 封装你的协程Unity TaskManager

    unity5提供了协程,不过用起来很蛋疼,当然如果是unity2017 你就可以用async await了 提供一个TaskManager来封装协程(github  https://github.co ...

  3. awk常用命令总结

    awk工具,主要将一行分成“字段”来处理. awk '条件类型1{动作1} 条件类型2{动作2}...‘ filename awk主要是处理每一行的字段内的数据,而默认的字段的分隔符为空格键或[tab ...

  4. python-入门教程(-)

    # hello worldprint("hello world") # 变量msg = "使用变量"print(msg) # 字符串大小写变换(仅针对英文)na ...

  5. [转]浅谈 .NET Framework 与 .NET Core 的区别与联系

    本文转自:http://www.cnblogs.com/huchaoheng/p/6295688.html 2017到了,咱们学点啥啊,要想知道学点啥,先弄清.NET Framework 与 .NET ...

  6. Lucene学习之四:Lucene的索引文件格式(3)

    本文转载自:http://www.cnblogs.com/forfuture1978/archive/2010/02/02/1661436.html ,略有删改和备注. 四.具体格式 4.2. 反向信 ...

  7. 解决javac无效的目标发行版1.8问题

    之前遇到了几次这个问题,解决了又忘记了,所以特别记录一下这个问题. 遇到这个问题,改pom文件不行,改project的sdk也不行,后面看到网上说真正的原因是maven的runner的jre的环境依然 ...

  8. 使用powershell 执行脚本,windows默认不允许任何脚本运行

    使用如下命令让PowerShell运行在无限制的环境之下: Set-ExecutionPolicy Unrestricted

  9. Spring课程 Spring入门篇 5-4 advice应用(上)

    1 解析 1.1 通知执行顺序 2 代码演练 1 解析 1.1 通知执行顺序 aop执行方式为:前置通知==>所要增强的方法==>后置通知==>最终通知 在出现异常时会进行:前置通知 ...

  10. 重构指南 - 为布尔方法命名(Rename boolean method)

    如果一个方法中包含多个布尔类型的参数,一是方法不容易理解,二是调用时容易出错. 重构前代码 public class BankAccount { public void CreateAccount(C ...