June 29th 2017 Week 26th Thursday
Hope for the best, but prepare for the worst.
做最好的期望,做最坏的打算。
Always remember that quotes about being ourselves are all about being strong and being confident in whatever we are doing and never give up.
This is why self-development is so important, we are exactly what we have spent our time developing into.
We must consciously develop out the ablity of self-healing, just for we can quickly recover from the depressing mood when the results don't meet with our expectations.
It is inevitable to get some unexpected outcomes in our life, I know I have a purpose in this world and I live to fulfill this purpose.
Prepare the worst, even the result turns to be the worst, we shouldn't lose our confidence and give up.
But sometimes, we also can lower our expectations for the future, then we will experience fewer disappointing moments.
A problem is a chance for you to do your best.
问题也是机会,你得以把事情做到最好。
From Duke Ellington.
Let's first get to know something about this guy, Duke Ellington.
I had thought that the man may be a scientist, or an economist, or an entrepreneur, but after I searched the name on the wikipedia, I was somewhat surprised to find that he turned out to be an artist, or, to be more precise, a musician, composer, pianist, and a bondleader.
Born in America, he lived between 1899 and 1974, sadly, he had passed away about 40 years ago.
There are many other quotations telling the same meaning as this one, I would like to list several of them below:
Problems are not stop signs, they are guidelines.
Don't be afraid to make mistakes, it is always better to make some mistakes when doing somethings than never to challenge new things just due to fear of making mistakes and failing to fulfill our responsibilities.
Once you allow such negative thoughts overwhelme us, we will be reluctant to challenge some new possibilities.
Sometimes such feelings are very normal, and I think they are of human:
If we have just suffered a major disappointment, our energy will probably be low, we might be afraid to take another risk, and all of that may hold us back from achieving.
Remember, problems can serve as guidelines and hints for how to improve.
But I tried, didn't I? God damn it, at least I did that.
June 29th 2017 Week 26th Thursday的更多相关文章
- June 01st 2017 Week 22nd Thursday
Do what you say, say what you do. 做你说过的,说你能做的. Do what I have said, live up to my promise, answer th ...
- June 29th. 2018, Week 26th. Friday
Real love is always worth waiting for. 真爱永远值得等待. From Westworld. Real love is rare, but it does exis ...
- June 28th. 2018, Week 26th. Thursday
You cannot change the circumstances but you can change yourself. 既然改变不了环境,那就改变自己. From Jim Rohn. Rec ...
- June 30th 2017 Week 26th Friday
Love me little and love me long. 不求情意浓,但愿情意久. Some people say beautiful young people are the creatur ...
- June 28th 2017 Week 26th Wednesday
Anger begins with folly, and ends in repentance. 愤怒以愚蠢开始,以后悔告终. Learn to control your temper, don't ...
- June 27th 2017 Week 26th Tuesday
Happiness takes no account of time. 幸福不觉光阴过. At the beginning of this week, I planned to make some s ...
- June 25th 2017 Week 26th Sunday
There is always that one song that brings back old memories. 总有那么一首歌,让你想起那些旧的回忆. There are seveal so ...
- June 22nd 2017 Week 25th Thursday
Happiness is when the desolated soul meets love. 幸福是孤寂的灵魂遭遇爱的邂逅. When living alone for a long period ...
- June 15th 2017 Week 24th Thursday
Whatever is worth doing is worth doing well. 任何值得做的,就把它做好. Whatever is worth doing is worth doing we ...
随机推荐
- 基础selenium+Python(定位、等待、打印)
1.第一个脚本 # coding = utf-8 from selenium import webdriver browser = webdriver.Firefox() browser.get(&q ...
- Spark standalone简介与运行wordcount(master、slave1和slave2)
前期博客 Spark standalone模式的安装(spark-1.6.1-bin-hadoop2.6.tgz)(master.slave1和slave2) Spark运行模式概述 1. Stan ...
- Jedis连接redis
今天与大家分享下,Jedis连接池使用.先看一段JAVA 代码: JedisPoolConfig config = new JedisPoolConfig(); con ...
- 数据链路层差错检测之循环冗余检验CRC
引用https://blog.csdn.net/wenqiang1208/article/details/71641414 为什么引入CRC 现实的通信链路都不会是理想的.这就是说,比特在传输的过程中 ...
- 关于Map集合的遍历总结
Map集合的遍历经常遇到,今天在这里总结一下Map集合遍历的几种方式: public static void main(String[] args){ Map<String,String> ...
- C++要点总结
1.内联成员函数 1)隐式声明:将成员函数直接定义在类的内部 2)显式声明:inline标示 2)在类中,使用inline定义内联函数时,必须将类的声明和内联成员函数的定义都放在同一个文件中,否则编译 ...
- java向上转型的问题
import java.util.Arrays;import java.util.HashSet;import java.util.Set;class A{ private String s1 = & ...
- 常用软件下载开发环境七牛镜像Java、Node、Mongo
[jdk1.8] Linux:http://soft.yzeng.cc/jdk18/jdk-8u202-linux-x64.tar.gz Windows:http://soft.yzeng.cc/jd ...
- [android] post请求接口demo测试代码
MainActivity.java package com.tsh.test; import java.io.InputStream; import java.io.OutputStream; imp ...
- Java API 之 动态代理
一.代理模式 如图:由于某些原因我们希望对该实现类进行访问控制.功能增强等,那么加入一层代理层,用代理层来调用实现类是一个很好的方式来解决这个问题,我们可以在调用实现类功能前后进行校验或者加入一些功能 ...