August 23rd 2017 Week 34th Wednesday
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的更多相关文章
- August 17th 2016 Week 34th Wednesday
Life is painting a picture, not doing a sum. 生活就像是绘画,而不是做算术. I am too serious about digits. All what ...
- August 30th 2017 Week 35th Wednesday
A lion does not concern himself with the opinion of sheep. 狮子可不会在意绵羊是怎么想的. As a sheep, you must run ...
- August 26th 2017 Week 34th Saturday
Love means finding the beauty in someone's imperfections. 爱情就是在那个人的不完美中找到美. Our mate isn't actually ...
- August 25th 2017 Week 34th Friday
Stop to have a rest, do not forget others still in the running. 停下来休息的时候,不要忘记别人还在奔跑. You don't need ...
- August 24th 2017 Week 34th Thursday
If you have choices, choose the best. If you have no choice, do the best. 如果有选择,那就选择最好的:如果没有选择,那就努力做 ...
- 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 ...
- August 21st 2017 Week 34th Monday
In fact, the happiest fairy tale is no more than the simple days we have together. 其实全世界最幸福的童话,也比不上我 ...
- August 20th 2017 Week 34th Sunday
Life is not a race, but a journey to be savored each step of the way. 生活不是一场赛跑,而是每一步都应该细细品尝的人生旅程. No ...
- August 16th 2017 Week 33rd Wednesday
A man can be destroyed but not defeated. 一个人可以被毁灭,但不能被打败. Before he was destroyed, he would have bee ...
随机推荐
- WPF通过<x:Array>直接为ListBox的ItemsSource赋值
<!--其中sys前缀是在xmlns中引入了System的命名空间--> <ListBox.ItemsSource> <x:Array Type="{x:Typ ...
- JAVA的静态代理与动态代理比较--转载
扩展:http://www.ibm.com/developerworks/cn/java/j-lo-proxy1/JAVA的静态代理与动态代理比较 一.概念 代理模式是常用的Java 设计模式,它的特 ...
- 深入了解javascript的sort方法
在javascript中,数组对象有一个有趣的方法 sort,它接收一个类型为函数的参数作为排序的依据.这意味着开发者只需要关注如何比较两个值的大小,而不用管“排序”这件事内部是如何实现的.不过了解一 ...
- linux运维工程师成长过程
原文地址:https://blog.csdn.net/kwame211/article/details/78059331 初级篇 linux运维人员常用工具拓扑详见: 1rsync工具 很多地方经常会 ...
- IE8实现媒体查询
IE8实现媒体查询 实现IE8引用样式 <!--[if IE 8]> 仅IE8可识别 <style> @import "Index.css"; } < ...
- 如鹏网学习笔记(十二)HTML5
一.HTML5简介 HTML5是HTML语言第五次修改产生的新的HTML语言版本 改进主要包括: 增加新的HTML标签或者属性.新的CSS样式属性.新的JavaScript API等.同时删除了一些过 ...
- [javaSE] 网络编程(URL)
获取URL对象,new出来,构造参数:String的路径 调用URL对象的getProtocal()方法,获取协议 调用URL对象的getHost()方法,获取主机 调用URL对象的getPath() ...
- 第九天- 文件操作 r w a 文件复制/修改
文件操作简介:使用python来读写文件是非常简单的操作.我们使用 open() 函数来打开一个文件,获取到文件句柄.然后通过文件句柄就可以进行各种各样的操作了.根据打开⽅方式的不同能够执行的操作也会 ...
- JAVASE(说出ArrayList,LinkedList的储存性能和特性)
说出ArrayList,和LinkedList的储存性能和特性? 答: ## ArrayList采用的是数组形式来保存对象的,这种方式将对象放在连续的位置中,优点是索引读取快,从最后插入和删除元素速 ...
- java停止一个线程
Thread类中有start(), stop()方法,不过stop方法已经被废弃掉. 平时其实也有用过,共享一个变量,相当于标志,不断检查标志,判断是否退出线程 如果有阻塞,需要使用Thread的in ...