May 14th 2017 Week 20th Sunday
A smooth sea never made a skillful mariner.
平静的海洋练不出熟练的水手。
A smooth sea never made a skillful mariner, but a violent sea may kill a greenhand.
When we are engaged in a relatively new vacation, the best way may be to follow the principle from easy to difficult, from simple to complex.
If you start a job that may be too difficult for you, you would be frustrated by the slow progress and finally you would begin to doubt your own abilities.
That is terrible.Sometimes, it isn't shameful to start with a simple job, if you can keep learning and improving your abilities, there must be one day that you can sail through the most turbulent ocean.
A mother's arms are made of tenderness and children sleep soundly in them.
母亲的臂膀是用温柔做的,孩子们可以在其中安然入眠。
From Victor Hugo.
That day, May 14th 2017, is this year's mother's day.
It is a celebration honoring the mother of the family, as well as motherhood, maternal bonds and the huge influence of mothers in our society.
It may be celebrated on various days, most commonly on the second Sunday of May.
It seems this special day has been accepted by the public and become more and more popular in just tens of years in China mainland.
I think in some ways it just serves as a good example of the strong influnence of the western culture.
Certainly, the reason of its popularity also lies in the universal love towards moms.
That morning, soon after I got up, I sent a red envelope to my mother, she was very delighted.
But she didn't spend the money for herslef, she bought a set of cross-stiches to decorate my house.
That is love, the selfless love of mothers.
And I hope I can repay my mother and my father for their love and support, at least I hope I can win more and more self-independence so as to relieve their worries about my life.
May 14th 2017 Week 20th Sunday的更多相关文章
- August 20th 2017 Week 34th Sunday
Life is not a race, but a journey to be savored each step of the way. 生活不是一场赛跑,而是每一步都应该细细品尝的人生旅程. No ...
- April 23 2017 Week 17 Sunday
It is a characteristic of wisdom not to do desperate things. 不做孤注一掷的事情是智慧的表现. We are told that we ha ...
- January 14th, 2018 Week 02nd Sunday
Embrace your life, for we only live once. 拥抱你的生活,因为我们只能活一次. We just live once, so I would rather liv ...
- November 14th, 2017 Week 46th Tuesday
Eternity is said not to be an extension of time but an absence of time. 永恒不是时间的无限延伸,而是没有时间. What is ...
- November 12th, 2017 Week 46th Sunday
I love you not for who you are, but for who I am with you. 我爱你不是因为你是谁,而是因为跟你在一起,我是谁. I enjoy the fee ...
- November 05th, 2017 Week 45th Sunday
Do not pray for an easy life, pray for the strength to endure a difficult one. 不要祈求安逸的人生,祈求拥有撑过艰难的力量 ...
- October 29th, 2017 Week 44th Sunday
There was another life that I might have had, but I am having this one. 我明明可以过另一种生活,但我却选择了这一种. Be re ...
- October 22nd, 2017 Week 43rd Sunday
Yesterday is not ours to recover, but tomorrwo is ours to win or lose. 我们无法重拾昨天,但我们可以选择赢得或者输掉明天. Eve ...
- October 15th 2017 Week 42nd Sunday
Excellence is a continuous process and not an accident. 卓越是一个持续的过程而不是一个偶然事件. It is said that ten tho ...
随机推荐
- C# 判断两个集合(List)是否相等
1.两个list如果有重复元素(如List1: a,b,a List2: b,b,a) 是无法通过包含关系来判断是否相等的. 有两个办法,其一是两个List排序后再按顺序比较.另一个办法就是计算各元 ...
- [转] Java @interface 自定义注解
[From] http://blog.csdn.net/afterlife_qiye/article/details/53748973 1. 注解的好处 注解可以替代配置文件完成对某些功能的描述,减少 ...
- NodeJS使用SSL证书
[From] https://segmentfault.com/q/1010000004705326 var options = { key: fs.readFileSync('../ssl/priv ...
- Selenium => Debugging “Element is not clickable at point” error
[From] http://stackoverflow.com/questions/11908249/debugging-element-is-not-clickable-at-point-error ...
- B/S和C/S架构简单理解
B/S和C/S架构简单理解 B/S结构.C/S结构 B(browser浏览器)-S(server服务器),说简单点就是通过浏览器来请求服务器,实现数据交互.那自然了,C(client客户端软件)-S( ...
- 微信小程序图片上传放大预览删除代码
效果: 一,下面是上传图片的效果 image.js代码: Page({ //选择相册或拍照 data: { imgs: [] }, //上传图片 chooseImg: function (e) { v ...
- Python Excel操作库
xlrd:支持.xls..xlsx读 xlwt:只支持.xls写 xlutils:只支持.xls读写 依赖于xlrd和xlwt xlwings:支持.xls读,.xlsx读写 可以实现Excel和Py ...
- mysql记录数据库中重复的字段的数据
SELECT SUM(co)FROM ( SELECT telephone, count(telephone) AS co ...
- 安装wine
sudo add-apt-repository ppa:ubuntu-wine/ppa sudo apt-get update sudo apt-get install winetricks
- 阻止事件的默认行为,例如click <a>后的跳转~
在W3C中,使用preventDefault()方法: 在IE中,使用window.event.returnValue = false.