I learned the value of hard work by working hard.

只有真的努力了,才会知道努力的价值。

I remember in the movie, The Dark Knight Rises, there was one impressive line from the villain, that goes as following:

I learned here that there can be no true despair without hope.

This line was very, very impressive.

Actually, after years of frustrations and failures, after years of being behind to my peers, I feel that I can't change my situation to a upwards trends no matter what I have done.

And I grow into a pessimist, doubting that whether it is useful to work hard to make things better.

Maybe suffering can build character, maybe things would always get worse before they can get better.

I ever expected that I can be a big man who has power, wealth, and influence, however, as the time goes by, I find I even can't fulfill the basic responsiblities as a son, as a husband, as an employee.

Sometimes I thought it might be better to abandon myself and stop making any efforts.

But now that the God sent me to the world, then I must do something good to pay back.

Just do what is necessary, maybe the world hasn't closed all the doors for me.

Never explain, your friends do not need it and your enemies will not believe you anyway.

不用解释,你的朋友不需要,而你的敌人无论如何也不会相信。

From Elbert Hubbard.

If things went wrong or the results are not so good as we had expected, don't try to manufacture excuses for our misdeeds.

Sometimes we may successfully shrink from our responsibilities by seeking some excuses, but one day others will know the truth.

Facing bad results, all of us may have a choice: we can either make excuses or we can make progresses by figuring out where the problems lie in and correcting them.

The truth is that we can always do something to make up for our mistakes.

So, just begin with that. Even a little changes can make a big difference.

As for me, when I began to learn programming several years ago, I was good at solving problems linked with strings, but recently I found I lost the basic those basic skills.

People who originally had high expectation for me were totally disappointed.

I was quite low then, but I think I have some time, limited, to retrieve defeat.

May 27th 2017 Week 21st Saturday的更多相关文章

  1. October 21st 2017 Week 42nd Saturday

    Only I can change my life. No one can do it for me. 只有我可以改变我的命运,没有人可以帮我做. Stop complaining about the ...

  2. ROSCon 2017通知 Announcing ROSCon 2017: September 21st and 22nd in Vancouver

    ROSCon 2017通知:9月21日和22日在温哥华 我们很高兴地宣布,2017年ROSCon将在举行9月21-22日,2017年温哥华会议中心在加拿大温哥华.2017年IROS将在同一地点9月24 ...

  3. July 22nd 2017 Week 29th Saturday

    If you are not brave enough, no one will back you up. 如果你不够勇敢,没人会替你坚强. I was told that the real man ...

  4. January 21 2017 Week 3 Saturday

    Courage is grace under pressure. 勇气就是压力下的优雅. In the face of stress, can you deal with your task smoo ...

  5. May 13th 2017 Week 19th Saturday

    Mountains look beautiful from a distance. 远处看山山更美. This gnomic seems to circulate very long, its mor ...

  6. August 27th 2016 Week 35th Saturday

    Life is a series of commas, not periods. 人生是一系列的逗号,而不是句号. Sometimes I would rather life to be like a ...

  7. May 26. 2018 Week 21st Saturday

    Do what you say, say what you do. 做你说过的,说你能做的. Be honest to yourself, and be honest to those people ...

  8. January 27th, 2018 Week 04th Saturday

    How long is forever? Sometimes, just one second. 永远有多久?有时候只是一秒. Just one second can make your life t ...

  9. November 11th, 2017 Week 45th Saturday

    Happiness is a direction, not a place. 快乐是一个方向,不是一个目的. Do you remember those moments in your life wh ...

随机推荐

  1. apche 配置

    http://www.tootoogo.org/wordpress/?p=230 apache的配置由httpd.conf 文件配置. 1.基本配置 ServerRoot "/mnt/sof ...

  2. F查询和Q查询

    F查询 在上面所有的例子中,我们构造的过滤器都只是将字段值与某个我们自己设定的常量做比较.如果我们要对两个字段的值做比较,那该怎么做呢? Django 提供 F() 来做这样的比较.F() 的实例可以 ...

  3. MyBatis 源码解析SqlSession.getConnection(Connection异常:关闭或者不在Mybatis事务)

    从SqlSession的实现类SqlSessionTemplate源码中,看出相关方法被其内部类SqlSessionInterceptor(实现了InvocationHandler)代理 当调用Sql ...

  4. Flutter 导入 import 'package:english_words/english_words.dart'

    import 'package:flutter/material.dart';import 'package:english_words/english_words.dart'; // 导入的包 vo ...

  5. docker 创建容器时遇到的坑

    坑一.时区问题 在创建系统镜像时,比如centos,会默认最小安装,并且时区默认的是UTC 所以在下好centos的原始镜像后,最好再重新构建一个新的镜像 # 命令 docker pull cento ...

  6. zabbix 监控 tomcat

    一, 脚本监控文件 #!/bin/bash # @Function # Find out the highest cpu consumed threads of java, and print the ...

  7. 迪米特法则(Law of Demeter)LoD

    using System; using System.Collections.Generic; using System.Text; namespace LawOfDemeter { //也叫Leas ...

  8. 九度oj题目1348:数组中的逆序对

    题目1348:数组中的逆序对 时间限制:1 秒 内存限制:32 兆 特殊判题:否 提交:2572 解决:606 题目描述: 在数组中的两个数字,如果前面一个数字大于后面的数字,则这两个数字组成一个逆序 ...

  9. 自定义django admin及其界面

    1.在项目目录下新创建一个app,命名为kingadmin,在templates目录下新建kingadmin目录,用来存放相关页面的模板文件,新建一个templatetags目录,用来存放处理前端模板 ...

  10. Mysql自动更新字段时间

    Mysql中更新某天数据可设置该条数据中的某个字段自动更新 ALTER TABLE `表名` MODIFY `字段名` TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON U ...