December 21st, Week 51st Saturday, 2019
May the odds be ever in your favor.
愿好运永远眷顾你。
From The Hunger Games.
May we all have good luck, and we can be lucky if we buck for it in the right way.
But what is the right way? Maybe we can define luck in our ways, take advantages of every opportunity, be open to changes, embrace small wins, avoid behaviour loops, set right goals and work hard, etc.
As to my own, I used to think I am not the one who is favoured by luck, because I always failed even when I thought I had contributed a lot to win.
Really? Maybe that's just because I haven't contributed enough, I haven't contributed the right things for my team.
Huh, maybe the time is coming soon if I can work smarter and become more enthusiastic.
Always believe that achievements is founded on deligence and wasted upon recklessness, though sometimes doing a good enough job won't ensure lasting success and luck, please keep going above and beyond, follow through our work efforts, and we will get something valueable as rewards, at least, improvements in our skills and abilities.
It does not do to dwell on dreams and forget to live.
人不能活在梦里而忘记现实生活。
From Harry Potter and the Philosopher's Stone.
We all have dreams, we all hope to become stronger, smarter, healthier, wealthier and more capable.
Having dreams won't do any harm to our life, conversely, dreams can help us know what kind of people we want to be, what kind of life we want to live, and encourgae us to tackcle with challenges and difficulities in our life.
However, we can't dwell on our dreams, that is to say, we cannot only have dreams but forget to live in the current, or fail to strive for making our dream come true.
It would be much easier to sit around and dwell on dreams than to ever make them happen.
There's a pretty good chance that our wonderful dreams that we are dreaming will take hard work and dedication to make happen.
In order to achive and live them is entirely a different story than just imagining them.
That work begins when we set the goals and take the actions to achieve our dreams.
When we become serious about making our dreams become a reality, that's when the fun begins.
Don't just dwell on our dreams, please live them.
The results will be worthy every bit of hard work we put into making them happen.
Live the life we're dreaming of, it's entirely possible.
December 21st, Week 51st Saturday, 2019的更多相关文章
- December 14th, Week 50th Saturday, 2019
If you have got a talent, protect it. 如果你有天赋,要去保护她. From Jim Carrey. If you think you have a talent, ...
- December 07th, Week 49th Saturday, 2019
Snowflakes are pretty patterns etched in water's dreams. 雪花,是水在梦中镌刻的美丽图案. From Anthony T.Hincks. Tod ...
- December 28th, Week 52nd Saturday, 2019
If you start at the bottom, pay your dues, life here can be a dream come true. 只要你从头开始,脚踏实地,梦想是可以成真的 ...
- December 17th 2016 Week 51st Saturday
Great minds have purpose, others only have wishes. 杰出的人有着目标,其他人只拥有愿望. Are you clear about the differ ...
- December 21st 2016 Week 52nd Wednesday
Keep conscience clear, then never fear. 问心无愧,永不畏惧. I find it is very difficult for me to keep consci ...
- December 31st, Week 53rd Tuesday, 2019
Nothing comes from nothing. 天下没有免费的午餐. Nothing comes from nothing, and in some cases, even something ...
- Inhouse interview(websense)
1.Tell me about yourself? My name is xxx,i 'm from xxx. now , I am a postgratuation and my major sub ...
- May 26. 2018 Week 21st Saturday
Do what you say, say what you do. 做你说过的,说你能做的. Be honest to yourself, and be honest to those people ...
- October 21st 2017 Week 42nd Saturday
Only I can change my life. No one can do it for me. 只有我可以改变我的命运,没有人可以帮我做. Stop complaining about the ...
随机推荐
- bugku flag在index里
原题内容: http://120.24.86.145:8005/post/ Mark一下这道题,前前后后弄了两个多小时,翻了一下别的博主的wp感觉还是讲的太粗了,这里总结下自己的理解: 首先打开这道题 ...
- pytorch数学运算与统计属性入门(非常易懂)
pytorch数学运算与统计属性入门1.Broadcasting (维度)自动扩展,具有以下两个重要特征:(1)expand (2)without copying data重点的核心实现功能是:(1) ...
- Object 反射 List
public static object DeserializeModel<T>(object dataModel) { Type type = typeof(T); Object ent ...
- class实现React继承以及constructor的super的问题
看这篇文章之前 建议先看看阮一峰 的Class继承 便于更好的理解 首先要知道一个问题 React的父子组件和组件类的继承有什么关系?答案是:没有关系 父子组件:指的得是组件标签包含关系 父子组件通过 ...
- HahMap相关问题
概述 文章对HashMap的部分细节进行介绍,JDK1.7之前有可能出现环形表的问题,而1.7之后进行了改进,文章对环形表现象的出现进行了解析,然后对HashMap注意的几个问题进行了解答. Hash ...
- 【C语言】scanf()输入浮点型数据
#include<stdio.h> int main() { double x1, x2, x3, x4; printf("输入2个浮点数x1,x2:\n"); sca ...
- javaScript中的toFix(n)方法
定义和用法 toFixed() 方法可把 Number 四舍五入为指定小数位数的数字. 语法 NumberObject.toFixed(num) 返回值 返回 NumberObject 的字符串表示, ...
- [HTTP]HTTP/1.1 协议Expect: 100-continue
在追踪请求时发现了这么一个http头 基础知识背景:1)“Expect: 100-continue”的来龙去脉: HTTP/1.1 协议里设计 100 (Continue) HTTP 状态码的的目的是 ...
- js递归生成树形下拉菜单
需求:我需要把一个单表的数据转换成类似菜单那种如图所示:我呢需要把这个菜单树放入到下框里面去如图所示: 下面是实现思路:1.第一步1.1var afTypeJson=${afTypeJson}// 这 ...
- Codeforces Round #597 (Div. 2)D(最小生成树)
/*每个点自己建立一座发电站相当于向超级源点连一条长度为c[i]的边,连电线即为(k[i]+k[j])*两点间曼哈顿距离,跑最小生成树(prim适用于稠密图,kruscal适用于稀疏图)*/ #def ...