Life is like a watch, you can return to the starting point, they are not yesterday!

人生就像钟表,可以回到起点,却已不是昨天!

Weeks ago, I listened a song named "Yesterday" from the Netease-Cloud Music.

At the beginning, it is the song's melody that attracted me, but then I found its lyrics were more attractive and just fitted my mood very well.

The song goes as following, and I would like to present several lines of them:

I just don't love you, don't love you no more.

You, you are so yesterday.

I won't let you rain on my parade, I don't wanna hear a thing you say.

So, yesterday. Funny now how I have gone, I will light in your head came on.

Now you have realized this is all your fault.

Don't you wish you had a time machine, that way you could change history.

So, yesterday, so, yesterday.

It is absolutely impossible to have a time machine and go back to yesterday to correct the mistakes of the past.

Maybe the easiest way is to forget them and seize the present day tightly and press onto the great dreams and achievements of the future.

Memory feeds imagination.

回忆是想象力的源泉。

From Amy Tan.

Tan, a surname with strong Chinese characteristic, so I guess Amy Tan must be an ethnic Chinese.

Quite right, Amy Tan is a Chinese American, more accurately, she is an American writer.

The most well-known one of her works may be the Joy Luck Club, a novel about the mother-daughter relationship and the Chinese-American experience, and the novel also was adpated into a film directed by Wayne Wang.

Though she has won several awards for her works, she also has received substantial criticisms for the contents and spirits in her books.

For example, some readers criticised her for the complicity in perpetuating racial stereotypes and misrepresentations as well as gross inaccuracies in recalling details of the Chinese cultural heritage.

Because most of her works told the stories with negative depiction of Chinese culture, many people think her of pandering to Western presumptions and prejudices about Chinese people.

It is easy to understand why her works often presented negative stories about Chinese culture, if taking consideration of the environments she was raised and she currently lives in.

To many second generation of Chinese-Americans, they grew up in a multi-cultural envrionments, and always encountered problems stemming from huge cultural differences and conflicts of value views between the mainstream of society and their families.

But almost all the differences can provide some benefits to their life experience and their growth as long as being settled properly.

August 14th 2017 Week 33rd Monday的更多相关文章

  1. August 8th 2016, Week 33rd Monday

    Everything is going on, but don't give up trying. 万事随缘,但不要放弃努力. Every time when I want to give up, y ...

  2. August 28th 2017 Week 35th Monday

    The truth may hurt for a little while but a lie hurts forever. 真相会让我们痛一阵,但谎言会让我们痛一生. Once you make a ...

  3. August 21st 2017 Week 34th Monday

    In fact, the happiest fairy tale is no more than the simple days we have together. 其实全世界最幸福的童话,也比不上我 ...

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

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

  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. 理解Python语言里的异常(Exception)

    Exception is as a sort of structured "super go to".异常是一种结构化的"超级goto". 作为一个数十年如一日 ...

  2. IDEA的学习总结

    IntelliJ IDEA是一款非常优秀的JAVA编辑器,初学都可会对其中的一些做法感到很别扭,刚开始用的时候我也感到很不习惯,在参考了网上一些文章后在这里把我的一些经验写出来,希望初学者能快速适应它 ...

  3. sublime text3 破解及常用插件

    sublime text3 下载 破解 submelime Text > About sublime Text //看是否注册并 查看当前的版本 然后百度或google搜索 'sublime t ...

  4. [转]Format a ui-grid grid column as currency

    本文转自:https://stackoverflow.com/questions/27747184/format-a-ui-grid-grid-column-as-currency-rc-3-0 Yo ...

  5. jquery里判断数组内是否包含了指定的值或元素的方法

    本文讲的是在jquery里,如何判断一个数组里是否包含了指定的值,变量,或其它对象元素的方法. 在jquery里,我们可以用$.inArray来判断一个数组里是否包含了指定的值或其它对象元素,来看一个 ...

  6. JavaScript三大对象详细解说

    Js三大对象 一 浏览器对象 浏览器窗口.文档document.URL地址等 常用的浏览器对象: 浏览器对象的分层结构 Window对象 (1) 属性 名称 说明 document 表示给定浏览器窗口 ...

  7. javascript window.opener的用法分析

    window.opener 返回的是创建当前窗口的那个窗口的引用 window.opener 的用法 window.opener 返回的是创建当前窗口的那个窗口的引用,比如点击了a.htm上的一个链接 ...

  8. 三:SpringCloud-Ribbon

    六:Ribbon负载均衡 1. 概述 1.1 是什么 Spring Cloud Ribbon是基于Netflix Ribbon实现的一套==客户端 负载均衡==的工具. 简单的说,Ribbon是Net ...

  9. CentOS-Linux系统下安装JDK

    一般情况下,Linux系统都有自带的JDK,但不符合开发要求,所以需要卸载,重新安装JDK 步骤1:查看现有安装的JDK版本 命令: rpm -qa | grep -i java 步骤2:卸载已有软件 ...

  10. async await的使用

    var sleep = function (time) { return new Promise(function (resolve, reject) { setTimeout(function () ...