There is always that one song that brings back old memories.

总有那么一首歌,让你想起那些旧的回忆。

There are seveal songs that I love very much.

When I hear them, their melodies and lyrics often bring me back to my old days, the lost youth, the incredible pain and sufferings of the past, the seemingly endless failures...

It is said that when a man can't have the time, the only thing he can do is not to forget.

I won't forget the dreams of the happy journeies, the mountains and the fields I have seen, I won't forget those dreams that I will never achieve.

Actually now I know there may be no more hope in my life, I still expect there will be some good things in the comming days, I just wait, wait a little movement, wait a little voice.

Maybe I should utterly discard those negative memories, however, without some sort of spiritual energy or peace or karma, it's very difficult to close those memories and move on without feelings of bitterness and resentment.

Maybe I should be more confident and optimistic, because no one likes a jaded, world-weary person.

If a thing isn't worth saying, you sing it.

如果一件事不值得说出来,你就把它唱出来吧。

From Pierre Beaumarchais.

Today, I have reviewed several confusing concepts about array and pointer, both of them are very common and important built-in datatype of C/C++.

One is array pointer, the other is pointer of array.

Actually I think it is understandable for a greenhad who just starts to learn progrmming for a few days to feel confused about these concepts, but for one who have programmed for many years, it is inexcusable to make mistakes on them.

Just like my last interview in Tencent, the interviewee pointed at the mistakes on my paper and said in a disdainful tone:

I don't believe that a man, who pretends to have several years of experience on programming, would make mistakes on so easy questions.

At that moment, I felt unlimited humiliations.

That is not what I want to be, I can't make others feel disappointed any longer, I must strengthen those basic skills, and I expect I can deliver some satisfying outcomes to those who still have expectation on me.

There are too many feelings I can't write down, sometimes maybe it is a good way to sing out them in my own heart.

June 25th 2017 Week 26th Sunday的更多相关文章

  1. June. 25th 2018, Week 26th. Monday

    Change in all things is sweet. 有改变就会有美好. From Aristole. Change is always good, but embracing change ...

  2. June. 24th 2018, Week 26th. Sunday

    Beautiful things don't ask for attention. 真正美丽的东西,并不会刻意寻求别人的注目. From The Secret Life of Walter Mitty ...

  3. June 30th 2017 Week 26th Friday

    Love me little and love me long. 不求情意浓,但愿情意久. Some people say beautiful young people are the creatur ...

  4. June 29th 2017 Week 26th Thursday

    Hope for the best, but prepare for the worst. 做最好的期望,做最坏的打算. Always remember that quotes about being ...

  5. June 28th 2017 Week 26th Wednesday

    Anger begins with folly, and ends in repentance. 愤怒以愚蠢开始,以后悔告终. Learn to control your temper, don't ...

  6. June 27th 2017 Week 26th Tuesday

    Happiness takes no account of time. 幸福不觉光阴过. At the beginning of this week, I planned to make some s ...

  7. June 11th 2017 Week 24th Sunday

    I hope I can find the one who is afraid of losing me. 我希望找到一个担心失去我的人. When I was young, sometimes I ...

  8. June 04th 2017 Week 23rd Sunday

    It is not the mountain we conquer but outselves. 我们要征服的不是高山,而是我们自己. After days of hard working, I sl ...

  9. June 30th, 2019. Week 26th, Sunday

    It's so easy to be careless, it takes courage and courage to care. 不在乎很容易,但在乎却需要很多勇气. Sometimes it w ...

随机推荐

  1. ruby中的retry和redo

    # retry用于处理异常中的begin/end代码块中,如果发生异常会重新运行 begin 和 rescue 之间的代码#当retry 被调用的话,begin 和 rescue 之间所有的代码都会被 ...

  2. 关于重绘and重排

    在研究CSS3动画性能的时候,看到了重排两个字. 突然想到自己虽然听说过这么个东东,但一直也没深入研究之. 趁着当下正好有研究的劲头,所以一不做二不休,把这个point也给学习了. 同样是一番查找资料 ...

  3. oracle系统包——dbms_alert用法

    oracle内部提供的在数据库内部和应用程序间通信的方式有以下几种:1.警报,就是DBMS_ALERT包提供的功能:2.管道,由DBMS_PIPE提供:3.高级队列,这个就很复杂,当然提供的功能也是很 ...

  4. springboot入门记

    在idea中直接新建: 选择web: 在idea中启动“项目名称”Application中的main即可: 或者在项目目录下运行:mvn spring-boot:run: 或者: mvn instal ...

  5. Fatal error: Call-time pass-by-reference has been removed in *****.php on line 18

    问题描述:最近刚刚将php升级到5.4.13,但是打开一个页面的时候出现报错:Fatal error: Call-time pass-by-reference has been removed in ...

  6. 关于webApi使用session

    1.关于webApi使用session 在Global.asax中注册session添加以下代码 public override void Init() { //开启session this.Post ...

  7. C++运行符重载、友元函数

    Complex.h #pragma once #include <iostream> using namespace std; //表示一个复数 class Complex { priva ...

  8. Java - 如何进行安全发布

    首先让我简单解释一下所谓"发布". 发布(publish),使对象可以在当前作用域之外的代码中可见,如果该对象被发布,则该对象的非私有域中引用的所有实例同样也会被发布. 不仅仅是作 ...

  9. WPF MVVM 之理解(数据绑定)

    (申明:最近在做一个练习,写点东西,谨供参考.) 1.界面展示:其中的布局和样式就不说了,重点在MVVM架构和数据绑定(Model层使用EF(Entity Framework)实体框架,不做介绍). ...

  10. 多文件上传CommonsMultipartResolver

    1.CommonsMultipartResolver是spring里面提供的一个上传方式,效率我不知道,但是加入spring容器管理还是很不错的. 2.先看依赖包pom.xml <project ...