Snowflakes are pretty patterns etched in water's dreams.

雪花,是水在梦中镌刻的美丽图案。

From Anthony T.Hincks.

Today is the Heavy Snow Day in our traditional Chinese Lunar Calendar, which indicates more snow days in the coming days of the year.

It is a very important period for farmers, especially in the northern part of the country.

Because if there are heavy snows, it means the next year would be a harvesting year.

And it also means we have reached the end of the year, but that doesn't mean the results have already been decided, we can do lots of things to ensure a harvest of our career, like making a good year-end review, which will let us know what we have done well and what haven't, a good way to know our advantages and shortcomings.

Cold as the weather is, but we can keep warm, even warmer by keeping exercising and wearing heavy coats.

When your eye is healthy, your whole body is filled with light.

汝目明,则身光明。

Jesus had said that our eyes are the lamp of our body, and when our eyes are clear and healthy, our full body is full of light, but when they are bad, our body is also full of darkness.

That is true.

Our eyes may be the most important entrance to our hearts and minds, they provide a doorway to our very souls.

Our eyes not only see well, but also preceive well.

It is not only what we see, but how we perceive what we see that makes the difference between good and evil, light and darkness.

Bad eyes lead to bad perception, but if our eyes are good, our whole person will be illuminated with good and light, if we are in a lighted conscious, we can perceive the good parts of everything.

So, please keep calm in face of difficulties and criticisms, we can consider them with our good eyes as some important hints of what we should do to improve ourselves, once we know what we should do, just take actions to complete them, good behaviours can build up good characters and lead to big achievements.

Just do it.

December 07th, Week 49th Saturday, 2019的更多相关文章

  1. December 14th, Week 50th Saturday, 2019

    If you have got a talent, protect it. 如果你有天赋,要去保护她. From Jim Carrey. If you think you have a talent, ...

  2. December 28th, Week 52nd Saturday, 2019

    If you start at the bottom, pay your dues, life here can be a dream come true. 只要你从头开始,脚踏实地,梦想是可以成真的 ...

  3. 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 ...

  4. December 03rd 2016 Week 49th Saturday

    By failing to prepare, you are preparing to fail. 不做准备,那就准备失败吧. How does the case when you had prepa ...

  5. December 07th 2016 Week 50th Wednesday

    Life is a flower, and love is the honey of the flower. 人生是花儿,而爱情就是花的蜜. My life is not as beautiful a ...

  6. December 31st, Week 53rd Tuesday, 2019

    Nothing comes from nothing. 天下没有免费的午餐. Nothing comes from nothing, and in some cases, even something ...

  7. July 07th. 2018, Week 27th. Saturday

    Soon is not as good as now. 别谈未来,现在就行动. From Seth Godin. I always told myself that I should finish w ...

  8. October 07th 2017 Week 40th Saturday

    Knowledge is a treasure but practice is the key to it. 知识是宝藏,但实践才是打开它的钥匙. Experience often comes fro ...

  9. December 02nd 2016 Week 49th Friday

    People will fall for its appearance while driving passionately. 观者倾心,驭者动魄. An advertisement of Merce ...

随机推荐

  1. Centos7.2 下DNS+NamedManager高可用部署方案完整记录

    Centos7.2 下DNS+NamedManager高可用部署方案完整记录 之前说到了NamedManager单机版的配置,下面说下DNS+NamedManager双机高可用的配置方案: 1)机器环 ...

  2. ARTS-S linux查看进程打开的文件数

    当怀疑进程打开文件没有关闭时,可以反复执行以下命令,查看进程打开的文件数是否会不断增加. ls -l /proc/18707/fd | wc -l 其中18707是进程id

  3. 测底稳定NIOS开发之一:将nios产生的编程文件转换成jic (连载)

    将nios产生的编程文件转换成jic 前言: 基于某种原因,自从开始fpga开发和nios项目开发中,均为正常使用EDS IDE自带的flash programmer 进行成功的下载固化epcs程序. ...

  4. Python3 函数基础2

    目录 可变长参数 可变长形参: *args 可变长实参: *容器类 可变长形参: **kwargs 可变长实参: **字典 函数对象 引用 当做容器类型元素 当做参数传给一个函数 当做函数的返回值 函 ...

  5. 【重温基础】17.WebAPI介绍

    本文是 重温基础 系列文章的第十七篇. 今日感受:挑战. 系列目录: [复习资料]ES6/ES7/ES8/ES9资料整理(个人整理) [重温基础]1-14篇 [重温基础]15.JS对象介绍 [重温基础 ...

  6. 用递归实现N!

    def digui(n): result = 1 if n == 2: result = 2 elif n > 2: result = n* digui(n-1) print(result) r ...

  7. centos7 启动停止命令

    apache启动systemctl start httpd停止systemctl stop httpd重启systemctl restart httpd mysql启动systemctl start ...

  8. Jrules sample server 配置

    配置文件位置:[Jrules install location]/shared/tools/AppServerCommunityEdition/var/config

  9. 我学习Python的经历

    1. 被逼无奈找到了Python Python作为当今非常热的话题,常常被各级别的程序员所提到,也有很多的小白问我,到底啥是Python,它能干啥! 我用Python时间不是特别长,最早使用是在201 ...

  10. 《Java基础知识》Java多态和动态绑定

    在Java中,父类的变量可以引用父类的实例,也可以引用子类的实例. 请读者先看一段代码: public class Demo { public static void main(String[] ar ...