December 13th 2016 Week 51st Tuesday
Life is a sail trip full of chances and challenges.
人生的旅途中充满了机遇和挑战。
A boat sails on the sea, the vast sea, it may be lost in the boundless expanse of the sea, it may be overturned by the huge waves, it may be drifted along the winds and the currents...
But it may also reach its destination after a long trip, it may also discover the new land full of treasure...
Maybe the winds and the currents just bring it to the new land, maybe sometimes the winds and the currents can accelerate its sailing...
It is also the same to the life sailing.
There're bad times, there're also good times.
There're full of difficulties and obstacles, there're also full of chances and happinesses.
Don't be afraid of the possible difficulties, maybe the treasures we are going after are just behind them.
Be the captain of your own life-boat, sail in the sea of life courageously.
I abhor war and view it as the greatest scourge of mankind.
我痛恨战争,并视其为人类最大的祸害。
Today is the 79th Anniversay of Nanjing Massacre, and the day also had been designated as the National Memorial Day.
Let's mourn for our dead ancestors.
Please don't forget the National Humillitation, please always keep the history in our minds.
The best way to memory the day and the death may be not just to ignite the hatred in our hearts, but to do our best both in life and work, to fullfill our responsibilites to the society and the country.
As to myself, I want to make our industrial-control products tower over the competing products of Japan.
Can I realize this dream?
December 13th 2016 Week 51st Tuesday的更多相关文章
- December 06th 2016 Week 50th Tuesday
		
Behind every beautiful thing, there is some kind of pain. 美丽背后,必有努力. No pains, no gains. But it seem ...
 - December 14th 2016 Week 51st Wednesday
		
Everything has its time and that time must be watched. 万物皆有时,时来不可失. Everything has its time, and I r ...
 - December 12th 2016 Week 51st Monday
		
Nothing is impossible for a willing heart. 心之所愿,无所不成. I wish I can be a strong, clever, powerful and ...
 - December 11th 2016 Week 51st Sunday
		
If a thing is worth doing it is worth doing well. 如果事情值得做,那就做好. If it is worth doing, then it is wor ...
 - December 27th 2016 Week 53rd Tuesday
		
A journey of one thousand miles begins with one step. 千里之行始于足下. No matter how slowly you walk, as lo ...
 - December 20th 2016 Week 52nd Tuesday
		
With the wonder of your love, the sun above always shines. 拥有你美丽的爱情,太阳就永远明媚. To accept the love from ...
 - December 17th 2016 Week 51st Saturday
		
Great minds have purpose, others only have wishes. 杰出的人有着目标,其他人只拥有愿望. Are you clear about the differ ...
 - December 16th 2016 Week 51st Friday
		
My life is a straight line, turning only for you. 我的人生是一条直线,转弯只是为了你. My life is a straight line that ...
 - December 15th 2016 Week 51st Thursday
		
At the touch of love everyone becomes a poet. 每一个沐浴在爱河中的人都是诗人. You call your love as your sweetheart ...
 
随机推荐
- Linux下批量修改文件及文件夹所有者及权限
			
Linux下批量修改文件及文件夹所有者及权限需要使用到两个命令,chmod以及chown 例:对/opt/Oracle/目录下的所有文件与子目录执行相同的权限变更: chmod -R 700 /opt ...
 - The servlets named [create_subscription] and [servlet.create] are both mapped to the url-pattern [/create] which is not permitted [duplicate]
			
原因,代码中在public前已经有了默认的配置路径: 如: @WebServlet("/ShowUser")public class ShowUser extends HttpSe ...
 - 解决eclipse为什么不能查看源码
			
Java eclipse中查看源代码ctrl+左键单击 一.你是第一次使用该功能,没有导入项目源码,故无法查看源码 解决方法: 1.点 “window“-> “Preferences”-> ...
 - Sping框架初步使用1
			
Spring核心容器的理论:Spring核心容器就是一个超大工厂,所有的对象都会被当成Spring容器的核心管理对象,Spring把容器中一切对象统称为Bean(只要是一个Java类,Spring就可 ...
 - WCF WCF的宿主
			
一.WCF服务应用程序与WCF服务库 我们在平时开发的过程中常用的项目类型有“WCF 服务应用程序”和“WCF服务库”. WCF服务应用程序,是一个可以执行的程序,它有独立的进程,WCF服务类契约的定 ...
 - Docker学习之Docker镜像基本使用
			
Docker学习之Docker镜像基本使用 获取镜像 命令格式:docker pull [选项] [Docker Registry 地址[:端口号]/]仓库名[:标签] 例如: docker pull ...
 - 01-Web客户端与服务器详解
			
1.CS与BS 软件使用方式上两种划分 C/S架构 Client/ServerPC客户端.服务器架构 特点: 在服务器当中就主要是一个数据库,把所有的业务逻辑以及界面都交给客户端完成 优点: 较为安全 ...
 - [LeetCode]Longest Palindromic Substring题解(动态规划)
			
Longest Palindromic Substring: Given a string s, find the longest palindromic substring in s. You ma ...
 - IDEA 2017.2.2 环境下使用JUnit
			
JUnit:单元测试框架,测试对象为一个类中的方法. JUnit不是Javase的一部分,想要使用需要导入jar包,在IntelliJ IDEA 中自带JUnit插件. JUnit 版本有3.X 4. ...
 - js 随机打乱数组
			
假如有一个数组: var arr1=['a','b','c','d','e','f','g']; 需要将它进行随机打乱,网上好多都是用: arr1.sort(function(){ return 0. ...