A man can't ride your back unless it is bent.

你的腰不弯,别人就不能骑在你的背上。

Have you ever ride a horse, or ride a bicycle?

When you were young, it may be somewhat difficult for you to get onto the horse or the bike.

You always had to ask for help from your parents.

Besides, you might find it also hard to drive the bicycle faster and stably, sometimes, even if you had driven carefully, it might be unavoidable that you would fall onto the ground and hurt yourself.

Day after day, year after year, you have grown into an adult, and you are strong enough to get onto the back of a horse or a bicycle all by your own. And you can have a faster and stable ride.

But you may dispute that there are still lot of adults who are incapable of riding a bicyle.

Yes, the ability to ride a horse or a bicylce can't roll in on the wheels of inevitablity, it comes through continuous exercises and struggles.

Now, you should know why some of your friends can ride bicylce well even in an early age.

The world stands aside to let anyone pass who knows where he is going.

如果一个人知道自己要去哪儿,全世界都会为他让路。

From David Starr Jordan.

Desire, goal and expectation are the key to motivation, but it is determination and commitment to an unrelenting pursuit of them that enable us to attain the success we seek.

That is, only possessing goals is not enough, it is just the first step to pursue something unique in our life.

When starting doing something, we must make sure we have some goals, otherwise we may fail to keep focused on our work and we may easily lose the patience and give up.

Focused, work hard, keep your eyes on your goal, keep taking the next step towards completing them.

If you are not sure about where you are going or which way to do something, do it both ways and see which works better.

What bad luck. I know my writings were lack of order and organization.

How can I make them organized and logic?

How can I restore order in the clutter of my life?

July 26th 2017 Week 30th Wednesday的更多相关文章

  1. July 29th 2017 Week 30th Saturday

    Where there is great love, there are always miracles. 哪里有真爱存在,哪里就有奇迹发生. Everyone expects there can b ...

  2. July 28th 2017 Week 30th Friday

    If equal affection cannot be, let the more loving be me. 如果没有相等的爱,那就让我爱多一点吧. There is seldom equal a ...

  3. July 27th 2017 Week 30th Thursday

    A smile is the most charming part of a person forever. 微笑永远是一个人身上最好看的东西. Smile in the mirror, and yo ...

  4. July 25th 2017 Week 30th Tuesday

    Everything is always more beautiful reflected in your eyes. 一切事物映在你的眼里都会变得更美. Looking in your eyes, ...

  5. July 24th 2017 Week 30th Monday

    The only limit to our realization of tomorrow will be our doubts of today. 实现明天理想的唯一障碍就是今天的疑虑. When ...

  6. July 23rd 2017 Week 30th Sunday

    Setting goals is the first step in turning the invisible into the visible. 设定目标是将实现梦想的第一步. If you wa ...

  7. July 19th 2017 Week 29th Wednesday

    Rather than envy others, it is better to speed up their own pace. 与其羡慕他人,不如加快自己的脚步. The envy of othe ...

  8. July 12th 2017 Week 28th Wednesday

    No way is impossible to courage. 勇敢面前没有通不过的路. Without faith and courage, nothing is possible. With t ...

  9. July 05th 2017 Week 27th Wednesday

    No man can make a good coat with bad cloth. 巧妇难为无米之炊. One can't make bricks without straw. There is ...

随机推荐

  1. 遇到Caused by: java.lang.NoClassDefFoundError: javax/validation/ParameterNameProvider

    今天在做spring和hibernate整合的时候遇到这个问题 网上搜找到这里有解决办法 http://blog.csdn.net/jueshengtianya/article/details/122 ...

  2. Java String StringBuilder StringBuffer

    String是字符串常量 StringBuilder和StringBuffer都是字符串变量 速度方面:StringBuilder > StringBuffer > String 每当用S ...

  3. mybatis 批量增加 Parameter '__frch_item_0' not found. Available parameters are [list]

    当在mybatis用到foreach的时候,会报这个错误Parameter '__frch_item_0' not found. Available parameters are [list]会出现的 ...

  4. Visual Studio 2013复制项目

    在当前解决方案下复制项目的步骤: 1. 在硬盘存放代码的目录下将整个文件拷贝一份,修改文件夹名字,改成新的项目名称, 然后修改 *.csproj文件,名字必须与新项目名一致. 2. 在解决方案上右键 ...

  5. 数据链路层差错检测之循环冗余检验CRC

    引用https://blog.csdn.net/wenqiang1208/article/details/71641414 为什么引入CRC 现实的通信链路都不会是理想的.这就是说,比特在传输的过程中 ...

  6. c++字符前面的L和_T

    字符串前面加L表示该字符串是Unicode字符串._T是一个宏,如果项目使用了Unicode字符集(定义了UNICODE宏),则自动在字符串前面加上L,否则字符串不变.因此,Visual C++里边定 ...

  7. canvas绘制经典星空连线效果

    来自:https://segmentfault.com/a/1190000009675230 下面开始coding:先写个canvas标签 <canvas height="620&qu ...

  8. Java - Latch和Barrier的区别

    之所以把Latch与Barrier放在一起比较是因为他们给人一种相似的感觉. 他们都是阻塞一些行为直至某个事件发生,但Latch是等待某个事件发生,而Barrier是等待线程. 先比较一下JCIP中对 ...

  9. 一个最简单的LRUCache实现 (JAVA)

    流程图: 1. 代码 import java.util.ArrayList; public class LRUCache { private int cacheMaxSize = 0; private ...

  10. Could not open php://output for writing.问题解决

    这是一个自己在项目中遇到的问题. 由于一直以来,公司都是用的Linux服务器,这次为客户做项目,换成了winserver. 项目中有一项功能是Excel导出,采用PHPEXCEL类库实现.由于是个小项 ...