Do not pray for easy lives. Pray to be stronger men.

不要祈祷舒适的生活,而是祈祷自己能变得更强大。

It seems this quotation is from John Kennedy, one of the greatest and most famous presidents of the United States.

Why did he obtain so high rates as a president?

Checking those events in his time, we would find his term of office was basically marked by high tensions with the Soviet Union in the Cold War.

And the most well-known, may be the Cuban Missile Crisis, which nearly resulted in the breakout of a global thermonuclear conflict.

At that time, the Soviet Union was at its peak and won many of the conflicts over the United States, but the United States, had been entangled in both international and domestic affairs and had to conduct stategic concentrations.

In such unfavourable conditions, Mr. Kennedy wasn't frightened and didn't choose to surrender to his rival but choose to face up the challenges bravely and took some new measures, which laid the foundation for the later victory.

Therefore, it is better to pray to be stronger than to pary for easy lives.

Remember, life doesn't become easier, it is you, you become stronger.

The best way to cheer yourself is to try to cheer someone else up.

让自己开心起来的最好的方法,是试着让别人开心。

From Mark Twain.

Living in this busy and stressful world, to keep yourself cheerful is very important.

Though somebody tells us that if we can follow our own hearts, it would be much easier to become happy and satisfied about life.

That is not true, just because most of us can't make clear what we really want and where our hearts will lead us to.

For the majority, the best way to be cheerful may be to win other's approval.

Sometimes, a simple affirmation or apprreciation may make us full of energy again.

We don't live for ourselves, we always need to get some kind of affirmation or rewards of our payments.

Now, you know what I mean, I need approval and rewards.

Can I get some, otherwise I think I may gradually lose the reasons to insist on doing such stupid things.

August 23rd 2017 Week 34th Wednesday的更多相关文章

  1. August 17th 2016 Week 34th Wednesday

    Life is painting a picture, not doing a sum. 生活就像是绘画,而不是做算术. I am too serious about digits. All what ...

  2. August 30th 2017 Week 35th Wednesday

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

  3. August 26th 2017 Week 34th Saturday

    Love means finding the beauty in someone's imperfections. 爱情就是在那个人的不完美中找到美. Our mate isn't actually ...

  4. August 25th 2017 Week 34th Friday

    Stop to have a rest, do not forget others still in the running. 停下来休息的时候,不要忘记别人还在奔跑. You don't need ...

  5. August 24th 2017 Week 34th Thursday

    If you have choices, choose the best. If you have no choice, do the best. 如果有选择,那就选择最好的:如果没有选择,那就努力做 ...

  6. August 22nd 2017 Week 34th Tuesday

    Stop trying to find a rewind. It's life, not a movie. 别妄想倒带,这是生活,不是电影. There is no need to go back t ...

  7. August 21st 2017 Week 34th Monday

    In fact, the happiest fairy tale is no more than the simple days we have together. 其实全世界最幸福的童话,也比不上我 ...

  8. August 20th 2017 Week 34th Sunday

    Life is not a race, but a journey to be savored each step of the way. 生活不是一场赛跑,而是每一步都应该细细品尝的人生旅程. No ...

  9. August 16th 2017 Week 33rd Wednesday

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

随机推荐

  1. [C语言]日期间天数差值的计算

    刷一些算法题时总能遇到计算日期间天数的问题,每每遇到这种情况,不是打开excel就是用系统自带的计算器.私以为这种问题及其简单以至于不需要自己动脑子,只要会调用工具就好.直到近些天在写一个日历程序的时 ...

  2. [中英对照]vmlinuz Definition | vmlinuz的定义

    vmlinuz Definition | vmlinuz的定义 vmlinuz is the name of the Linux kernel executable.vmlinuz是Linux内核可执 ...

  3. 使用Vue搭建多页面应用

    使用Vue-cli搭建多页面应用时对项目结构和配置的调整   前提:在这里使用的是webpack模板进行搭建 第一步.安装Vue-cli并且进行初始化 首先打开git,在里面使用npm全局安装Vue- ...

  4. IOS项目之弹出动画二

    在IOS项目之弹出动画一中只是实现也功能,并没有体现面向对象的思想 ,今天就试着把它封装了一下,弹出视图的内容可以根据自定义,此处只是用UIDatePicker来演示 我把它传到了GitHub上    ...

  5. Nginx Open File Cache

    Nginx 的 open_file_cache 相关配置可以缓存静态文件的元信息,在这些静态文件被频繁访问时可以显着提升性能. 被缓存的文件元信息包括: fd,文件被打开一次后,fd保留使用 size ...

  6. 向tekkaman学习

    勤奋程度要向tekkaman学习,把这几年落下的补回来.

  7. Html与Css关联到一起

    在HTML文件中使用Link标签连接独立的Css文件 将Link标签放在head标签中 like标签是空标签,只写开始标签,不写结束标签 我们需要为like标签设置一些属性 type的值设置为text ...

  8. VS中特殊的注释——TODO/UNDONE/HACK的使用

    在代码的后面添加形如下面注释: //TODO: (未实现)…… //UNDONE:(没有做完)…… //HACK:(修改)…… 等到再次打开VS的时候,找到 :视图>任务列表 即可显示所有带有T ...

  9. Web Service与Apache CXF 框架

    一.WebService简介 为了支持跨网络的机器间相互操作交互而设计,用于开发分布式的互操作的应用程序组件. Web Service服务通常被定义为一组模块化的API,它们可以通过网络进行调用,来执 ...

  10. Centos的一个find命令配合rm删除某天前的文件

    语句写法:find 对应目录 -mtime +天数 -name "文件名" -exec rm -rf {} \; 例1: 将/usr/local/backups目录下所有10天前带 ...