No great discovery was ever made without a bold guess.

没有大胆的猜测就没有伟大的发现。

When our ancestors saw the birds flying in the sky, they wondered that can people fly in the sky like birds.

Then some of them started to try. After hundreds of thousands of times of trials, and the process had lasted for thousands of years, in the 19th century, people eventually managed to fly in the sky by balloons and planes.

If there is no bold guess, then there is definitely no great invention and discovery.

There are plenty of possiblities in our life, sometimes a crazy thought may lead to a thorough change.

Actually, most of us are not lack of imaginations, we always wonder what our life will be if we can do something different. However, the reason that most of us can't become the lucky one is just due to the lack of activities that can uphold our dreams.

For myself, I often feel boring of my current life and work, I really want to make some changes, but that often stops at the stages of imagination.

Enthusiasm, persistence, efficiency, that are the very things I need, and only with their helps can I make something realized.

Food is the most primitive form of comfort.

食物是最原始的安慰人心的东西。

From Sheila Graham.

A lot of people say that when they feel depressed, a big meal can make them feel better.

And when we are hungry and tired, we often feel frustrated if the results of our efforts are not as good as we have expected. Then a big meal or several bottles of beer can save us from the awful feelings.

To have a big meal, we must have to earn the money to affort it.

Today, I vow to turn my life around and make something good accomplished in the latter half of this year.

First, there is a small goal: get up a little earlier and never be late to work.

Recently, a round of heavry rainfall hit the central China, and left many people dead or missing, triggering the most serious floods on record in many rivers.

Many houses were destroyed by the flood, many people lost their homes and their wealth in the disaster.

I expect the weather can be improved and our compatriots who were affected by the floods can be rescued and properly relocated.

Heaven bless us.

May 31st 2017 Week 22nd Wednesday的更多相关文章

  1. January 25 2017 Week 4 Wednesday

    In every triumph, there's a lot of try. 每个胜利背后都有许多尝试. There's a lot of try behind every success, and ...

  2. May 30. 2018 Week 22nd Wednesday

    Never forget to say "Thanks." 永远不要忘记说谢谢. Don't take anything we get for granted, and never ...

  3. January 31st, 2018 Week 05th Wednesday

    Real love is not just instinct, but intent. 真正的爱不是身体上的一见钟情,而是要用心去经营. What is real love? Honestly, I ...

  4. November 15th, 2017 Week 46th Wednesday

    Of all the tribulations in this world, boredom is the one most hard to bear. 所有的苦难中,无聊是最难以忍受的. When ...

  5. November 08th, 2017 Week 45th Wednesday

    Keep your face to the sunshine and you cannot see the shadow. 始终面朝阳光,我们就不会看到黑暗. I love sunshine, but ...

  6. November 01st, 2017 Week 44th Wednesday

    People always want to lead an active life, and is not it? 人们总要乐观生活,不是吗? Be active, and walk towards ...

  7. October 31st, 2017 Week 44th Tuesday

    No matter how hard the past is, you can always begin again. 不管过去有多么困难,你都可以重新开始. Honestly, I don't ag ...

  8. October 25th, 2017 Week 43rd Wednesday

    Perseverance is not a long race; it is many short races one after another. 坚持不是一个长跑,她是很多一个接一个的短跑. To ...

  9. October 18th 2017 Week 42nd Wednesday

    Only someone who is well-prepared has the opportunity to improvise. 只有准备充分的人才能够尽兴表演. From the first ...

随机推荐

  1. [转] 完全卸载删除gitlab

    [From] https://yq.aliyun.com/articles/114619 完全卸载删除gitlab 1.停止gitlab gitlab-ctl stop 2.卸载gitlab(注意这里 ...

  2. C++ GUI Qt4编程(13)-6.2preferencedialog

    1. 主要介绍了QStackedLayout.QListWidget.QDialogButtonBox的简单用法.2. QStackedLayout:   要使某个特定的子窗口部件可见,可以用setC ...

  3. vi和vim的基本介绍

    所有的 Linux 系统都会内建 vi 文本编辑器.   Vim 具有程序编辑的能力,可以看做是Vi的增强版本,可以主动的以字体颜色辨别语法的正确性,方便程序设计.代码补完.编译及错误跳转等方便编程的 ...

  4. (转)Linux curl命令参数详解

    Linux curl命令参数详解 命令:curl在Linux中curl是一个利用URL规则在命令行下工作的文件传输工具,可以说是一款很强大的http命令行工具.它支持文件的上传和下载,是综合传输工具, ...

  5. vue之理解异步更新 --- nextTick

    默认情况下,vue中DOM的更新是异步执行的,理解这一点非常重要. 当侦测到数据变化时,Vue会打开一个队列,然后把在同一个事件循环(event loop)当中观察到的数据变化的watcher推送进入 ...

  6. 数据库~大叔通过脚本生成poco实体

    今天在做开发时,需要把表映射成实体,又没有EF这种工具,就从网上下了一个工具,但使用时觉得太重了,所以就自己写了一个,基于mysql的. 功能:输入表名,得到这个表的poco实体 SELECT COL ...

  7. STL:map用法总结

    一:介绍 map是STL的关联式容器,以key-value的形式存储,以红黑树(平衡二叉查找树)作为底层数据结构,对数据有自动排序的功能.命名空间为std,所属头文件<map> 二:常用操 ...

  8. TOJ 4008 The Leaf Eaters(容斥定理)

    Description As we all know caterpillars love to eat leaves. Usually, a caterpillar sits on leaf, eat ...

  9. TOJ 4002 Palindrome Generator

    描述 A palindrome is a number that reads the same whether you read it from left to right or from right ...

  10. topN问题

    topN问题:给出一个数组,找出前N个最大的元素. topN问题可以用分治法解决,这个问题与快速排序类似,快速排序是用一个数对数组进行划分,topN问题则不需完成排序,只需划分出前n个最大的数字即可. ...