Men are nearly always willing to believe what they wish.

人总爱想入非非,把愿望变成现实。

It is just the humancondition.

We are always willing to believe what we want to believe, if it doesn't meet with our expectations, even it is the truth, we are inclined to think it might be wrong in some way.

Being neutral or objective, actually very difficult.

But that is not bad.

Just because we have such features, we have the chance to find out who are our comrades and who are our enemies, and the chance to make the things that we favor with become better.

Life is a foreign language; all men mispronounce it.

生活就像一门外语,所有人都说不好它。

From Christopher Morley.

Several days ago, I learned a saying as following:

We read the world wrong and say it deceives us.

Maybe most of us have never understand the real meaning of life:

Why we came to the world?

What can we do to add some useful things to the world we live in?

Once it comes to these questions, we may be baffled and can't make them clear.

No doubt it would be better to figure out these philosophical problems, but we still have to live our lives without clear answers.

No matter what the way we pronounce life and we read the world, the most appropriate thing we should do may be to contribute ourselves to the things we deem as right.

Sometimes, it works not bad to be a paranoia.

No matter what our convictions are, just infuse our life with action.

Don't wait for it to happen. Make it happen.

Make our own future. Make our own hope. Make our own life.

And whatever our beliefs, honor our creator, not by passively waiting for grace to come down from upon high, but by doing what we can to make grace happen... ourselves, right now, right down here on Earth.

May 17th 2017 Week 20th Wednesday的更多相关文章

  1. September 20th 2017 Week 38th Wednesday

    All our dreams can come true if we have the courage to pursue them. 如果我们有勇气去追求梦想,我们的梦想一定可以成为现实. If y ...

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

  3. May 14th 2017 Week 20th Sunday

    A smooth sea never made a skillful mariner. 平静的海洋练不出熟练的水手. A smooth sea never made a skillful marine ...

  4. August 17th 2016 Week 34th Wednesday

    Life is painting a picture, not doing a sum. 生活就像是绘画,而不是做算术. I am too serious about digits. All what ...

  5. January 17th, 2018 Week 03rd Wednesday

    Don't let go too soon, but don't hold on too long. 不要太快放手,也别紧握太久. It is inevitalbe to encounter with ...

  6. November 17th, 2017 Week 46th Friday

    If you shut the door to all errors, truth will be shut out. 你如果拒绝面对错误,真相也会被挡在门外. Sometimes being a f ...

  7. November 15th, 2017 Week 46th Wednesday

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

  8. November 08th, 2017 Week 45th Wednesday

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

  9. November 01st, 2017 Week 44th Wednesday

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

随机推荐

  1. HDU1286

    欧拉函数测试题 期末考试完了做下水题 更好的方法是phi[i]==i时就直接筛选,不改了 #include<bits/stdc++.h> using namespace std; cons ...

  2. 设置input placeholder的样式

    ::-webkit-input-placeholder {/*Chrome/Safari*/ font-family: 'Avenir', Helvetica, Arial, sans-serif; ...

  3. jQuery序列化表单 serialize() serializeArray()

    1.serialize()方法 描述:序列化表单内容为字符串,用于Ajax请求. 格式:var data = $(form).serialize(); 2.serializeArray()方法 描述: ...

  4. UVa 253

    UVa 253 #include <iostream> #include <cstdio> #include <string> #include <cstri ...

  5. 如何在新导入的python项目中一次性生成依赖的第三方库

    requirements.txt用来记录项目所有的依赖包和版本号,只需要一个简单的pip命令就能完成. pip freeze >requirements.txt 然后就可以用 pip insta ...

  6. ISO端form表单获取焦点时网页自动放大问题

    iOS端网页form表单输入信息时,网页自动放大,这是因为meta标签 刚开始的时候meta标签是 <meta name="viewport" content="w ...

  7. vm12下Centos6安装mysql5.7

    一.下载mysql的rpm tar文件 文件名称:mysql-5.7.18-1.el6.x86_64.rpm-bundle.tar官方地址:https://dev.mysql.com/get/Down ...

  8. unity监听键盘按键

    放在Update里面 if (Input.anyKeyDown) { foreach (KeyCode keyCode in Enum.GetValues(typeof(KeyCode))) { if ...

  9. hihoCoder题目之Magic Box

    #include <iostream> #include <cmath> #include <cstdio> using namespace std; void s ...

  10. JS常用的设计模式(6)——桥接模式

    桥接模式的作用在于将实现部分和抽象部分分离开来, 以便两者可以独立的变化.在实现api的时候, 桥接模式特别有用.比如最开始的singleton的例子. var singleton = functio ...