Make hay while the sun shines.

勿失良机。

Last night the toothache woke me up and it was very difficult for me to get asleep again.

I felt very depressed then, living a poor life, having no money to buy a house or just rent a big one for my lover who has been pregnant, even a healthy body is too much to hope for.

I work hard, I always keep doing exercises to maintian healthy, I believe I can succeed through my consistent efforts, but the reality always got worse.

Why am I always the failed one even when I tried my best to pursue some dreams?

For many things assigned to me, I never said it was impossible and I always tried to finish them before the deadline, but what did I get from my hard work? Nothing, nothing.

Maybe I should figure our what I am really good at, and then just concentrate on them.

It is said that everybody is a genius, buf if we judge a fish by its ability to climb a tree, it will live its whole life believing that it is stupid and inferior to others.

However, what am I good at? There is no obvious answer.

Maybe life is set up for me to have failures and setbacks. I should accept the truth and stop my pointless struggle for a better future.

Let it be, someone will fail all the times, then let me be the one.

A lantern can give you light only when you light it.

灯笼若要闪亮,需要你去点亮。

From Munia Khan.

It would be better if there could be someone who can shed some light on my road forward.

But most often, people would be more willing to help those who are able to and willing to help themselves first.

So it is fatally important to show we are worthy of people's help.

Down in the dumps. Got the blues. Under the weather. Not yourself.

These are all phrases we use to describe those times when we just aren’t feeling up to par.

Whatever has you feeling less than optimal, the sure plan of action to get back in the game and feeling great, right?

Sometimes, it’s just a phase. That means, over time we’ll start to see an uptick in the way we feel.

We aren’t at our best right now, but we are working towards that and we will get there soon.

Other times the issue is deeper than that.

We might need to talk through things or consider options that will help us to better get to a place where we feel like ourselves, should we?

Don't worry about the future too much, the only way to ensure a better future is doing our businesses as well as we can.

March 02nd, 2018 Week 9th Friday的更多相关文章

  1. March 03rd, 2018 Week 9th Saturday

    No cross, no crown. 不经历风雨,怎能见彩虹. Sometimes you can see a beautiful rainbow high in the sky without h ...

  2. March 01st, 2018 Week 9th Thursday

    Let bygones be bygones. 过去的就让它过去吧. What happened has happened, it cannot be undone, so just leave it ...

  3. 【启发式搜索】Codechef March Cook-Off 2018. Maximum Tree Path

    有点像计蒜之道里的 京东的物流路径 题目描述 给定一棵 N 个节点的树,每个节点有一个正整数权值.记节点 i 的权值为 Ai.考虑节点 u 和 v 之间的一条简单路径,记 dist(u, v) 为其长 ...

  4. Codechef March Cook-Off 2018. Maximum Tree Path

    目录 题意 解析 AC_code @(Codechef March Cook-Off 2018. Maximum Tree Path) 题意 给你一颗\(n(1e5)\)个点有边权有点权的树,\(Mi ...

  5. July 02nd. 2018, Week 27th. Monday

    Bad times make a good man. 艰难困苦出能人. Bad times make a good man, and hard times create strong men, but ...

  6. March 11th, 2018 Week 11th Sunday

    All good things must come to an end. 好景无常. Love is when the other person's happiness is more importa ...

  7. March 10th, 2018 Week 10th Saturday

    All good things must come to an end. 好景无常. Love is when the other person's happiness is more importa ...

  8. March 09th, 2018 Week 10th Friday

    All good things must come to an end. 好景无常. Love is when the other person's happiness is more importa ...

  9. March 08th, 2018 Week 10th Thursday

    Easy come, easy go. 易得则易失. Easy come, easy go, I finally undestand the phrase through somewhat hard ...

随机推荐

  1. 南大算法设计与分析课程OJ答案代码(4)--变位词、三数之和

    问题 A: 变位词 时间限制: 2 Sec  内存限制: 10 MB提交: 322  解决: 59提交 状态 算法问答 题目描述 请大家在做oj题之前,仔细阅读关于抄袭的说明http://www.bi ...

  2. Opencv-python画图基础知识

    相关函数介绍 1. Point 该数据结构表示了由其图像坐标 和 指定的2D点.可定义为: Point pt; pt.x = 10; pt.y = 8; 或者 Point pt = Point(10, ...

  3. 如何调用common.js

    第一步 页面需要引用此js 第二步 var loginJs = { //登录 goLogin: function () { var _userinfo = { name: "夏小沫" ...

  4. springboot用户登陆密码两次md5加密

    1.用户端:PASS = MD5(明文 + 固定salt) 2.服务端:PASS = MD5(用户输入 + 随机salt) 引入依赖包 <dependency> <groupId&g ...

  5. js节点的类型

    1. dom>documentElement>body>tagname 2.我们常用的节点标签. 元素节点(标签) 文本节点 属性节点(标签里的属性) 3.document有个属性n ...

  6. 聊聊ES7与ES8特性

    译者按: 转眼ES6发布2年了,是时候了解一下ES7与ES8特性了! 原文: ES7 and ES8 Features 译者: Fundebug 为了保证可读性,本文采用意译而非直译,并且对源代码进行 ...

  7. 带你了解源码中的 ThreadLocal

    本篇文章已授权微信公众号 guolin_blog (郭霖)独家发布 这次想来讲讲 ThreadLocal 这个很神奇的东西,最开始接触到这个是看了主席的<开发艺术探索>,后来是在研究 Vi ...

  8. K8S 高级调度方式

    可以使用高级调度分为: 节点选择器: nodeSelector.nodeName 节点亲和性调度: nodeAffinity Pod亲和性调度:PodAffinity Pod反亲和性调度:podAnt ...

  9. js 字符串转数组

    var obj = "123456".replace(/(.)(?=[^$])/g, "$1,").split(",");    conso ...

  10. 一种快速构造和获取URL查询参数的方法:URLSearchParams

    URLSearchParams 接口定义了一些实用的方法来处理 URL 的查询字符串. URLSearchParams()是个构造函数,将返回一个可以操作查询字符串的对象. 常用方法: 1.构造查询字 ...