Would rather have done a regret, do not miss the regret.

宁愿做过了后悔,也不要错过了后悔。

Yesterday, I read several theses (meaning papers) about ROS and real-time road-boundary-detection algorithms, one of the authors had started this three years ago and he just got his master's degree in a not-wellknown university this year.

That means he is a little younger than me, but currently I am just doing what he had done before.

And much more frustrating, even repeating these procedures is not an easy job for me.

Maybe I shouldn't be so disappointed with my poor performance, after all I just learned how to program with ROS several days ago.

Ok, stop talking about this topic.

Yesterday, I read a news about an fitness app which was sued by its users for not keeping its promises on returning awards to those who have reached their goals.

Under the investigation of the government, the app had to pay more to end the disputes.

But I don't think it can end the disputes successfully, once losing the confidence of your users, there may be no chance to win them again.

A good example to illustrate the effects of failing to live up to your promises, isn't it?

Discovery consists of seeing that what everybody has seen and thinking what nobody has thought.

所谓发现,就是看见别人所看过的,而想到别人不曾想到的。

From Albert Szent-Gyorgyi.

Maybe it can be understood like the following:

The real voyage of discovery consists not in seeking totally new landscapes, but in having new eyes.

Most of us are not able to discover the truth of things we see, not because they present some false appearance and mislead us into error, but because we are lack of reasoning powers and keen eyes, we are often prevailed by our preconceived opinions and our prejudice when facing new things.

Actually, if we can have an open attitude toward trying new things, we not only can experience something different, we also can improve or deepen our understanding over those existing things.

That would be a win-win situation.

Therefore, if you can experience the sharp, scary pleasure that comes from starting something new, you will be willing to call on all your resources and challenge your mind, your body, your spirit to understand it as throughly as you can.

August 15th 2017 Week 33rd Tuesday的更多相关文章

  1. August 9th 2016, Week 33rd Tuesday

    Tomorrow is never clear, our time is here. 明天是未知的,我们还是要过好当下. Tomorrow is not unpredictable, it is cl ...

  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 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 ...

  4. August 19th 2017 Week 33rd Saturday

    Live for today and stop stressing out about tomorrow. 为今天而活,不必为明天过分担心. Stop bewailing the past misfo ...

  5. August 18th 2017 Week 33rd Friday

    If you shed tears when you miss the sun, you also miss the stars. 如果你因为错过太阳而哭泣,你也将会错过繁星. If you have ...

  6. August 17th 2017 Week 33rd Thursday

    Fate is responsible for shuffling, but the game of cards is our own! 命运负责洗牌,但是玩牌的是我们自己! Today, I upd ...

  7. August 16th 2017 Week 33rd Wednesday

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

  8. August 14th 2017 Week 33rd Monday

    Life is like a watch, you can return to the starting point, they are not yesterday! 人生就像钟表,可以回到起点,却已 ...

  9. August 13th 2017 Week 33rd Sunday

    The best accessory a girl can own is confidence. 女生最好的饰品就是自信. Only when we have our own ideas and on ...

随机推荐

  1. 如果天空不死博客java阅读列表整理

    如果天空不死的主页https://home.cnblogs.com/u/skywang12345 下面是最近总结的Java集合(JDK1.6.0_45)相关文章的目录. 01. Java 集合系列01 ...

  2. iview中使用Tag时进行数据的变化和实现将输入内容转化为标签输出数组

    上代码 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title ...

  3. <机器学习实战>读书笔记--k邻近算法KNN

    k邻近算法的伪代码: 对未知类别属性的数据集中的每个点一次执行以下操作: (1)计算已知类别数据集中的点与当前点之间的距离: (2)按照距离递增次序排列 (3)选取与当前点距离最小的k个点 (4)确定 ...

  4. JS常用时间处理方法

    这里会扩展一些JS常用时间处理方法,内置时间对象的方法不再赘述 -- 传送门:http://www.w3school.com.cn/js/jsref_obj_date.asp 时间格式化 -- 转换为 ...

  5. Tomcat源码分析——Session管理分析(下)

    前言 在<TOMCAT源码分析——SESSION管理分析(上)>一文中我介绍了Session.Session管理器,还以StandardManager为例介绍了Session管理器的初始化 ...

  6. IOS渐变图层CAGradientLayer

    看支付宝蚂蚁积分,天气预报等好多APP都有圆形渐变效果,今天就试着玩了. 一.CAGradientLayer类中属性介绍 CAGradientLayer继承CALayer,主要有以下几个属性: 1.@ ...

  7. 第6章 通过CrawlSpider对招聘网站进行整站爬取

    通过前几章的2个项目的学习,其实本章的拉钩网项目还是挺容易理解的. 本章主要的还是对CrawlSpider源码的解析,其实我对源码还不是很懂,只是会基本的一些功能而已. 不分小节记录了,直接上知识点, ...

  8. nodejs简易代理服务器

    直接代码: var http = require('http') var proxy = http.createServer(function (request, response) { var op ...

  9. C# List<T> 对于某个字段去重复

    gradeSubjectItem.teacher = teacherInfos.Where((x, i) => teacherInfos.FindIndex(z => z.guid == ...

  10. [javaSE] 多线程(守护线程)

    我们一般使用多线程,都是while的死循环,想要结束线程,只需退出死循环即可 当线程中调用了sleep()方法或者wait()方法,当前的线程就会进入冻结状态,这个线程就结束不了 调用Thread对象 ...