Failure is the condiment that gives success its flavor.

失败是让成功变美味的调味料。

There are kinds of flavors in life, only we have experienced them, we will know the taste of the world, we will know what to be cherished and what to be avoided.

Without failure, we never know how joyful success will be.

Without failure, we never know how hard success will be.

In the past month, I have applied for some jobs, I hadn't get a reply from any of them, maybe I am not qualified, maybe the salary I asked is too higher.

Delightfully, some companies I didn't apply for asked me to have an interview and finally I got several offer.

Honestly speaking, my performance was not good enought, some famous companies even thought I was totally unqualified.

It is just these failures let me see where my pitfalls lie in.

Thanks all the same. I will continue to improve my skills.

May I get the recoginiton in all the interviews.

Self-confidence is the first requisite to great undertakings.

自信是成大事的首要条件。

From Samuel Johnson.

Self-confidence, self-discipline, self-examination, self-consciousness, that are four vital traits that can help us accomplish great undertakings.

For most of us, self-confidence may be the first and foremost character when we strive for somethings important.

Because there may be much more obstacles along our way, withour self-confidence, it may be difficult to get enough stimulation to get through those obstacles.

Sometimes, it may become a smooth way just after we overcome a seemingly unsurmountable obstacle, many people didn't make their dreams true just because they had given up just after a failing trying.

But how to build up self-confidence? It is not an easy job, for that most of the confidence come from the recognition of others, self-stimulation without other's approvals just has temporary effects, it can't provide a long-term stimulus and may have negative effects once the outcome is not satisfying.

It is hard to insist on making efforts to realize our dreams if we can't get paid or recognitions.

And some of us may betray ourselves just by the need to seek approvals from others.

So, divide the whole goal into small ones, step by step, once we realize all those small goals, we realize the big dream.

It will happen and it's gonna to happen.

June 07th 2017 Week 23rd Wednesday的更多相关文章

  1. June 6. 2018 Week 23rd Wednesday

    You are confined only by the walls you build yourself. 限制你的只有你自己筑起的墙. From Andrew Murphy. Let's repe ...

  2. June 28th 2017 Week 26th Wednesday

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

  3. June 21st 2017 Week 25th Wednesday

    Discontent is the first step in progress. 不知足是前进中的第一步. Several days ago, I wrote down a quote which ...

  4. June 14th 2017 Week 24th Wednesday

    Love looks not with the eyes, but with the mind. 爱,不在眼里,而在心中. Staring in her eyes and you will find ...

  5. June 10th 2017 Week 23rd Saturday

    A lot of things, we can be touched, but we can not shed tears. 很多事情,我们可以感动,却不能流泪. Sometimes I was to ...

  6. June 09th 2017 Week 23rd Friday

    The supreme happiness of life is the conviction that we are loved. 生活中最大的幸福就是,坚信有人爱着我们. One of my go ...

  7. June 08th 2017 Week 23rd Thursday

    Life is like a beautiful melody, only the lyrics are messed up. 生命是首美丽的曲子,虽然歌词有些纠结. Now that we get ...

  8. June 06th 2017 Week 23rd Tuesday

    At the touch of love, everyone becomes a poet. 一谈到爱,每个人都变成了一位诗人. Sweet words always have the power o ...

  9. June 05th 2017 Week 23rd Monday

    No great discovery was ever made without a bold guess. 没有大胆的猜测就没有伟大的发现. I've read this sentence just ...

随机推荐

  1. vm 中安装 CentOS7

    第三步:安装ISO文件 1.在vm下,文件,新建虚拟机 在我的机算机中,选中刚命名的CentOS7,右键,属性 2.开启虚拟机 PS: 打开虚拟机之后,提示了一个小错误,LZ根据错误提示,到BIOS里 ...

  2. EntityFramework 并发处理

    转载自:http://www.cnblogs.com/TianFang/p/4439215.html 什么是并发? 并发分悲观并发和乐观并发. 悲观并发:比如有两个用户A,B,同时登录系统修改一个文档 ...

  3. 4GLTE@NB-IOT

    参考:https://www.cnblogs.com/pangguoming/p/9755916.html NB-IOT特点:在4G基础上发展而来,覆盖广,海量接入,成本低低功耗:不适合应用情况:大数 ...

  4. IDEA 中tomcat启动问题时,一直出去发布状态,无法加载项目

    解决方法:排查clean.build之前添加的xml中的sql语句,发现sql多写了一个逗号,导致无法加载项目.修改完sql,就可以跑了.

  5. Oracle 基础系列之1.3 用户管理

    一.概述 1.当我们使用sysdba创建一个新用户时,该用户是没有任何权限的,甚至连登录数据库的权限都没有,代码如下: 这里使用sysdba创建了一个用户名为'zc'的新用户,接着输入代码进行登录 e ...

  6. lua输入函数名字符串执行函数

    str = "testA()"loadstring(str)() function testA() ------end 使用loadstring即可执行后面在xlua用了下发现不能 ...

  7. nyoj 10——skiing————————【记忆化搜索】

    skiing 时间限制:3000 ms  |  内存限制:65535 KB 难度:5   描述 Michael喜欢滑雪百这并不奇怪, 因为滑雪的确很刺激.可是为了获得速度,滑的区域必须向下倾斜,而且当 ...

  8. c#-IO和序列化操作

    IO 用到的命名空间:using System.IO; 文件和目录的管理! File类 FileInfo类 Directory类 DirectoryInfo类 操作文件的类! FileStream{ ...

  9. C#-01.语法基础

    a. 语法基础 i. 命名空间(namespace):是 C# 中组织代码的方式,用来声明命名空间 . 语法:namespace 命名空间名称{ //命名空间的声明 } . 作用:可以把紧密相关的一些 ...

  10. Django组件——分页器(paginator)

    一.视图层 from django.shortcuts import render # Create your views here. from .models import Book from dj ...