A man can be destroyed but not defeated.

一个人可以被毁灭,但不能被打败。

Before he was destroyed, he would have been defeated many times.

Both confidence and success are always abtained through accumulation, step by step, little by little.

A series of failures, continuous frustrations, may accumulate to a critical point.

When that point is reached, there may be no choce left for us.

Ugly words, and ugly thoughts.

There will be one feasible solution to every problem.

Just like the power management system of my work-laptop, just adjusting one parameter in the bios can fix the problem, even it can't be called as a problem, the default parameter is just to facilitate some users, at least some would like to have the function in some cases.

Why it is powered on when I open the lid? Just set the option off and the problem is not a problem again.

We go where our vision is.

我们的视野有多远,就能走多远。

From Joseph Murphy.

I hadn't finished these two topics in four days, I started to write them down and try to make some simple comments on the day of September 24th, but till September 28th, I failed to get them done.

Maybe there is no cure for my procrsatination.

In fact, if I want, I can write some comments, two hundred or three hundred words, in just ten minutes.

For one thing, I just felt too tired these days after work, simply I wanted to lie in the bed and do nothing.

For the other thing, sometimes I have a pessimistic thoughts about my current work and my future.

Don't think about too much, don't spend too much time in thinking meaningless things.

Without concrete efforts and actions, nothing would be realized.

August 16th 2017 Week 33rd Wednesday的更多相关文章

  1. August 10th, 2016, Week 33rd, Wednesday

    The degree of loving is measured by the degree of giving. 爱的深浅是用给与的多少来衡量的. Some say that if you love ...

  2. August 30th 2017 Week 35th Wednesday

    A lion does not concern himself with the opinion of sheep. 狮子可不会在意绵羊是怎么想的. As a sheep, you must run ...

  3. August 23rd 2017 Week 34th Wednesday

    Do not pray for easy lives. Pray to be stronger men. 不要祈祷舒适的生活,而是祈祷自己能变得更强大. It seems this quotation ...

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

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

  8. August 14th 2017 Week 33rd Monday

    Life is like a watch, you can return to the starting point, they are not yesterday! 人生就像钟表,可以回到起点,却已 ...

  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. php的session存放数组

    本文实例讲述了php使用session二维数组的用法 最普通的用法:一个变量名: $_SESSION['user'] = 0;echo $_SESSION['user']; 使用数组:代码如下: $_ ...

  2. js处理json数据,java处理json数据

    一.js处理json数据 处理办法之一是把本机json数据或远程返回json数据用eval函数,使之变成DOM对象. 例如: var people = { "programmers" ...

  3. 发布.net 4.0的站点到IIS7.5下时无法访问

    现象: 初始发布.net 4.0站点到IIS7.5下时,各种配置都完毕的情况下依旧无法访问.首页显示站点目录结构(注:开启目录结构访问后会显示这个错误,否则会提示开启),访问次级目录提示:Handle ...

  4. Sublime Text3 快捷键总结

    Sublime Text3 快捷键总结 多行快速选择文本 Ctrl+D:选中光标所占的文本,继续操作则会选中下一个相同的文本.(非常实用)Ctrl-K, Ctrl-D:把当前选中所占文本的光标,跳转到 ...

  5. 深入理解 flex 布局以及计算_Flexbox, Layout

    起因 对于Flex布局,阅读了 大漠老师和其他老师写的文章后,我还是不太理解Flexbox是如何弹性的计算子级项目的大小以及一些其他细节.在大漠老师的帮助下,我去查阅Flexbox 的 W3C 规范文 ...

  6. 八、window搭建spark + IDEA开发环境

    本文将简单搭建一个spark的开发环境,如下: 1)操作系统:window os 2)IDEA开发工具以及scala插件(IDEA和插件版本要对应): 2-1)IDEA2018.2.1:https:/ ...

  7. linux的目录结构及文件基本操作

    1. linux的文件组织目录结构 linux的目录与window的区别 win以存储介质为主,主要以盘符及分区实现文件 管理,再下面才是目录. linux以树形目录结构的形式来构造整个系统,每一个目 ...

  8. Web前端图形滑块检验组件实现

    组件渲染图形: 初始化:                                                                                        ...

  9. HDU 1874(简单最短路) (大优化)

    优先队列那里用greater会报错 http://acm.hdu.edu.cn/showproblem.php?pid=1874 /* 使用pair代替结构 */ #include <iostr ...

  10. async await的使用

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