Stop trying to find a rewind. It's life, not a movie.

别妄想倒带,这是生活,不是电影。

There is no need to go back to yesterday, even we can do that, we may find everything would be totally different then.

If they were the same, I think we may be sure to make the same decisions and do the same things as we had done in the past.

So, there is need to find a rewind and to feel remorse of the past.

The best way to correct the past and to make compensation for the misdeeds is just to seize the current day, seize it tightly, don't let the time pass in the unprofitable way.

When I waste today, I will destroy the current page of my life, in the end there would be nothing left.

Don't let days go by.

Do not let our life slip through our fingers by living in the past nor for the future.

By living our life one day at a time, we will live all the days of our life.

The knowledge of the world is only to be acquired in the world, and not in a closet.

对世界的了解是在世界中获得的,而不是在储物间里。

From Lord Chesterfield.

That may be the very reason why so many people like traveling.

Knowledge can be only acquired concretely through pratice.

Though reading the stories of others may also can bring some knowledge, that is far from enough if you want to make those knowledge embedded in your own soul.

Go out of your own space, no matter it is your room or your field, and to see something else in this world.

Maybe the experience would bring you some different view on your current situation.

Notes about Lord Chesterfield:

Lord Chesterfield is the 4th Earl of Chesterfield, whose name was Philip Dormer Stanhope.

He was a British statesman, man of letters and wit.

He was the owner of many famous quotations.

Despite brilliant talents and admirable training, his life can't be pronounced as a success.

And he was seen as a selfish, calculating and contemptuous man, who often practised in the way of dissimulation.

So, maybe we can't know a man well enough just through his speeches.

August 22nd 2017 Week 34th Tuesday的更多相关文章

  1. August 16th 2016 Week 34th Tuesday

    The worst solitude is to be destitute of sincere friendship. 最大的孤独莫过于没有真诚的友谊. Sometimes we pay the m ...

  2. August 29th 2017 Week 35th Tuesday

    Life is a pure flame, and we live by an invisible sun within us. 生命如纯洁的火焰,而维系这火焰的是我们内心的太阳. Burn my l ...

  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 23rd 2017 Week 34th Wednesday

    Do not pray for easy lives. Pray to be stronger men. 不要祈祷舒适的生活,而是祈祷自己能变得更强大. It seems this quotation ...

  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 15th 2017 Week 33rd Tuesday

    Would rather have done a regret, do not miss the regret. 宁愿做过了后悔,也不要错过了后悔. Yesterday, I read several ...

随机推荐

  1. 向已有的table中插入数据

    table: <table id="seleted-table" class="table table-bordered table-hover" sty ...

  2. mysql时间统计,查询月份,周数据

    在mysql数据库中,常常会遇到统计当天的内容.例如,在user表中,日期字段为:log_time 统计当天 sql语句为: select * from user where date(log_tim ...

  3. Intellij Idea快捷鍵

    一.视图查看 Ctrl+F12 查看file,method结构图.类继承机构图 (不知道方法结构,Ctrl+F12一下,方法,参数,返回值,一清二楚的展现出来) Ctrl+shift+Alt+U   ...

  4. [CPP] new delete

    前言 今天我们来谈一谈CPP中很关键的两个操作 new 和 delete ,关于他们与析构函数的关系.动态分配的内存空间.new array ( new[] ) 和 delete array ( de ...

  5. ES6常用七大特性

    ES6可谓是对JS语言的一个颠覆性改变,增加了Module改善JS一直被诟病的模块化.Promise解决异步函数的回调地狱.Class的面相对象编程... 在学习ES6的过程中,大家或多或少都有看过阮 ...

  6. 验证是否是正整数,是否是mail,是否是正确的身份证

    /// <summary> /// 通用验证类 /// </summary> class DataValidate { /// <summary> /// 验证正整 ...

  7. 对datatable添加数据

    DataTable dt = new DataTable(); dt.Columns.Clear(); dt.Columns.Add("事故发生时间"); dt.Columns.A ...

  8. 多边形游戏(DP)

    Description 多边形游戏是一个单人玩的游戏,开始时有一个由n个顶点构成的多边形.每个顶点被赋予一个整数值,每条边被赋予一个运算符 "+" 或 "*". ...

  9. Spring MVC 实现Excel的导入导出功能(1:Excel的导入)

    简介 这篇文章主要记录自己学习上传和导出Excel时的一些心得,企业办公系统的开发中,经常会收到这样的需求:批量录入数据.数据报表使用 Excel 打开,或者职能部门同事要打印 Excel 文件,而他 ...

  10. poj 1088(DP+递归)

    这题状态方程很容易得到:DP[i][j] = max(DP[i-1][j],DP[i+1][j],DP[i][j-1],DP[i][j+1]) + 1 难点在于边界条件和剪枝,因为这方程的条件是点在m ...