August 09th 2017 Week 32nd Wednesday
Find hope from despair, life will become brilliant.
从绝望中寻找希望,人生终将辉煌。
Have you ever seen the movie Batman: The Dark Knight Rises?
There are many classic actor's lines full of philosophy in the movie.
And the most impressive one, in my opinion, goes as following:
I learned that there can be no true despair without hope.
Maybe I was touched by this line just because I have experienced the same thing before.
But the movie also told me that sufferings can build character.
If we can't surrender to the despairs and keep on fighting, the only effect of those frustrations is to make us strong as long as we aren't totally destroyed.
Hope is always better than despair, don't give up easily, perhaps our life will become brilliant if we can take some more steps forward.
I hope I can become strong, I expect I can see the days belonging to me. I beg you give me some blessings.
Variety is the soul of pleasure.
丰富多样是快乐的精髓。
From Aphra Behn.
Honestly speaking, I am really tired of writing down such quotes and making some breif comments about them.
I think my comments are ugly, lack of organization, sometimes I even failed to make clear the real meaning behind the quotes.
Is there any value in such routine works? I don't know, I just wrote them down and commented about them because I thought I had to do.
Maybe I have been lost my soul in these day-to-day routine works.
It seems I am just going along in this world from day to day, never giving my own thoughts about it.
Both in life and work, I just repeat such simple and low-grade tasks brainlessly, now that they don't require any special skills and I havn't consciously summarized the essential parts of them, it isn't surprising that I haven't gotten any improvement in my skills and any promotion in my career even though I have been working as a coder for several years.
When I was a greenhand, I was told that there was no need to spend our valuable time in reinventing the wheels.
But obviously I failed to defer to this wise advice.
Remember, when coding for practical projects, if we can consciously refine some frequently-used functions and encapsulate them, automate mundane and repetitive work as much as possible, then we can minimize the amount of manual programming involved in our work and concentrate on developing those new funcitons.
That can be called creative work, and in such ways we will become irreplaceable.
August 09th 2017 Week 32nd Wednesday的更多相关文章
- August 3rd, 2016, Week 32nd, Wednesday
I am looking for someone to share in an adventure. 我在找能和我一起分享冒险之旅的人. We are all looking for someone ...
- August 30th 2017 Week 35th Wednesday
A lion does not concern himself with the opinion of sheep. 狮子可不会在意绵羊是怎么想的. As a sheep, you must run ...
- August 23rd 2017 Week 34th Wednesday
Do not pray for easy lives. Pray to be stronger men. 不要祈祷舒适的生活,而是祈祷自己能变得更强大. It seems this quotation ...
- August 16th 2017 Week 33rd Wednesday
A man can be destroyed but not defeated. 一个人可以被毁灭,但不能被打败. Before he was destroyed, he would have bee ...
- August 12th 2017 Week 32nd Saturday
That which does not kill us makes us stronger. 但凡不能杀死你的,最终都会使你更强大. Seemingly I have heard this from ...
- August 11th 2017 Week 32nd Friday
I can't give you the world, but I can give you my world. 我不能给你全世界,但是我的世界我可以全部给你. Maybe I can't give ...
- August 10th 2017 Week 32nd Thursday
Break through the psychological barrier to surpass themselves. 突破心理障碍,才能超越自己. To break through those ...
- August 08th 2017 Week 32nd Tuesday
The very essence of romance is uncertainty. 浪漫的精髓就在于它充满种种可能. Romance is the glamour that can turn th ...
- August 07th 2017 Week 32nd Monday
Life is just a series of trying to make up your mind. 生活只是由一系列下决心的努力所构成. Some people say it is not y ...
随机推荐
- JavaScript自增、自减
JavaScript自增.自减运算符与表达式语法 var i++; var-- 声明变量 i-- 变量名 ++ -- 自增运算符 JavaScript自增.自减运算符与表达式 JavaScript自增 ...
- Ruby(2): 基本语法上
表达式和变量: 这两点和其他主流的编程语言基本没有差别,这里直接跳过. 需要注意的是 ruby中 x=x+1 可以写成 x+=1 但是不支持 x++ , x-- 等一元运算符 比较运算符和表达式: ...
- shell脚本生成服务器密码
#!/bin/bash len=90 str=(a b c d e f g h i j k l m n o p q r s t u vw x y z A B C D E F G H I J K L M ...
- Knockout.js hasFocus
<head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8&quo ...
- SQL空和NULL的区别
1.NULL意思为缺失的值(missing value). 2.三值逻辑(three-valued-logic: TRUE,FALSE,UNKNOWN). 在SQL中有三个逻辑谓词:TURE,FALS ...
- 三分钟理解Java中字符串(String)的存储和赋值原理
可能很多Java的初学者对String的存储和赋值有迷惑,以下是一个很简单的测试用例,你只需要花几分钟时间便可理解. 1.在看例子之前,确保你理解以下几个术语: 栈:由JVM分配区域,用于保存线程执行 ...
- 讨论!MyBatis中利用package自动扫描包中的类,默认别名不只是首字母小写!
问题描述:这个问题我是在看书的时候碰到的.书上写着通过package标签扫描包中的类,将其第一个字母变为小写作为其别名.我在网上查了一些博主也是这么写的 但是!我发现,无论大小写,只要是类名就好,而且 ...
- groovy和java的主要区别
1.Default imports,默认情况下,导入下面的包: java.io. * java.lang.* java.math.BigDecimal中 java.math.BigInteger中 j ...
- error: unpack failed: error Missing tree
最近新建一个仓库,push时遇到如下问题,试了好多方法,最后在stackoverflow上找到解决办法了,可是在开始时就试过这方法,但不成.至于为嘛出现的这种错误,还是不明白原因. git.exe p ...
- DOM3 textInput事件
DOM3中引入了文本事件,其中之一 textInput . 当用户再可编辑区域输入字符时触发该事件. 与keypress不同的是,该事件只会在用户输入可视字符时触发,而keypres事件则只要按下键即 ...