August 08th 2017 Week 32nd Tuesday
The very essence of romance is uncertainty.
浪漫的精髓就在于它充满种种可能。
Romance is the glamour that can turn the dust of everyday life into a golden haze.
Romance is the wonderful sauce that can add incomparable flavours to the tasteless daily life and make it delicious.
But how to bring romance and be romantic is quite a big kind of knowledge, like mathematics and physics, that need us to learn and to practice.
Though it is said the essence of romance is uncertainty, sometimes, even your lover can guess what you will do, he or she still feels happy for your good will.
About 30 days ago, I got the date and the weekday wrong, till today, I just make it right.
Once you make a mistake, if you haven't realized it and taken measures to correct it, you may probably continue the error again and agin.
Looking my own face in the mirror, it seems I am getting older and older, but my abilities, seem to get weaker and weaker.
What should I do? Is there any possibility of making my dreams true in my life?
What may be done at any time will be done at no time.
常将今日推明日,推到后来无影踪。
From Scottish Proverb.
When we invest our time in something, we set a goal for our life and make a decision of some achievements we want to accomplish.
Whether it is getting good grades at school, being a good athelete, being a skilled programmer, being an indispensable specialist, or just being a qualified employer, we must take concrete actions and make effective efforts to make sure that we can reach the goal and we can attain the achievements, then the time and energy we spend will be meaningful and valueable.
Otherwise the results may be no better than doing nothing.
Actually, almost every people has some kind of goal or expecation, short-term or long-term, small or big, but some of us failed to reach our goals.
And the very reason may be lack of actions and efforts.
Get rid of your procrsatination, that may be become the biggest barrier for you in your life-road.
August 08th 2017 Week 32nd Tuesday的更多相关文章
- August 29th 2017 Week 35th Tuesday
Life is a pure flame, and we live by an invisible sun within us. 生命如纯洁的火焰,而维系这火焰的是我们内心的太阳. Burn my l ...
- August 22nd 2017 Week 34th Tuesday
Stop trying to find a rewind. It's life, not a movie. 别妄想倒带,这是生活,不是电影. There is no need to go back t ...
- August 15th 2017 Week 33rd Tuesday
Would rather have done a regret, do not miss the regret. 宁愿做过了后悔,也不要错过了后悔. Yesterday, I read several ...
- 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 09th 2017 Week 32nd Wednesday
Find hope from despair, life will become brilliant. 从绝望中寻找希望,人生终将辉煌. Have you ever seen the movie Ba ...
- 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 ...
- August 06th 2017 Week 32nd Sunday
No words are necessary between two loving hearts. 两颗相爱的心之间不需要言语. No, I don't think so. Words may be ...
随机推荐
- springboot-22-自定义starter
先说下springboot的运行原理 springboot最主要的配置 是 @SpringBootApplication 然后这里面 @EnableAutoCOnfiguration 最为重要, 继续 ...
- python实例:快速找出多个字典中的公共键
1.生成随机字典 # 从abcdefg 中随机取出 3-6个,作为key, 1-4 的随机数作为 value s1 = {x : randint(1, 4) for x in sample('abcd ...
- 使用webpack loader加载器
了解webpack请移步webpack初识! 什么是loader loaders 用于转换应用程序的资源文件,他们是运行在nodejs下的函数 使用参数来获取一个资源的来源并且返回一个新的来源(资源的 ...
- Springboot @ResponseBody返回中文乱码
最近我在把Spring 项目改造Springboot,遇到一个问题@ResponseBody返回中文乱码,因为response返回的content-type一直是application/json;ch ...
- UVA1584(环状序列)
对于序列的最小值,可以定义一个比较的方法,然后用一般找最小值的方法遍历一遍即可 #include <iostream> #include <string> #include & ...
- delphi之读写文件的三种方式
一.Tstrings.Tstringlist procedure TForm1.Button2Click(Sender: TObject); var strlist: TStringList; pat ...
- python安装后无法用cmd命令pip 装包
出现问题: 原因:没有添加环境变量. 解决方法:将python安装目录下的Script目录添加进环境变量,其中有pip.exe,在cmd中输入pip install命令时要运行pip.exe. win ...
- JS深拷贝继承
所谓深拷贝,就是子对象不紧继承父对象的非引用属性,还能继承父对象的引用属性(Object,Array),当子对象对继承的引用类型属性做修改时,父对象的引用类型不会被修改. 我们先写个浅拷贝的封装函数: ...
- 洛谷P4716 【模板】最小树形图(朱刘算法)
题意 题目链接 Sol 朱刘算法?感觉又是一种神仙贪心算法 大概就是每次贪心的用每个点边权最小的入边更新答案,如果不行的话就缩起来找其他的边 不详细说了,丢链接走人.. #include<bit ...
- BZOJ4516: [Sdoi2016]生成魔咒(后缀数组 set RMQ)
题意 题目链接 Sol 毒瘤SDOI 终于有一道我会做的题啦qwq 首先,本质不同的子串的个数 $ = \frac{n(n + 1)}{2} - \sum height[i]$ 把原串翻转过来,每次就 ...