August 07th 2017 Week 32nd Monday
Life is just a series of trying to make up your mind.
生活只是由一系列下决心的努力所构成。
Some people say it is not your abilities but your decisions that determines what your life is and what your future will be.
Nevertheless, to some extent, I have some reservations to this opinion.
Actually, I think it is a chicken and egg problem, our decisions and our abilities are constantly interacting with each other.
Strong abilities lead to better decisions, and good decisons can promote the developments of one's abilities.
Now that my abilities are not strong, and I always think I had choszen the wrong decisions on some critical moments in my life, maybe the important thing I should bear in my mind is that I must avoid making negative decisions in the current low time, and I should improve my abilities so as to choose the right way in the next crossroad.
Never make your most important decisions when you are in your worst moods.
The storm will pass, and the spring will come.
I disapprove of what you say, but I will defend to the death your right to say it.
我不同意你说的话,但我会誓死捍卫你说话的权利。
From Evelyn Beatrice Hall.
This quote is very familiar to most of us, but I didn't know who said it, now I know.
Besides, for quite a long time, people think that it was said by the famous French writer and thinker, Voltaire.
In the actual fact, according to some historic researches, Voltaire had never said it, and it first appeared in the book, The Friends of Voltaire, written by Mrs. Evelyn Beatrice Hall, an English writer.
In other words, it was fabricated by Mrs. Hall.
But the thoughts it passed to us are quite right. We must always pay enough respects to other's rights, even we cannot say yes to their views or their claims.
If we can't do that, we may miss the potential chances of understanding the same thing from different angles, and we may lose the opportunities of letting other people understand our opinions.
Respects and empathy are always multilateral.
Never forget why I started, and then I can accomplish my mission eventually.
August 07th 2017 Week 32nd Monday的更多相关文章
- August 1st, 2016, Week 32nd Monday
Laughing is the most touching mask. 笑容是最动人的面具. I used to be very weclome in those I had met. And the ...
- August 28th 2017 Week 35th Monday
The truth may hurt for a little while but a lie hurts forever. 真相会让我们痛一阵,但谎言会让我们痛一生. Once you make a ...
- August 21st 2017 Week 34th Monday
In fact, the happiest fairy tale is no more than the simple days we have together. 其实全世界最幸福的童话,也比不上我 ...
- August 14th 2017 Week 33rd Monday
Life is like a watch, you can return to the starting point, they are not yesterday! 人生就像钟表,可以回到起点,却已 ...
- August 12th 2017 Week 32nd Saturday
That which does not kill us makes us stronger. 但凡不能杀死你的,最终都会使你更强大. Seemingly I have heard this from ...
- August 11th 2017 Week 32nd Friday
I can't give you the world, but I can give you my world. 我不能给你全世界,但是我的世界我可以全部给你. Maybe I can't give ...
- August 10th 2017 Week 32nd Thursday
Break through the psychological barrier to surpass themselves. 突破心理障碍,才能超越自己. To break through those ...
- August 09th 2017 Week 32nd Wednesday
Find hope from despair, life will become brilliant. 从绝望中寻找希望,人生终将辉煌. Have you ever seen the movie Ba ...
- August 08th 2017 Week 32nd Tuesday
The very essence of romance is uncertainty. 浪漫的精髓就在于它充满种种可能. Romance is the glamour that can turn th ...
随机推荐
- window.location和document.location的区别分析
用户不能改变document.location(因为这是当前显示文档的位置).但是,可以改变window.location (用其它文档取代当前文档)window.location本身也是一个对象,而 ...
- [PY3]——IO——文件读写
文件打开和关闭 # 使用open 打开文件,返回时值是一个 File-like对象 f.open('/test/file') # 使用read读取文件 f.read( ) # 使用close关闭文件 ...
- 控件--spinner(列表选项框)
1. 关键点 1). Spinner的菜单显示方式 它有两种显示形式,一种是下拉菜单,一种是弹出框,菜单显示形式是spinnerMode属性决定的: android:spinnerMode=" ...
- [译]用R语言做挖掘数据《七》
时间序列与数据挖掘 一.实验说明 1. 环境登录 无需密码自动登录,系统用户名shiyanlou,密码shiyanlou 2. 环境介绍 本实验环境采用带桌面的Ubuntu Linux环境,实验中会用 ...
- iOS开源项目周报0302
由OpenDigg 出品的iOS开源项目周报第十期来啦.我们的iOS开源周报集合了OpenDigg一周来新收录的优质的iOS开源项目,方便iOS开发人员便捷的找到自己需要的项目工具等.TodayMin ...
- 移动端使用的WebKit私有属性(转)
<!DOCTYPE HTML><html><head> <meta charset="utf-8"> <title>无标 ...
- 最近在研究asp.net mvc
看了很多大牛写的博客,依然对mvc云里雾里. 有一点是毋庸置疑的C应该是一座桥梁建立在model和view之间. 在ASP.NET MVC中,控制器通常是继承System.Web.Mvc.Contro ...
- String.IsNullOrEmpty 与 String.IsNullOrWhiteSpace
String.IsNullOrEmpty 指示指定的字符串是否为 null 或者 空字符串: 返回值:如果参数为 null 或者 空字符串("" .String.Empty),结果 ...
- Java - 慎用tagged class
作者的原标题是<Prefer class hierarchies to tagged classes>,即用类层次优于tagged class. 我不知道有没有tagged class这么 ...
- c 语言 随机生成数函数
int theRandom = 0; theRandom = arc4random_uniform(3)//随机生成一个从0到2的数 或者 #include "stdio.h" # ...